index.wxss 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  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. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .flex-col.data-v-57280228 {
  28. display: flex;
  29. flex-direction: column;
  30. }
  31. .flex-row.data-v-57280228 {
  32. display: flex;
  33. flex-direction: row;
  34. }
  35. .flex-row-reverse.data-v-57280228 {
  36. display: flex;
  37. flex-direction: row-reverse;
  38. }
  39. .bord.data-v-57280228 {
  40. border: 1px solid red;
  41. }
  42. .justify-start.data-v-57280228 {
  43. display: flex;
  44. justify-content: flex-start;
  45. }
  46. .justify-center.data-v-57280228 {
  47. display: flex;
  48. justify-content: center;
  49. }
  50. .justify-end.data-v-57280228 {
  51. display: flex;
  52. justify-content: flex-end;
  53. }
  54. .justify-evenly.data-v-57280228 {
  55. display: flex;
  56. justify-content: space-evenly;
  57. }
  58. .justify-around.data-v-57280228 {
  59. display: flex;
  60. justify-content: space-around;
  61. }
  62. .justify-between.data-v-57280228 {
  63. display: flex;
  64. justify-content: space-between;
  65. }
  66. .align-start.data-v-57280228 {
  67. display: flex;
  68. align-items: flex-start;
  69. }
  70. .align-center.data-v-57280228 {
  71. display: flex;
  72. align-items: center;
  73. }
  74. .align-end.data-v-57280228 {
  75. display: flex;
  76. align-items: flex-end;
  77. }
  78. .sticky.data-v-57280228 {
  79. display: flex;
  80. position: -webkit-sticky;
  81. position: sticky;
  82. top: 0rpx;
  83. z-index: 99;
  84. }
  85. .bord.data-v-57280228 {
  86. border: 1px solid red;
  87. }
  88. .page.data-v-57280228{
  89. background: #f7f7f7;
  90. position: relative;
  91. display: flex;
  92. }
  93. .bgImage.data-v-57280228{
  94. width: 750rpx;
  95. height: 520rpx;
  96. }
  97. .page1.data-v-57280228{
  98. width: 750rpx;
  99. position: absolute;
  100. left: 0;
  101. top: 0;
  102. }
  103. .tuni.data-v-57280228{
  104. width: 686rpx;
  105. height: 160rpx;
  106. border-radius: 24rpx;
  107. background: #ffffff;
  108. margin-top: 184rpx;
  109. }
  110. .profile.data-v-57280228{
  111. width: 112rpx;
  112. height: 112rpx;
  113. border-radius: 80rpx;
  114. border: 2rpx solid #FFFFFF;
  115. box-sizing: border-box;
  116. margin-left: 32rpx;
  117. margin-top: 24rpx;
  118. }
  119. .tuniMsg.data-v-57280228{
  120. width: 380rpx;
  121. height: 160rpx;
  122. margin-left: 16rpx;
  123. }
  124. .name.data-v-57280228{
  125. font-size: 28rpx;
  126. font-weight: 600;
  127. color: #333333;
  128. margin-top: 30rpx;
  129. }
  130. .dizi.data-v-57280228{
  131. font-size: 24rpx;
  132. font-weight: 400;
  133. color: #333333;
  134. margin-top: 30rpx;
  135. }
  136. .tab.data-v-57280228{
  137. width: 384rpx;
  138. height: 80rpx;
  139. border-radius: 40rpx;
  140. background: #ffffff;
  141. margin-top: 30rpx;
  142. }
  143. .serviceing.data-v-57280228{
  144. height: 1100rpx;
  145. margin-top: 8rpx;
  146. margin-bottom: 60rpx;
  147. }
  148. .serviceMsg.data-v-57280228{
  149. width: 686rpx;
  150. padding-bottom: 100rpx;
  151. background: #FFFFFF;
  152. border-radius: 24rpx;
  153. margin-top: 60rpx;
  154. position: relative;
  155. }
  156. .backColor.data-v-57280228{
  157. background: #f7f7f7;
  158. }
  159. .dakaIcon.data-v-57280228{
  160. margin-top: 30rpx;
  161. }
  162. .dakaText.data-v-57280228{
  163. margin-top: 20rpx;
  164. font-size: 20rpx;
  165. font-weight: 400;
  166. color: #333333;
  167. }
  168. .tabs.data-v-57280228{
  169. width: 192rpx;
  170. height: 80rpx;
  171. background: #FFFFFF;
  172. border-radius: 40rpx;
  173. border: 4rpx solid #FFFFFF;
  174. box-sizing: border-box;
  175. text-align: center;
  176. line-height: 80rpx;
  177. }
  178. .selectTabs.data-v-57280228{
  179. background:#FFE05C ;
  180. }
  181. .serviceProfile.data-v-57280228{
  182. width: 160rpx;
  183. height: 160rpx;
  184. border-radius: 80rpx;
  185. border: 2px solid #ffffff;
  186. box-sizing: border-box;
  187. }
  188. .serviceInfo.data-v-57280228{
  189. position: absolute;
  190. left: 32rpx;
  191. top: -50rpx;
  192. }
  193. .servicename.data-v-57280228{
  194. height: 52rpx;
  195. font-size: 36rpx;
  196. font-weight: 600;
  197. color: #333333;
  198. margin-left: 20rpx;
  199. line-height: 64rpx;
  200. margin-bottom: 20rpx;
  201. }
  202. .tag.data-v-57280228{
  203. width: 136rpx;
  204. height: 64rpx;
  205. background: #FFF6CE;
  206. border-radius: 32rpx;
  207. line-height: 64rpx;
  208. margin-bottom: 20rpx;
  209. margin-left: 20rpx;
  210. }
  211. .hint.data-v-57280228{
  212. width: 24rpx;
  213. height: 24rpx;
  214. border-radius: 12rpx;
  215. text-align: center;
  216. background: #FFAF36;
  217. color: #FFFFFF;
  218. font-size: 18rpx;
  219. margin-left: 20rpx;
  220. margin-top: 32rpx;
  221. }
  222. .hintCentent.data-v-57280228{
  223. font-size: 24rpx;
  224. font-weight: 400;
  225. color: #FFAF36;
  226. margin-left: 16rpx;
  227. line-height: 88rpx;
  228. }
  229. .hintView.data-v-57280228{
  230. width: 622rpx;
  231. height: 88rpx;
  232. background: #FFF7EA;
  233. border-radius: 44rpx;
  234. border: 2rpx solid #FFFFFF;
  235. margin-top: 24rpx;
  236. }
  237. .key.data-v-57280228{
  238. font-size: 28rpx;
  239. font-weight: 400;
  240. color: #999999;
  241. }
  242. .value.data-v-57280228{
  243. font-size: 28rpx;
  244. font-weight: 400;
  245. color: #333333;
  246. }
  247. .key1.data-v-57280228{
  248. height: 44rpx;
  249. font-size: 28rpx;
  250. font-weight: 400;
  251. color: #333333;
  252. line-height: 44rpx;
  253. }
  254. .leftBord.data-v-57280228{
  255. border-left: 2px solid #DDDDDD;
  256. padding-left: 30rpx;
  257. margin-left: 30rpx;
  258. }
  259. .value1.data-v-57280228{
  260. height: 52rpx;
  261. font-size: 36rpx;
  262. font-weight: bold;
  263. color: #ED569F;
  264. line-height: 52rpx;
  265. }
  266. .value2.data-v-57280228{
  267. height: 44rpx;
  268. font-size: 28rpx;
  269. font-family: DIN, DIN;
  270. font-weight: 400;
  271. color: #ED569F;
  272. line-height: 44rpx;
  273. }
  274. .tag1.data-v-57280228{
  275. width: 188rpx;
  276. height: 80rpx;
  277. background: #FFF6CE;
  278. border-radius: 44rpx;
  279. font-size: 24rpx;
  280. font-weight: 400;
  281. color: #333333;
  282. line-height: 80rpx;
  283. }
  284. .itemView.data-v-57280228{
  285. width: 592rpx;
  286. margin-top: 24rpx;
  287. }
  288. .item.data-v-57280228{
  289. margin-top: 16rpx;
  290. }
  291. .grid.data-v-57280228{
  292. width: 622rpx;
  293. height: 136rpx;
  294. margin-top: 40rpx;
  295. border-top: 2rpx dashed #111111;
  296. padding-top: 40rpx;
  297. }
  298. .grid-text.data-v-57280228{
  299. height: 34rpx;
  300. font-size: 24rpx;
  301. font-weight: 400;
  302. color: #666666;
  303. line-height: 34rpx;
  304. }
  305. .start.data-v-57280228{
  306. width: 160rpx;
  307. height: 160rpx;
  308. border-radius: 80rpx;
  309. background: #FFE05C;
  310. border: 4rpx solid #FFFFFF;
  311. box-sizing: border-box;
  312. text-align: center;
  313. position: absolute;
  314. left: 263rpx;
  315. bottom: -80rpx;
  316. }
  317. .start text.data-v-57280228{
  318. width: 56rpx;
  319. height: 80rpx;
  320. font-size: 28rpx;
  321. font-weight: 600;
  322. color: #333333;
  323. line-height:40rpx;
  324. margin-top: 40rpx;
  325. }
  326. .dataNull.data-v-57280228{
  327. width: 140rpx;
  328. height: 140rpx;
  329. margin-top: 200rpx;
  330. }
  331. .dataNullText.data-v-57280228{
  332. font-size: 24rpx;
  333. font-weight: 400;
  334. color: #999999;
  335. margin-top: 24rpx;
  336. }
  337. .list.data-v-57280228{
  338. width: 750rpx;
  339. background: #f7f7f7;
  340. }
  341. .listItem.data-v-57280228{
  342. width: 686rpx;
  343. height: 160rpx;
  344. background: #FFFFFF;
  345. border-radius: 24rpx;
  346. margin-top: 24rpx;
  347. }
  348. .listItemProfile.data-v-57280228{
  349. width: 112rpx;
  350. height: 112rpx;
  351. border: 2rpx solid #FFFFFF;
  352. margin-top: 24rpx;
  353. margin-left: 32rpx;
  354. }
  355. .listItemName.data-v-57280228{
  356. font-size: 28rpx;
  357. font-weight: 600;
  358. color: #333333;
  359. margin-left: 28rpx;
  360. line-height: 160rpx;
  361. }
  362. .listItemkey.data-v-57280228{
  363. height: 44rpx;
  364. font-size: 28rpx;
  365. font-weight: 400;
  366. color: #999999;
  367. line-height: 160rpx;
  368. }
  369. .listItemValue.data-v-57280228{
  370. height: 44rpx;
  371. font-size: 28rpx;
  372. font-weight: 400;
  373. color: #333333;
  374. line-height: 160rpx;
  375. padding-right: 38rpx;
  376. }