prescribe.wxss 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  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. .content {
  28. height: 100%;
  29. display: flex;
  30. flex-direction: column;
  31. justify-content: space-between;
  32. }
  33. .content .fixed-top-box {
  34. width: 100%;
  35. background: linear-gradient(135deg, #2BC7B9 0%, #60CDC3 100%);
  36. position: fixed;
  37. top: 0;
  38. left: 0;
  39. z-index: 1000;
  40. }
  41. .content .fixed-top-box .back-box {
  42. height: 88rpx;
  43. padding-left: 22rpx;
  44. display: flex;
  45. align-items: center;
  46. justify-content: space-between;
  47. padding: 0 20rpx;
  48. }
  49. .content .fixed-top-box .back-box image {
  50. width: 40rpx;
  51. height: 40rpx;
  52. }
  53. .content .fixed-top-box .back-box .title {
  54. font-size: 36rpx;
  55. font-family: PingFang SC;
  56. font-weight: 500;
  57. color: #FFFFFF;
  58. }
  59. .content .inner {
  60. margin-top: 88rpx;
  61. }
  62. .content .inner .steps-box {
  63. height: 88rpx;
  64. background: #FFFFFF;
  65. padding: 0 48rpx;
  66. display: flex;
  67. align-items: center;
  68. justify-content: space-between;
  69. }
  70. .content .inner .steps-box .item {
  71. font-size: 28rpx;
  72. font-family: PingFang SC;
  73. font-weight: 500;
  74. color: #666666;
  75. }
  76. .content .inner .steps-box .item.active {
  77. font-weight: bold;
  78. color: #2BC7B9;
  79. }
  80. .content .inner .steps-box .arrow {
  81. width: 12rpx;
  82. height: 22rpx;
  83. }
  84. .content .inner .tip-box {
  85. box-sizing: border-box;
  86. height: 130rpx;
  87. background: #FFF4E6;
  88. padding: 26rpx 0 30rpx 50rpx;
  89. display: flex;
  90. flex-direction: column;
  91. justify-content: space-between;
  92. }
  93. .content .inner .tip-box .top {
  94. display: flex;
  95. align-items: center;
  96. }
  97. .content .inner .tip-box .top image {
  98. width: 26rpx;
  99. height: 31rpx;
  100. margin-right: 10rpx;
  101. }
  102. .content .inner .tip-box .top .text {
  103. font-size: 28rpx;
  104. font-family: PingFang SC;
  105. font-weight: 500;
  106. color: #EF8A07;
  107. line-height: 1;
  108. }
  109. .content .inner .tip-box .time-tip {
  110. padding-left: 40rpx;
  111. font-size: 24rpx;
  112. font-family: PingFang SC;
  113. font-weight: 500;
  114. color: #999999;
  115. line-height: 1;
  116. }
  117. .content .inner .info-box {
  118. padding: 20rpx;
  119. }
  120. .content .inner .info-box .chose-people {
  121. box-sizing: border-box;
  122. background: #FFFFFF;
  123. border-radius: 16rpx;
  124. padding: 40rpx 30rpx 30rpx;
  125. }
  126. .content .inner .info-box .chose-people .title-box {
  127. display: flex;
  128. align-items: center;
  129. justify-content: space-between;
  130. }
  131. .content .inner .info-box .chose-people .title-box .title {
  132. font-size: 32rpx;
  133. font-family: PingFang SC;
  134. font-weight: bold;
  135. color: #111111;
  136. }
  137. .content .inner .info-box .chose-people .title-box .add-box {
  138. display: flex;
  139. align-items: center;
  140. }
  141. .content .inner .info-box .chose-people .title-box .add-box image {
  142. width: 26rpx;
  143. height: 26rpx;
  144. margin-right: 11rpx;
  145. }
  146. .content .inner .info-box .chose-people .title-box .add-box text {
  147. font-size: 28rpx;
  148. font-family: PingFang SC;
  149. font-weight: 500;
  150. color: #111111;
  151. }
  152. .content .inner .info-box .chose-people .peop-list {
  153. display: flex;
  154. flex-wrap: wrap;
  155. margin-top: 30rpx;
  156. }
  157. .content .inner .info-box .chose-people .peop-list .item {
  158. box-sizing: border-box;
  159. padding: 18rpx 30rpx;
  160. width: 31.28%;
  161. height: 110rpx;
  162. background: #F7F7F7;
  163. border-radius: 16rpx;
  164. margin: 0 20rpx 10rpx 0;
  165. border: 2rpx solid #F7F7F7;
  166. display: flex;
  167. flex-direction: column;
  168. justify-content: space-between;
  169. }
  170. .content .inner .info-box .chose-people .peop-list .item:nth-child(3n) {
  171. margin-right: 0;
  172. }
  173. .content .inner .info-box .chose-people .peop-list .item.active {
  174. background: rgba(230, 250, 247, 0);
  175. border: 2rpx solid #2BC7B9;
  176. position: relative;
  177. }
  178. .content .inner .info-box .chose-people .peop-list .item .active-img {
  179. width: 50rpx;
  180. height: 50rpx;
  181. position: absolute;
  182. right: -2rpx;
  183. bottom: -2rpx;
  184. }
  185. .content .inner .info-box .chose-people .peop-list .item .name {
  186. font-size: 30rpx;
  187. line-height: 1;
  188. font-family: PingFang SC;
  189. font-weight: bold;
  190. color: #111111;
  191. }
  192. .content .inner .info-box .chose-people .peop-list .item .info {
  193. display: flex;
  194. align-items: center;
  195. }
  196. .content .inner .info-box .chose-people .peop-list .item .info .sex,
  197. .content .inner .info-box .chose-people .peop-list .item .info .ege {
  198. font-size: 26rpx;
  199. font-family: PingFang SC;
  200. line-height: 1;
  201. font-weight: 500;
  202. color: #666666;
  203. }
  204. .content .inner .info-box .chose-people .peop-list .item .info .ege {
  205. margin-left: 19rpx;
  206. }
  207. .content .inner .info-box .disease-select {
  208. box-sizing: border-box;
  209. min-height: 286rpx;
  210. background: #FFFFFF;
  211. border-radius: 16rpx;
  212. padding: 40rpx 30rpx 22rpx;
  213. margin-top: 20rpx;
  214. }
  215. .content .inner .info-box .disease-select .title {
  216. display: flex;
  217. align-items: center;
  218. align-items: flex-end;
  219. }
  220. .content .inner .info-box .disease-select .title .black {
  221. font-size: 32rpx;
  222. font-family: PingFang SC;
  223. font-weight: bold;
  224. color: #111111;
  225. line-height: 1;
  226. margin-left: 10rpx;
  227. }
  228. .content .inner .info-box .disease-select .title .gray {
  229. font-size: 28rpx;
  230. font-family: PingFang SC;
  231. color: #999999;
  232. line-height: 1;
  233. margin-left: 10rpx;
  234. }
  235. .content .inner .info-box .disease-select .dise-list {
  236. display: flex;
  237. flex-wrap: wrap;
  238. margin-top: 26rpx;
  239. }
  240. .content .inner .info-box .disease-select .dise-list .item {
  241. box-sizing: border-box;
  242. height: 64rpx;
  243. line-height: 64rpx;
  244. font-size: 28rpx;
  245. font-family: PingFang SC;
  246. font-weight: 500;
  247. color: #2BC7B9;
  248. background: #F5FFFE;
  249. border: 1px solid #8AD5CE;
  250. padding: 0 20rpx;
  251. border-radius: 32rpx;
  252. margin: 0 20rpx 20rpx 0;
  253. }
  254. .content .inner .info-box .disease-select .dise-list .item.active {
  255. background: #2BC7B9;
  256. border: 1px solid #2BC7B9;
  257. color: #FFFFFF;
  258. }
  259. .content .inner .info-box .text-content {
  260. box-sizing: border-box;
  261. min-height: 286rpx;
  262. background: #FFFFFF;
  263. border-radius: 16rpx;
  264. padding: 40rpx 30rpx 22rpx;
  265. margin-top: 20rpx;
  266. }
  267. .content .inner .info-box .text-content .title {
  268. display: flex;
  269. align-items: center;
  270. align-items: flex-end;
  271. }
  272. .content .inner .info-box .text-content .title .black {
  273. font-size: 32rpx;
  274. font-family: PingFang SC;
  275. font-weight: bold;
  276. color: #111111;
  277. line-height: 1;
  278. margin-left: 10rpx;
  279. }
  280. .content .inner .info-box .text-content .title .gray {
  281. font-size: 28rpx;
  282. font-family: PingFang SC;
  283. color: #999999;
  284. line-height: 1;
  285. margin-left: 10rpx;
  286. }
  287. .content .inner .info-box .text-content .textArea {
  288. margin: 30rpx 0rpx 0rpx 0rpx;
  289. width: 100%;
  290. }
  291. .content .inner .info-box .img-content {
  292. box-sizing: border-box;
  293. min-height: 286rpx;
  294. background: #FFFFFF;
  295. border-radius: 16rpx;
  296. padding: 40rpx 30rpx 22rpx;
  297. margin-top: 20rpx;
  298. margin-bottom: 20rpx;
  299. }
  300. .content .inner .info-box .img-content .title {
  301. display: flex;
  302. align-items: center;
  303. align-items: flex-end;
  304. }
  305. .content .inner .info-box .img-content .title .black {
  306. font-size: 32rpx;
  307. font-family: PingFang SC;
  308. font-weight: bold;
  309. color: #111111;
  310. line-height: 1;
  311. margin-left: 10rpx;
  312. }
  313. .content .inner .info-box .img-content .title .gray {
  314. font-size: 28rpx;
  315. font-family: PingFang SC;
  316. color: #999999;
  317. line-height: 1;
  318. margin-left: 10rpx;
  319. }
  320. .content .inner .info-box .img-content .textArea {
  321. margin: 30rpx 0rpx 0rpx 0rpx;
  322. width: 100%;
  323. }
  324. .content .inner .info-box .img-content .upload-img {
  325. margin: 30rpx 0rpx 0rpx 0rpx;
  326. width: 100%;
  327. display: flex;
  328. align-items: flex-start;
  329. }
  330. .content .inner .info-box .img-content .upload-img .img {
  331. margin-right: 10rpx;
  332. width: 100rpx;
  333. height: 100rpx;
  334. position: relative;
  335. }
  336. .content .inner .info-box .img-content .upload-img .img image {
  337. width: 100%;
  338. height: 100%;
  339. }
  340. .content .inner .info-box .img-content .upload-img .img .del {
  341. right: 0rpx;
  342. top: 0rpx;
  343. position: absolute;
  344. }
  345. .content .inner .info-box .img-content .upload-img .img .del image {
  346. width: 30rpx;
  347. height: 30rpx;
  348. }
  349. .content .inner .info-box .img-content .upload-img .chose-img {
  350. border-radius: 5rpx;
  351. border: 1px solid #eee;
  352. padding: 5rpx;
  353. display: flex;
  354. align-items: center;
  355. justify-content: center;
  356. width: 100rpx;
  357. height: 100rpx;
  358. }
  359. .content .inner .info-box .img-content .upload-img .chose-img image {
  360. width: 50rpx;
  361. height: 50rpx;
  362. }
  363. .content .inner .info-box .check-box {
  364. height: 88rpx;
  365. background: #FFFFFF;
  366. border-radius: 16rpx;
  367. padding: 0 30rpx;
  368. display: flex;
  369. align-items: center;
  370. justify-content: space-between;
  371. }
  372. .content .inner .info-box .check-box .left {
  373. display: flex;
  374. align-items: center;
  375. }
  376. .content .inner .info-box .check-box .left image {
  377. width: 21rpx;
  378. height: 27rpx;
  379. margin-right: 20rpx;
  380. }
  381. .content .inner .info-box .check-box .left .text {
  382. font-size: 32rpx;
  383. font-family: PingFang SC;
  384. font-weight: 500;
  385. color: #666666;
  386. }
  387. .content .inner .info-box .check-box .my-radio-text {
  388. font-size: 30rpx;
  389. font-family: PingFang SC;
  390. font-weight: 500;
  391. color: #111111;
  392. line-height: 30rpx;
  393. }
  394. .content .btn-box {
  395. height: 120rpx;
  396. padding: 30rpx;
  397. display: flex;
  398. align-items: center;
  399. justify-content: center;
  400. }
  401. .content .btn-box .btn {
  402. width: 100%;
  403. height: 88rpx;
  404. line-height: 88rpx;
  405. font-size: 30rpx;
  406. font-family: PingFang SC;
  407. font-weight: bold;
  408. color: #FFFFFF;
  409. text-align: center;
  410. background: #2BC7B9;
  411. border-radius: 44rpx;
  412. }