advertising.scss 947 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .position-box{
  2. position: absolute;
  3. right: 0;
  4. bottom: 0;
  5. }
  6. .join-box {
  7. display: flex;
  8. }
  9. .item-price {
  10. > span {
  11. font-size: 15px;
  12. font-weight: 500;
  13. color: #e1212b;
  14. }
  15. }
  16. .join-item {
  17. flex: 1;
  18. }
  19. .item-img {
  20. width: 75px;
  21. height: 75px;
  22. margin: 0 auto;
  23. display: block;
  24. }
  25. .item-img-box {
  26. position: relative;
  27. }
  28. .item-line-through {
  29. > span {
  30. font-size: 10px;
  31. font-weight: 400;
  32. text-decoration: line-through;
  33. color: #999;
  34. }
  35. }
  36. .item-position-tips {
  37. position: absolute;
  38. right: 0;
  39. color: #fff;
  40. font-size: 12px;
  41. bottom: 0;
  42. }
  43. .join-title {
  44. display: flex;
  45. justify-content: space-between;
  46. align-items: center;
  47. background: #fff;
  48. height: 50px;
  49. > div:nth-of-type(1) {
  50. font-size: 16px;
  51. font-weight: bold;
  52. }
  53. > div:nth-of-type(2) {
  54. font-size: 12px;
  55. color: #999;
  56. }
  57. }