store.wxss 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  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. /*自定义主题色 */
  27. .data-v-dd5fc6f3 .u-tabs__wrapper__nav {
  28. margin: 0 auto;
  29. }
  30. .load-more.data-v-dd5fc6f3 {
  31. text-align: center;
  32. padding: 30rpx 0;
  33. color: #999;
  34. font-size: 26rpx;
  35. }
  36. .inputbox.data-v-dd5fc6f3 {
  37. height: 60rpx;
  38. padding: 0 20rpx;
  39. display: flex;
  40. flex-direction: row;
  41. align-items: center;
  42. justify-content: flex-start;
  43. border-radius: 40rpx;
  44. line-height: 60rpx;
  45. font-size: 28rpx;
  46. color: #ffffff;
  47. }
  48. .inputbox .icon-search.data-v-dd5fc6f3 {
  49. width: 28rpx;
  50. height: 28rpx;
  51. margin-right: 20rpx;
  52. }
  53. .uni-nav-bar.data-v-dd5fc6f3 {
  54. position: fixed;
  55. top: 0;
  56. left: 0;
  57. width: 100%;
  58. z-index: 999;
  59. overflow: hidden;
  60. font-weight: 500;
  61. }
  62. .uni-nav-bar .uni-nav-barbox.data-v-dd5fc6f3 {
  63. width: 100%;
  64. height: 88rpx;
  65. display: flex;
  66. flex-direction: row;
  67. align-items: center;
  68. justify-content: flex-start;
  69. position: relative;
  70. font-size: 24rpx;
  71. }
  72. .uni-nav-bar .uni-nav-title.data-v-dd5fc6f3 {
  73. font-size: 14px;
  74. overflow: hidden;
  75. white-space: nowrap;
  76. width: 100%;
  77. text-overflow: ellipsis;
  78. }
  79. .uni-nav-bar .uni-nav-back.data-v-dd5fc6f3 {
  80. margin-left: 20rpx;
  81. margin-right: 20rpx;
  82. height: 88rpx;
  83. display: flex;
  84. flex-direction: row;
  85. align-items: center;
  86. justify-content: flex-start;
  87. }
  88. .content.data-v-dd5fc6f3 {
  89. width: 100%;
  90. position: relative;
  91. }
  92. .content-body.data-v-dd5fc6f3 {
  93. position: relative;
  94. padding-top: calc(var(--status-bar-height) + 88rpx);
  95. }
  96. .store-head.data-v-dd5fc6f3 {
  97. margin-top: 40rpx;
  98. padding: 32rpx;
  99. background: linear-gradient(270deg, #FF5C03 0%, #FFAC64 100%);
  100. color: #ffffff;
  101. }
  102. .store-head-top.data-v-dd5fc6f3 {
  103. display: flex;
  104. align-items: center;
  105. }
  106. .store-head-logo.data-v-dd5fc6f3 {
  107. flex-shrink: 0;
  108. margin-right: 24rpx;
  109. }
  110. .store-head-name.data-v-dd5fc6f3 {
  111. font-weight: 600;
  112. font-size: 32rpx;
  113. }
  114. .store-head-desc.data-v-dd5fc6f3 {
  115. margin-top: 16rpx;
  116. display: flex;
  117. align-items: center;
  118. flex-wrap: wrap;
  119. gap: 20rpx;
  120. position: relative;
  121. z-index: 2;
  122. }
  123. .store-head-desc view.data-v-dd5fc6f3 {
  124. padding-right: 20rpx;
  125. font-size: 26rpx;
  126. position: relative;
  127. }
  128. .store-head-desc view.data-v-dd5fc6f3::after {
  129. content: "";
  130. width: 0;
  131. height: 28rpx;
  132. border-right: 1rpx solid #eee;
  133. position: absolute;
  134. right: 0;
  135. top: 50%;
  136. transform: translate(0, -50%);
  137. }
  138. .store-head-desc view.data-v-dd5fc6f3:last-child::after {
  139. border: none;
  140. }
  141. .border_bottom_line.data-v-dd5fc6f3 {
  142. position: relative;
  143. }
  144. .border_bottom_line.data-v-dd5fc6f3::after {
  145. content: "";
  146. position: absolute;
  147. bottom: 0;
  148. left: 0;
  149. border-bottom: 1px solid #F5F7FA;
  150. width: 100%;
  151. transform: scaleY(0.5);
  152. border-top-color: #F5F7FA;
  153. border-right-color: #F5F7FA;
  154. border-left-color: #F5F7FA;
  155. }
  156. .storebox.data-v-dd5fc6f3 {
  157. width: 100%;
  158. position: relative;
  159. z-index: 1;
  160. }
  161. .storebox-info.data-v-dd5fc6f3 {
  162. padding: 24rpx 24rpx 0 24rpx;
  163. background-color: #fff;
  164. font-family: PingFang SC, PingFang SC;
  165. font-size: 28rpx;
  166. color: #333333;
  167. position: relative;
  168. border-top: 4px solid #F5F7FA;
  169. }
  170. .storebox-map.data-v-dd5fc6f3 {
  171. display: flex;
  172. align-items: center;
  173. word-break: break-all;
  174. padding: 24rpx 0;
  175. }
  176. .storebox-qualifications.data-v-dd5fc6f3 {
  177. display: flex;
  178. align-items: center;
  179. padding: 24rpx 0;
  180. }
  181. .storebox .qualifications.data-v-dd5fc6f3 {
  182. padding: 24rpx 0;
  183. }
  184. .medic-box.data-v-dd5fc6f3 {
  185. display: flex;
  186. }
  187. .medic-box .medic.data-v-dd5fc6f3 {
  188. box-sizing: border-box;
  189. height: 100%;
  190. }
  191. .medic-box .medic .medic-list.data-v-dd5fc6f3 {
  192. width: 100%;
  193. padding: 20rpx 24rpx;
  194. box-sizing: border-box;
  195. overflow-y: auto;
  196. height: calc(100% - 220rpx);
  197. position: relative;
  198. }
  199. .medic-box .medic .medic-list .inner-list.data-v-dd5fc6f3 {
  200. display: flex;
  201. flex-wrap: wrap;
  202. }
  203. .medic-box .medic .medic-list .inner-list .definite.data-v-dd5fc6f3 {
  204. width: 342rpx;
  205. margin-right: 18rpx;
  206. margin-bottom: 30rpx;
  207. background: #ffffff;
  208. border-radius: 16rpx;
  209. }
  210. .medic-box .medic .medic-list .inner-list .definite .img-box.data-v-dd5fc6f3 {
  211. width: 100%;
  212. height: 343rpx;
  213. border-radius: 16rpx 16rpx 0rpx 0rpx;
  214. overflow: hidden;
  215. display: flex;
  216. align-items: center;
  217. }
  218. .medic-box .medic .medic-list .inner-list .definite .img-box image.data-v-dd5fc6f3 {
  219. width: 100%;
  220. }
  221. .medic-box .medic .medic-list .inner-list .definite .name.data-v-dd5fc6f3 {
  222. width: 100%;
  223. margin-top: 12rpx;
  224. font-size: 28rpx;
  225. color: #222222;
  226. padding: 0 20rpx;
  227. box-sizing: border-box;
  228. }
  229. .medic-box .medic .medic-list .inner-list .definite .price.data-v-dd5fc6f3 {
  230. padding: 0 20rpx 32rpx;
  231. box-sizing: border-box;
  232. margin-top: 12rpx;
  233. }
  234. .medic-box .medic .medic-list .inner-list .definite .price .red.data-v-dd5fc6f3 {
  235. font-weight: bold;
  236. font-size: 26rpx;
  237. color: #FF5C03;
  238. }
  239. .medic-box .medic .medic-list .inner-list .definite .price .del.data-v-dd5fc6f3 {
  240. margin-left: 16rpx;
  241. text-decoration: line-through;
  242. font-size: 24rpx;
  243. color: #999999;
  244. }
  245. .medic-box .medic .medic-list .inner-list .definite.data-v-dd5fc6f3:nth-child(2n) {
  246. margin-right: 0;
  247. }