cm-activipopu.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. /* 图片尺寸 */
  23. /* Border Radius */
  24. /* 水平间距 */
  25. /* 垂直间距 */
  26. /* 透明度 */
  27. /* 文章场景相关 */
  28. .tui-flex-1 {
  29. flex: 1;
  30. }
  31. .tui-popup-box {
  32. position: relative;
  33. box-sizing: border-box;
  34. min-height: 220rpx;
  35. padding: 24rpx 24rpx 0 24rpx;
  36. z-index: 9999;
  37. }
  38. .tui-scrollview-box {
  39. width: 100%;
  40. height: auto;
  41. float: left;
  42. box-sizing: border-box;
  43. }
  44. .tui-scrollview-box .ladder-main {
  45. width: 100%;
  46. border: 1px solid #FF457B;
  47. border-radius: 10rpx;
  48. }
  49. .tui-scrollview-box .ladder-main .ladder-item {
  50. width: 100%;
  51. height: 80rpx;
  52. float: left;
  53. border-bottom: 1px solid #FF457B;
  54. }
  55. .tui-scrollview-box .ladder-main .ladder-item:nth-child(1) .ladder-item-td {
  56. color: #333333;
  57. }
  58. .tui-scrollview-box .ladder-main .ladder-item:last-child {
  59. border-bottom: none;
  60. }
  61. .tui-scrollview-box .ladder-main .ladder-item .ladder-item-td {
  62. width: 50%;
  63. text-align: center;
  64. line-height: 80rpx;
  65. font-size: 24rpx;
  66. color: #FF457B;
  67. box-sizing: border-box;
  68. float: left;
  69. }
  70. .tui-scrollview-box .ladder-main .ladder-item .ladder-item-td:nth-child(1) {
  71. border-right: 1px solid #FF457B;
  72. }
  73. .tui-scrollview-box .box-title {
  74. font-size: 26rpx;
  75. color: #333333;
  76. text-align: left;
  77. line-height: 56rpx;
  78. }
  79. .tui-scrollview-box .box-title .txt {
  80. color: #FF457B;
  81. margin: 0 8rpx;
  82. }
  83. .tui-scrollview-box .box-text {
  84. font-size: 26rpx;
  85. color: #333333;
  86. text-align: left;
  87. line-height: 56rpx;
  88. }
  89. .tui-scrollview-box .box-text .txt {
  90. color: #ff2a2a;
  91. }
  92. .tui-scrollview-box .box-product {
  93. width: 100%;
  94. height: auto;
  95. margin-top: 20rpx;
  96. }
  97. .tui-scrollview-box .box-product .title {
  98. font-size: 24rpx;
  99. color: #333333;
  100. text-align: left;
  101. line-height: 54rpx;
  102. }
  103. .tui-scrollview-box .box-product .box-product-main {
  104. width: 100%;
  105. height: 136rpx;
  106. float: left;
  107. margin: 10rpx 0;
  108. }
  109. .tui-scrollview-box .box-product .box-product-main .image {
  110. width: 134rpx;
  111. height: 134rpx;
  112. border: 1px solid #EBEBEB;
  113. float: left;
  114. }
  115. .tui-scrollview-box .box-product .box-product-main .image image {
  116. width: 100%;
  117. height: 100%;
  118. display: block;
  119. }
  120. .tui-scrollview-box .box-product .box-product-main .info {
  121. width: 540rpx;
  122. height: 134rpx;
  123. float: left;
  124. margin-left: 16rpx;
  125. position: relative;
  126. }
  127. .tui-scrollview-box .box-product .box-product-main .info .name {
  128. width: 100%;
  129. float: left;
  130. line-height: 40rpx;
  131. font-size: 28rpx;
  132. color: #333333;
  133. text-overflow: ellipsis;
  134. display: -webkit-box;
  135. word-break: break-all;
  136. -webkit-box-orient: vertical;
  137. -webkit-line-clamp: 2;
  138. overflow: hidden;
  139. }
  140. .tui-scrollview-box .box-product .box-product-main .info .num {
  141. width: 100%;
  142. height: 44rpx;
  143. font-size: 24rpx;
  144. color: #333333;
  145. text-align: left;
  146. line-height: 44rpx;
  147. position: absolute;
  148. bottom: 0;
  149. left: 0;
  150. }
  151. .tui-popup-btn {
  152. width: 100%;
  153. height: auto;
  154. float: left;
  155. margin-top: 24rpx;
  156. }
  157. .tui-popup-btn .tui-button {
  158. width: 100%;
  159. height: 88rpx;
  160. background: linear-gradient(270deg, #f83c6c 0%, #fc32b4 100%);
  161. line-height: 88rpx;
  162. text-align: center;
  163. color: #FFFFFF;
  164. font-size: 28rpx;
  165. border-radius: 44rpx;
  166. }