detail.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. .goods-title.data-v-2d1fcfdf {
  27. font-size: 34rpx;
  28. font-weight: bold;
  29. color: #333333;
  30. }
  31. .detail-wrap.data-v-2d1fcfdf {
  32. background: linear-gradient(180deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient), var(--ui-BG-Main), #fff);
  33. }
  34. .detail-box.data-v-2d1fcfdf {
  35. border-radius: 6rpx;
  36. position: relative;
  37. margin-top: 100rpx;
  38. }
  39. .detail-box .tag-box.data-v-2d1fcfdf {
  40. width: 140rpx;
  41. height: 140rpx;
  42. background: var(--ui-BG);
  43. border-radius: 50%;
  44. position: absolute;
  45. top: -70rpx;
  46. left: 50%;
  47. z-index: 6;
  48. transform: translateX(-50%);
  49. }
  50. .detail-box .tag-box .tag-image.data-v-2d1fcfdf {
  51. width: 104rpx;
  52. height: 104rpx;
  53. border-radius: 50%;
  54. }
  55. .detail-box .top.data-v-2d1fcfdf {
  56. background-color: #fff;
  57. border-radius: 20rpx 20rpx 0 0;
  58. -webkit-mask: radial-gradient(circle at 16rpx 100%, #0000 16rpx, red 0) -16rpx;
  59. padding: 110rpx 0 0 0;
  60. position: relative;
  61. z-index: 5;
  62. }
  63. .detail-box .top .title.data-v-2d1fcfdf {
  64. font-size: 40rpx;
  65. color: #333;
  66. font-weight: bold;
  67. }
  68. .detail-box .top .subtitle.data-v-2d1fcfdf {
  69. font-size: 28rpx;
  70. color: #333333;
  71. }
  72. .detail-box .top .use-btn.data-v-2d1fcfdf {
  73. width: 386rpx;
  74. height: 80rpx;
  75. line-height: 80rpx;
  76. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  77. border-radius: 40rpx;
  78. color: #ffffff;
  79. }
  80. .detail-box .top .disable-btn.data-v-2d1fcfdf {
  81. width: 386rpx;
  82. height: 80rpx;
  83. line-height: 80rpx;
  84. background: #e5e5e5;
  85. border-radius: 40rpx;
  86. color: #ffffff;
  87. }
  88. .detail-box .top .time.data-v-2d1fcfdf {
  89. font-size: 26rpx;
  90. font-weight: 400;
  91. color: #999999;
  92. }
  93. .detail-box .top .coupon-line.data-v-2d1fcfdf {
  94. width: 95%;
  95. border-bottom: 2rpx solid #eeeeee;
  96. }
  97. .detail-box .bottom.data-v-2d1fcfdf {
  98. background-color: #fff;
  99. border-radius: 0 0 20rpx 20rpx;
  100. -webkit-mask: radial-gradient(circle at 16rpx 0%, #0000 16rpx, red 0) -16rpx;
  101. padding: 40rpx 30rpx;
  102. }
  103. .detail-box .bottom .type.data-v-2d1fcfdf {
  104. height: 96rpx;
  105. border-bottom: 2rpx solid #eeeeee;
  106. }
  107. .detail-box .des.data-v-2d1fcfdf {
  108. font-size: 24rpx;
  109. font-weight: 400;
  110. color: #666666;
  111. }
  112. .all-user.data-v-2d1fcfdf {
  113. width: 100%;
  114. height: 300rpx;
  115. font-size: 34rpx;
  116. font-weight: bold;
  117. color: #333333;
  118. }