coupon-select.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. /* 优惠信息 */
  2. .submit-order .submit-box .coupon-list {
  3. margin-top: 20px;
  4. border: 1px solid #eee;
  5. background:#fff;
  6. }
  7. .submit-order .submit-box .coupon-list .coupon-tab {
  8. display: flex;
  9. background: #f9f9f9;
  10. border-bottom: 0;
  11. }
  12. .submit-order .submit-box .coupon-list .coupon-tab .tab-item {
  13. padding: 10px 20px;
  14. cursor: pointer;
  15. }
  16. .submit-order .submit-box .coupon-list .coupon-tab .tab-item.active {
  17. color: #e1251b;
  18. background: #fff;
  19. }
  20. .submit-order .submit-box .coupon-list .coupon-box {
  21. display: flex;
  22. flex-wrap: wrap;
  23. padding-bottom: 20px;
  24. }
  25. .submit-order .submit-box .coupon-list .c-item {
  26. margin: 20px 0 0 20px;
  27. background: #f9f9f9;
  28. width: 215px;
  29. position: relative;
  30. cursor: pointer;
  31. border: 1px solid #fff;
  32. box-sizing: border-box;
  33. }
  34. .submit-order .submit-box .coupon-list .c-item .coupon-type {
  35. background: #e1251b;
  36. padding: 15px 10px 12px;
  37. color: #fff;
  38. position: relative;
  39. }
  40. .submit-order .submit-box .coupon-list .c-item .coupon-type::before,
  41. .submit-order .submit-box .coupon-list .c-item .coupon-type::after {
  42. position: absolute;
  43. display: block;
  44. width: 10px;
  45. height: 10px;
  46. content: ' ';
  47. background: #fff;
  48. border-radius: 50%;
  49. top: 50%;
  50. transform: translateY(-50%);
  51. }
  52. .submit-order .submit-box .coupon-list .c-item .coupon-type::before {
  53. left: -5px;
  54. }
  55. .submit-order .submit-box .coupon-list .c-item .coupon-type::after {
  56. right: -5px;
  57. }
  58. .submit-order .submit-box .coupon-list .c-item .coupon-type .coupon-price {
  59. display: flex;
  60. align-items: center;
  61. }
  62. .submit-order
  63. .submit-box
  64. .coupon-list
  65. .c-item
  66. .coupon-type
  67. .coupon-price
  68. .price {
  69. margin-left: 10px;
  70. margin-top: 5px;
  71. font-family: arial;
  72. color: #fff;
  73. }
  74. .submit-order
  75. .submit-box
  76. .coupon-list
  77. .c-item
  78. .coupon-type
  79. .coupon-price
  80. .price
  81. .big {
  82. font-size: 24px;
  83. }
  84. .submit-order
  85. .submit-box
  86. .coupon-list
  87. .c-item
  88. .coupon-type
  89. .coupon-price
  90. .limit {
  91. margin-left: 10px;
  92. margin-top: 10px;
  93. font-family: arial;
  94. }
  95. .submit-order .submit-box .coupon-list .c-item .coupon-type .coupon-time {
  96. margin: 5px 0 5px 10px;
  97. font-family: arial;
  98. opacity: 0.7;
  99. line-height: 16px;
  100. }
  101. .submit-order .submit-box .coupon-list .c-item .coupon-info {
  102. padding: 5px 15px 12px;
  103. position: relative;
  104. }
  105. .submit-order .submit-box .coupon-list .c-item .coupon-info::before {
  106. position: absolute;
  107. top: 0;
  108. left: 0;
  109. display: block;
  110. width: 100%;
  111. height: 3px;
  112. background: url(../images/icons.png) no-repeat;
  113. background-position: -2px -783px;
  114. content: ' ';
  115. z-index: 3;
  116. }
  117. .submit-order .submit-box .coupon-list .c-item .coupon-info .range-item {
  118. margin-top: 10px;
  119. color: #999;
  120. display: flex;
  121. }
  122. .submit-order .submit-box .coupon-list .c-item .coupon-info .range-item .label {
  123. color: #000;
  124. }
  125. .submit-order .submit-box .coupon-list .c-item .coupon-info .range-item .text {
  126. flex: 1;
  127. }
  128. .submit-order .submit-box .coupon-list .c-item.check .coupon-type::before,
  129. .submit-order .submit-box .coupon-list .c-item.check .coupon-type::after {
  130. display: none;
  131. }
  132. .submit-order .submit-box .coupon-list .c-item.check .coupon-info::before {
  133. background: none;
  134. }
  135. .submit-order .submit-box .coupon-list .c-item.check {
  136. background: #fff;
  137. border: 1px solid #e1251b;
  138. }
  139. .submit-order .submit-box .coupon-list .c-item.check::before {
  140. position: absolute;
  141. bottom: 0;
  142. right: 0;
  143. display: block;
  144. width: 0;
  145. height: 0;
  146. content: ' ';
  147. border: 10px solid transparent;
  148. border-right: 10px solid #e1251b;
  149. border-bottom: 10px solid #e1251b;
  150. }
  151. .submit-order .submit-box .coupon-list .c-item.check::after {
  152. position: absolute;
  153. bottom: 2px;
  154. right: 1px;
  155. display: block;
  156. width: 10px;
  157. height: 8px;
  158. content: ' ';
  159. background: url(../images/icons.png) no-repeat;
  160. background-position: -21px -750px;
  161. }
  162. .submit-order .submit-box .coupon-list .c-item.useless {
  163. cursor: not-allowed;
  164. }
  165. .submit-order .submit-box .coupon-list .c-item.useless .coupon-type {
  166. background: #ccc;
  167. }
  168. .submit-order .submit-box .coupon-list .c-item.useless .coupon-info::before {
  169. background-position: 0 -791px;
  170. }
  171. .coupon-empty{
  172. width:100%;
  173. text-align: center;
  174. }
  175. .tit .platform.text{
  176. font-weight: 600;
  177. font-size: 14px;
  178. }
  179. /* 优惠信息 end */