store.wxss 5.8 KB

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