discount-detail.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /* 特惠专场 */
  2. .discount-detail {
  3. width: 1200px;
  4. margin: 0 auto;
  5. }
  6. .discount-detail .banner {
  7. width: 100%;
  8. height: 360px;
  9. position: relative;
  10. display: flex;
  11. align-items: center;
  12. margin-top: 40px;
  13. cursor: pointer;
  14. }
  15. .discount-detail .banner .bg {
  16. position: absolute;
  17. top: 0;
  18. left: 0;
  19. width: 100%;
  20. height: 100%;
  21. }
  22. .discount-detail .banner .text-box {
  23. position: relative;
  24. margin-left: 50px;
  25. width: 440px;
  26. height: 300px;
  27. background: #fff;
  28. border-radius: 4px;
  29. }
  30. .discount-detail .banner .text-box .time {
  31. font-size: 20px;
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. background: #0166b3;
  36. color: #fff;
  37. border-radius: 4px 4px 0 0;
  38. padding: 20px 0;
  39. }
  40. .discount-detail .banner .text-box .time .time-icon {
  41. width: 22px;
  42. height: 22px;
  43. border: 2px solid #fff;
  44. border-radius: 50%;
  45. position: relative;
  46. margin-right: 10px;
  47. }
  48. .discount-detail .banner .text-box .time .time-icon::before,
  49. .discount-detail .banner .text-box .time .time-icon::after {
  50. position: absolute;
  51. display: block;
  52. content: " ";
  53. background: #fff;
  54. }
  55. .discount-detail .banner .text-box .time .time-icon::before {
  56. width: 2px;
  57. height: 8px;
  58. top: 6px;
  59. left: 9px;
  60. }
  61. .discount-detail .banner .text-box .time .time-icon::after {
  62. width: 8px;
  63. height: 2px;
  64. top: 12px;
  65. right: 5px;
  66. }
  67. .discount-detail .banner .text-box .time .much-time .day {
  68. font-family: arial;
  69. margin: 0 5px;
  70. }
  71. .discount-detail .banner .text-box .time .number-box {
  72. margin-left: 10px;
  73. display: flex;
  74. align-items: center;
  75. }
  76. .discount-detail .banner .text-box .time .number-box .number {
  77. padding: 3px 5px;
  78. background: #fff;
  79. border-radius: 4px;
  80. font-family: arial;
  81. color: #0166b3;
  82. }
  83. .discount-detail .banner .text-box .time .number-box .colon {
  84. margin: 0 10px;
  85. }
  86. .discount-detail .banner .text-box .shop-logo {
  87. width: 80px;
  88. height: 80px;
  89. font-size: 0;
  90. margin: 20px auto;
  91. }
  92. .discount-detail .banner .text-box .shop-logo img {
  93. width: 100%;
  94. height: 100%;
  95. }
  96. .discount-detail .banner .text-box .shop-name {
  97. margin: 0 20px 15px;
  98. text-align: center;
  99. font-size: 24px;
  100. white-space: nowrap;
  101. overflow: hidden;
  102. text-overflow: ellipsis;
  103. }
  104. .discount-detail .banner .text-box .info {
  105. margin: 0 20px;
  106. font-size: 30px;
  107. font-weight: 600;
  108. text-align: center;
  109. white-space: nowrap;
  110. overflow: hidden;
  111. text-overflow: ellipsis;
  112. }
  113. .discount-detail .discount-prod {
  114. padding-top: 20px;
  115. }
  116. .discount-detail .discount-prod .activity-price {
  117. display: flex;
  118. height: 16px;
  119. line-height: 16px;
  120. margin-top: 10px;
  121. color: #e1251b;
  122. align-items: flex-end;
  123. flex-wrap: wrap;
  124. }
  125. .discount-detail .discount-prod .old-price {
  126. color: #999;
  127. margin-left: 5px;
  128. text-decoration: line-through;
  129. }
  130. /* 特惠专场 end */