groupon.wxss 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .detail-card.data-v-efe71281 {
  27. background-color: #ffffff;
  28. margin: 14rpx 20rpx;
  29. border-radius: 10rpx;
  30. overflow: hidden;
  31. }
  32. .title-card.data-v-efe71281 {
  33. width: 710rpx;
  34. box-sizing: border-box;
  35. background-size: 100% 100%;
  36. border-radius: 10rpx;
  37. background-image: var(--9d308a56);
  38. background-repeat: no-repeat;
  39. }
  40. .title-card .price-box .price-text.data-v-efe71281 {
  41. font-size: 30rpx;
  42. font-weight: 500;
  43. color: #fff;
  44. line-height: normal;
  45. font-family: OPPOSANS;
  46. }
  47. .title-card .price-box .price-text.data-v-efe71281::before {
  48. content: "¥";
  49. font-size: 30rpx;
  50. }
  51. .title-card .origin-price.data-v-efe71281 {
  52. font-size: 24rpx;
  53. font-weight: 400;
  54. color: #fff;
  55. opacity: 0.7;
  56. }
  57. .title-card .origin-price .origin-price-text.data-v-efe71281 {
  58. text-decoration: line-through;
  59. font-family: OPPOSANS;
  60. }
  61. .title-card .origin-price .origin-price-text.data-v-efe71281::before {
  62. content: "¥";
  63. }
  64. .title-card .tig.data-v-efe71281 {
  65. border: 2rpx solid #ffffff;
  66. border-radius: 4rpx;
  67. width: 126rpx;
  68. height: 38rpx;
  69. }
  70. .title-card .tig .tig-icon.data-v-efe71281 {
  71. margin-left: -2rpx;
  72. width: 40rpx;
  73. height: 40rpx;
  74. background: #ffffff;
  75. border-radius: 4rpx 0 0 4rpx;
  76. }
  77. .title-card .tig .tig-icon .groupon-tag.data-v-efe71281 {
  78. width: 32rpx;
  79. height: 32rpx;
  80. }
  81. .title-card .tig .tig-title.data-v-efe71281 {
  82. font-size: 24rpx;
  83. font-weight: 500;
  84. line-height: normal;
  85. color: #ffffff;
  86. width: 86rpx;
  87. display: flex;
  88. justify-content: center;
  89. align-items: center;
  90. }
  91. .title-card .countdown-title.data-v-efe71281 {
  92. font-size: 26rpx;
  93. font-weight: 500;
  94. color: #ffffff;
  95. }
  96. .title-card .countdown-time.data-v-efe71281 {
  97. font-size: 26rpx;
  98. font-weight: 500;
  99. color: #ffffff;
  100. }
  101. .title-card .countdown-time .countdown-h.data-v-efe71281 {
  102. font-size: 24rpx;
  103. font-family: OPPOSANS;
  104. font-weight: 500;
  105. color: #ffffff;
  106. padding: 0 4rpx;
  107. height: 40rpx;
  108. background: rgba(0, 0, 0, 0.1);
  109. border-radius: 6rpx;
  110. }
  111. .title-card .countdown-time .countdown-num.data-v-efe71281 {
  112. font-size: 24rpx;
  113. font-family: OPPOSANS;
  114. font-weight: 500;
  115. color: #ffffff;
  116. width: 40rpx;
  117. height: 40rpx;
  118. background: rgba(0, 0, 0, 0.1);
  119. border-radius: 6rpx;
  120. }
  121. .title-card .title-text.data-v-efe71281 {
  122. font-size: 30rpx;
  123. font-weight: bold;
  124. line-height: 42rpx;
  125. color: #fff;
  126. }
  127. .title-card .subtitle-text.data-v-efe71281 {
  128. font-size: 26rpx;
  129. font-weight: 400;
  130. color: #ffffff;
  131. line-height: 42rpx;
  132. opacity: 0.9;
  133. }
  134. .buy-box .disabled-btn-box[disabled].data-v-efe71281 {
  135. background-color: transparent;
  136. }
  137. .buy-box .check-btn-box.data-v-efe71281 {
  138. width: 248rpx;
  139. height: 80rpx;
  140. font-size: 24rpx;
  141. font-weight: 600;
  142. margin-left: -36rpx;
  143. background-image: var(--54d82b7e);
  144. background-repeat: no-repeat;
  145. background-size: 100% 100%;
  146. color: #ffffff;
  147. line-height: normal;
  148. border-radius: 0px 40rpx 40rpx 0px;
  149. }
  150. .buy-box .disabled-btn-box.data-v-efe71281 {
  151. width: 248rpx;
  152. height: 80rpx;
  153. font-size: 24rpx;
  154. font-weight: 600;
  155. margin-left: -36rpx;
  156. background-image: var(--1431bd3c);
  157. background-repeat: no-repeat;
  158. background-size: 100% 100%;
  159. color: #999999;
  160. line-height: normal;
  161. border-radius: 0px 40rpx 40rpx 0px;
  162. }
  163. .buy-box .origin-price-btn.data-v-efe71281 {
  164. width: 236rpx;
  165. height: 80rpx;
  166. background: rgba(255, 86, 81, 0.1);
  167. color: #ff6000;
  168. border-radius: 40rpx 0px 0px 40rpx;
  169. line-height: normal;
  170. font-size: 24rpx;
  171. font-weight: 500;
  172. }
  173. .buy-box .origin-price-btn .btn-title.data-v-efe71281 {
  174. font-size: 28rpx;
  175. }
  176. .buy-box .btn-price.data-v-efe71281 {
  177. font-family: OPPOSANS;
  178. }
  179. .buy-box .btn-price.data-v-efe71281::before {
  180. content: "¥";
  181. }
  182. .buy-box .more-item-box .more-item.data-v-efe71281 {
  183. width: 156rpx;
  184. height: 58rpx;
  185. font-size: 26rpx;
  186. font-weight: 500;
  187. color: #999999;
  188. border-radius: 10rpx;
  189. }
  190. .buy-box .more-item-box .more-item-hover.data-v-efe71281 {
  191. background: rgba(255, 239, 229, 0.32);
  192. color: #ff6000;
  193. }
  194. .groupon-box.data-v-efe71281 {
  195. background: var(--2fee5ec0) no-repeat;
  196. background-size: 100% 100%;
  197. }
  198. .activity-box.data-v-efe71281 {
  199. width: 100%;
  200. height: 80rpx;
  201. box-sizing: border-box;
  202. margin-bottom: 10rpx;
  203. }
  204. .activity-box .activity-title.data-v-efe71281 {
  205. font-size: 26rpx;
  206. font-weight: 500;
  207. color: #ffffff;
  208. line-height: 42rpx;
  209. }
  210. .activity-box .activity-title .activity-icon.data-v-efe71281 {
  211. width: 38rpx;
  212. height: 38rpx;
  213. }
  214. .activity-box .activity-go.data-v-efe71281 {
  215. width: 70rpx;
  216. height: 32rpx;
  217. background: #ffffff;
  218. border-radius: 16rpx;
  219. font-weight: 500;
  220. color: #ff6000;
  221. font-size: 24rpx;
  222. line-height: normal;
  223. }
  224. .model-box .title.data-v-efe71281 {
  225. font-size: 36rpx;
  226. font-weight: bold;
  227. color: #333333;
  228. }
  229. .model-box .subtitle.data-v-efe71281 {
  230. font-size: 26rpx;
  231. font-weight: 500;
  232. color: #333333;
  233. }
  234. image.data-v-efe71281 {
  235. width: 100%;
  236. height: 100%;
  237. }