index.less 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. .commodity {
  2. .cardBox {
  3. display: flex;
  4. align-items: center;
  5. justify-content: space-between;
  6. padding: 34rpx 21rpx;
  7. background-color: white;
  8. .vipBox {
  9. position: relative;
  10. width: 340rpx;
  11. height: 198rpx;
  12. background-size: cover;
  13. -webkit-box-reflect: below 0rpx linear-gradient(top, rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.24));
  14. -webkit-box-reflect: below 4rpx -webkit-linear-gradient(top, rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.24));
  15. }
  16. .selectBtn {
  17. position: absolute;
  18. bottom: 10rpx;
  19. right: 10rpx;
  20. width: 52rpx;
  21. height: 50rpx;
  22. line-height: 50rpx;
  23. text-align: center;
  24. border-radius: 50%;
  25. color: white;
  26. font-size: 34rpx;
  27. background-color: white;
  28. }
  29. .checked {
  30. background-color: #30C866;
  31. }
  32. }
  33. .introduce {
  34. margin: 20rpx 0;
  35. position: relative;
  36. z-index: 2;
  37. width: 100%;
  38. padding: 0rpx 20rpx 30rpx;
  39. background-color: white;
  40. box-shadow: 0 -31rpx 30rpx rgba(255, 255, 255, 1);
  41. .title {
  42. margin-bottom: 20rpx;
  43. font-size: 32rpx;
  44. font-weight: bold;
  45. }
  46. .price {
  47. font-size: 34rpx;
  48. font-weight: bold;
  49. color: #FF3B00;
  50. }
  51. }
  52. .entry {
  53. margin-top: 10rpx;
  54. padding: 36rpx 0rpx;
  55. display: flex;
  56. align-items: center;
  57. background-color: white;
  58. font-size: 30rpx;
  59. .title {
  60. width: 140rpx;
  61. text-align: center;
  62. color: #666666;
  63. }
  64. .detaild {
  65. font-weight: bold;
  66. }
  67. }
  68. .remind {
  69. padding: 25rpx 36rpx;
  70. .title {
  71. font-weight: bold;
  72. color: #212122;
  73. }
  74. .li {
  75. margin-top: 20rpx;
  76. font-size: 28rpx;
  77. }
  78. }
  79. .payBox {
  80. position: fixed;
  81. width: 100%;
  82. bottom: 0px;
  83. left: 0;
  84. display: flex;
  85. align-items: center;
  86. justify-content: space-between;
  87. padding: 22rpx 36rpx 30rpx;
  88. box-sizing: border-box;
  89. background-color: white;
  90. box-shadow: rgba(0, 0, 0, 0.35) 0px 30rpx 20rpx 20rpx;
  91. .left {
  92. font-size: 32rpx;
  93. text {
  94. font-size: 36rpx;
  95. color: #FF3B00;
  96. }
  97. }
  98. .buyBtn {
  99. padding: 14rpx 100rpx;
  100. background-color: #FF8E20;
  101. border-radius: 50rpx;
  102. color: white;
  103. font-size: 36rpx;
  104. }
  105. }
  106. .activationModal {
  107. position: fixed;
  108. z-index: 2;
  109. left: 0rpx;
  110. top: 0rpx;
  111. width: 100vw;
  112. height: 100vh;
  113. background: rgba(0, 0, 0, 0.7);
  114. .box {
  115. position: absolute;
  116. left: 0;
  117. right: 0;
  118. top: 30%;
  119. margin: auto;
  120. width: 660rpx;
  121. height: 550rpx;
  122. background-color: white;
  123. border-radius: 20rpx;
  124. text-align: center;
  125. .sLcon {
  126. margin-top: 164rpx;
  127. width: 580rpx;
  128. height: 326rpx;
  129. }
  130. .close {
  131. position: absolute;
  132. padding: 40rpx;
  133. width: 54rpx;
  134. height: 54rpx;
  135. left: 0;
  136. right: 0;
  137. bottom: -140rpx;
  138. margin: auto;
  139. }
  140. }
  141. }
  142. }