commodity.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .fen {
  28. font-size: 24rpx;
  29. font-family: PingFang SC;
  30. font-weight: 400;
  31. line-height: 42rpx;
  32. color: #C2C2C2;
  33. }
  34. .all {
  35. font-size: 24rpx;
  36. font-family: PingFang SC;
  37. font-weight: 400;
  38. line-height: 34rpx;
  39. color: #9D9BA7;
  40. }
  41. .pingjia {
  42. font-size: 32rpx;
  43. font-family: PingFang SC;
  44. font-weight: bold;
  45. line-height: 42rpx;
  46. color: #111111;
  47. }
  48. .concent {
  49. font-size: 26rpx;
  50. font-family: PingFang SC;
  51. font-weight: 400;
  52. line-height: 42rpx;
  53. color: #9D9CA1;
  54. }
  55. .name {
  56. font-size: 24rpx;
  57. font-family: PingFang SC;
  58. font-weight: bold;
  59. line-height: 42rpx;
  60. color: #111111;
  61. }
  62. .ping {
  63. width: 702rpx;
  64. height: 210rpx;
  65. background: #f7f6fb;
  66. border-radius: 8rpx;
  67. padding: 22rpx 28rpx;
  68. }
  69. .image {
  70. width: 66rpx;
  71. height: 66rpx;
  72. border-radius: 50%;
  73. }
  74. .duihuan {
  75. width: 702rpx;
  76. height: 90rpx;
  77. background: #8fd3f3;
  78. border-radius: 46rpx;
  79. font-size: 36rpx;
  80. font-family: PingFang SC;
  81. font-weight: 500;
  82. line-height: 90rpx;
  83. color: #FFFFFF;
  84. text-align: center;
  85. }
  86. .bottom {
  87. width: 750rpx;
  88. height: 134rpx;
  89. background: white;
  90. position: fixed;
  91. left: 0;
  92. bottom: 0;
  93. }
  94. .fu {
  95. font-size: 34rpx;
  96. font-family: PingFang SC;
  97. font-weight: bold;
  98. line-height: 105rpx;
  99. color: #F64016;
  100. }
  101. .money {
  102. font-size: 44rpx;
  103. font-family: DIN Alternate;
  104. font-weight: bold;
  105. line-height: 42rpx;
  106. color: #F64016;
  107. }
  108. .title {
  109. font-size: 36rpx;
  110. font-family: PingFang SC;
  111. font-weight: bold;
  112. line-height: 60rpx;
  113. color: #111111;
  114. }
  115. .info {
  116. width: 750rpx;
  117. height: 76rpx;
  118. background-color: #F8F8F8;
  119. font-size: 32rpx;
  120. font-family: PingFang SC;
  121. font-weight: bold;
  122. line-height: 76rpx;
  123. color: #111111;
  124. text-align: center;
  125. }
  126. .index-bg {
  127. position: absolute;
  128. top: 0;
  129. left: 0;
  130. z-index: -1;
  131. width: 750rpx;
  132. height: 100%;
  133. }