index.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. /* crmeb颜色变量 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .list.data-v-9bcb6b3c {
  28. display: flex;
  29. margin: 0 30rpx;
  30. }
  31. .product-box.data-v-9bcb6b3c {
  32. display: flex;
  33. flex: 1;
  34. flex-wrap: wrap;
  35. width: 100%;
  36. }
  37. .flow_item.data-v-9bcb6b3c {
  38. margin: 15rpx;
  39. border-radius: 20rpx;
  40. background: #f4f4f4;
  41. overflow: hidden;
  42. }
  43. .flow_item_con.data-v-9bcb6b3c {
  44. padding: 10rpx 20rpx 20rpx;
  45. }
  46. .flow_item_title.data-v-9bcb6b3c {
  47. position: relative;
  48. font-size: 32rpx;
  49. font-weight: 700;
  50. margin-bottom: 5rpx;
  51. }
  52. .flow_item_des.data-v-9bcb6b3c {
  53. font-size: 24rpx;
  54. }
  55. .pl10.data-v-9bcb6b3c {
  56. padding-left: 10rpx;
  57. }
  58. .product-list.data-v-9bcb6b3c {
  59. display: flex;
  60. width: calc(50% - 16rpx);
  61. margin: 2rpx 8rpx;
  62. }
  63. .product-list .product-item.data-v-9bcb6b3c {
  64. position: relative;
  65. width: 100%;
  66. background: #fff;
  67. border-radius: 10rpx;
  68. margin-bottom: 8rpx;
  69. display: flex;
  70. flex-direction: column;
  71. justify-content: space-between;
  72. }
  73. .product-list .product-item.data-v-9bcb6b3c image,
  74. .product-list .product-item.data-v-9bcb6b3c .easy-loadimage,
  75. .product-list .product-item.data-v-9bcb6b3c uni-image {
  76. width: 100%;
  77. height: 330rpx;
  78. border-radius: 10rpx 10rpx 0 0;
  79. }
  80. .product-list .product-item .info.data-v-9bcb6b3c {
  81. flex: 1;
  82. padding: 14rpx 16rpx;
  83. display: flex;
  84. flex-direction: column;
  85. justify-content: space-between;
  86. }
  87. .product-list .product-item .info .title.data-v-9bcb6b3c {
  88. font-size: 28rpx;
  89. height: 76rpx;
  90. line-height: 38rpx;
  91. }
  92. .product-list .product-item .info .tag.data-v-9bcb6b3c {
  93. border-radius: 4rpx;
  94. border: 1px solid var(--view-theme);
  95. color: var(--view-theme);
  96. font-size: 20rpx;
  97. padding: 0rpx 4rpx;
  98. margin: 10rpx 0;
  99. margin-right: 10rpx;
  100. width: -webkit-max-content;
  101. width: max-content;
  102. }
  103. .product-list .product-item .info .price-box.data-v-9bcb6b3c {
  104. font-size: 34rpx;
  105. font-weight: 700;
  106. margin-top: 8px;
  107. color: var(--view-priceColor);
  108. display: flex;
  109. justify-content: space-between;
  110. align-items: center;
  111. }
  112. .product-list .product-item .info .price-box text.data-v-9bcb6b3c {
  113. font-size: 28rpx;
  114. }
  115. .product-list .product-item .info .price-box .sales.data-v-9bcb6b3c {
  116. color: #999999;
  117. font-size: 24rpx;
  118. font-weight: 400;
  119. }