You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

310 lines
3.5 KiB

8 months ago
  1. .van-step__circle-container{
  2. background: transparent !important;
  3. }
  4. .test{
  5. border: 1rpx dashed red;
  6. }
  7. .font-c{
  8. color: #ccc;
  9. }
  10. .w50{
  11. width: 50%;
  12. }
  13. .h375{
  14. width: 100%;
  15. height: 375rpx;
  16. }
  17. .h238{
  18. width: 238rpx;
  19. height: 238rpx;
  20. margin: auto;
  21. }
  22. .h220{
  23. width: 100%;
  24. height: 220rpx;
  25. }
  26. .h120 {
  27. width: 100%;
  28. height: 120rpx;
  29. line-height: 120rpx;
  30. }
  31. .h70{
  32. width: 100%;
  33. height: 70rpx;
  34. line-height: 70rpx;
  35. }
  36. .h88{
  37. width: 100%;
  38. height: 88rpx;
  39. line-height: 88rpx;
  40. }
  41. .mb40{
  42. margin-bottom: 40rpx;
  43. }
  44. .mb20{
  45. margin-bottom: 20rpx;
  46. }
  47. .mt20{
  48. margin-top: 20rpx;
  49. }
  50. .mt56{
  51. margin-top: 56rpx;
  52. }
  53. .pb120{
  54. padding-bottom: 120rpx;
  55. }
  56. .m5{
  57. margin-top: 5rpx;
  58. margin-bottom: 5rpx;
  59. }
  60. .m10{
  61. margin-top: 10rpx;
  62. margin-bottom: 10rpx;
  63. }
  64. .m20{
  65. margin-top: 20rpx;
  66. margin-bottom: 20rpx;
  67. }
  68. .mt100{
  69. margin-top: 100rpx;
  70. }
  71. .mt40{
  72. margin-top: 40rpx;
  73. }
  74. .m120{
  75. margin-top: 120rpx;
  76. margin-bottom: 120rpx;
  77. }
  78. .m10auto{
  79. margin: 10 auto;
  80. }
  81. .m20auto{
  82. margin: 20 auto;
  83. }
  84. .flex{
  85. display: flex;
  86. }
  87. .flex-sb{
  88. display: flex;
  89. justify-content: space-between;
  90. }
  91. .sb-w3{
  92. width: calc(100% / 3);
  93. text-align: center;
  94. }
  95. .sb-w4{
  96. width: calc(100% / 4);
  97. text-align: center;
  98. }
  99. .sb-w5{
  100. width: calc(100% / 5);
  101. text-align: center;
  102. }
  103. .sb-w8{
  104. width: calc(100% / 8);
  105. text-align: center;
  106. }
  107. .flex-wrap{
  108. display: flex;
  109. justify-content: space-between;
  110. flex-wrap: wrap;
  111. }
  112. .line36{
  113. line-height: 36rpx;
  114. font-size: 30rpx;
  115. }
  116. .line42{
  117. line-height: 42rpx;
  118. font-size: 32rpx;
  119. }
  120. .line64{
  121. line-height: 64rpx;
  122. font-size: 36rpx;
  123. }
  124. .line72{
  125. line-height: 72rpx;
  126. font-size: 42rpx;
  127. }
  128. .bottom-line{
  129. border-bottom: 2rpx solid #eee;
  130. }
  131. .bottom-line:last-child{
  132. border-bottom: none;
  133. }
  134. .b-fiexd{
  135. height: 120rpx;
  136. width: calc(100vw - 40rpx);
  137. padding: 0 20rpx;
  138. position: fixed;
  139. left: 0;
  140. bottom: 0;
  141. box-shadow: -20rpx 10rpx 10rpx #000;
  142. background-color: #ffffff;
  143. }
  144. .b-relative{
  145. position: relative;
  146. }
  147. .b-button{
  148. background-color: 10rpx;
  149. height:72rpx;
  150. line-height: 72rpx;
  151. text-align:center;
  152. color: #ffffff;
  153. width: 376rpx;
  154. background-color: #fe8a00;
  155. border-radius: 10rpx;
  156. margin: 24rpx auto;
  157. }
  158. /**
  159. * 滑动定位
  160. */
  161. .bg-white{
  162. background-color: white;
  163. }
  164. .box-shadow-gray{
  165. box-shadow: #ccc 0 0rpx 40rpx 0.1rpx;
  166. }
  167. .sticky{
  168. position: sticky;
  169. top: 0;
  170. z-index: 100;
  171. }
  172. /**
  173. * 模拟药丸
  174. */
  175. .back-feixd {
  176. background-color: #fff8ef;
  177. border: 1rpx solid #dbc9ba;
  178. border-radius: 50%;
  179. width: 60rpx;
  180. height: 60rpx;
  181. position: fixed;
  182. top: 100rpx;
  183. left: 12rpx;
  184. z-index: 101;
  185. line-height: 60rpx;
  186. text-align: center;
  187. opacity: .7;
  188. }
  189. /**
  190. * 搜索
  191. */
  192. .s-input {
  193. padding: 16rpx 40rpx;
  194. margin: 0 20rpx;
  195. width: 590rpx;
  196. border-radius: 40rpx;
  197. height: 40rpx;
  198. line-height: 40rpx;
  199. border: 1rpx solid #ccc;
  200. color: #0d0d0d;
  201. font-size: 28rpx;
  202. }
  203. .s-input-line {
  204. height: 72rpx;
  205. line-height: 72rpx;
  206. margin: 0 78rpx;
  207. color: #666;
  208. font-size: 28rpx;
  209. }
  210. /**
  211. * 超出隐藏
  212. */
  213. .ellipsis {
  214. overflow: hidden;
  215. white-space: nowrap;
  216. text-overflow: ellipsis;
  217. }
  218. /**
  219. * 圆形图片
  220. */
  221. .radius80{
  222. width: 80rpx;
  223. height: 80rpx;
  224. border-radius: 50%;
  225. }
  226. /**
  227. * 隐藏滚动条
  228. */
  229. /* vant样式 */
  230. :root{
  231. --van-primary-color : #60bda2 !important;
  232. /* --primary-two-color : #60bda2 !important; */
  233. }
  234. .text-hidden-1{
  235. text-overflow: ellipsis;
  236. display: -webkit-box;
  237. -webkit-box-orient: vertical;
  238. -webkit-line-clamp: 1;
  239. overflow: hidden;
  240. }
  241. .text-hidden-2{
  242. text-overflow: ellipsis;
  243. display: -webkit-box;
  244. -webkit-box-orient: vertical;
  245. -webkit-line-clamp: 2;
  246. overflow: hidden;
  247. }