appointment.wxss 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. /* pages/appointment/appointment.wxss */
  2. .appointment {
  3. width: 100%;
  4. min-height: 100%;
  5. background: #F7F7F7;
  6. }
  7. .main-con {
  8. width: 690rpx;
  9. min-height: 100%;
  10. margin: 0 auto;
  11. overflow-y: auto;
  12. padding-bottom: 50rpx;
  13. }
  14. .ac-title {
  15. width: 100%;
  16. height: 82rpx;
  17. font-size: 30rpx;
  18. font-weight: bold;
  19. color: #333333;
  20. line-height: 82rpx;
  21. }
  22. .ac-card {
  23. width: 690rpx;
  24. height: 160rpx;
  25. background: #FFFFFF;
  26. border-radius: 20rpx;
  27. }
  28. .ac-item {
  29. width: 50%;
  30. height: 100%;
  31. }
  32. .ac-avat {
  33. width: 80rpx;
  34. height: 80rpx;
  35. border-radius: 50%;
  36. margin: 0 14rpx 0 20rpx;
  37. }
  38. .headimg {
  39. width: 100%;
  40. height: 100%;
  41. }
  42. .ac-name {
  43. font-size: 30rpx;
  44. font-weight: bold;
  45. color: #333333;
  46. }
  47. .ac-right {
  48. justify-content: flex-end;
  49. align-items: baseline;
  50. line-height: 160rpx;
  51. }
  52. .ac-count {
  53. font-size: 48rpx;
  54. font-weight: bold;
  55. color: #333333;
  56. }
  57. .ac-unit {
  58. font-size: 26rpx;
  59. font-weight: 400;
  60. color: #333333;
  61. margin: 0 20rpx 0 10rpx;
  62. }
  63. .address {
  64. width: 100%;
  65. min-height: 100rpx;
  66. }
  67. .ad-title {
  68. font-size: 30rpx;
  69. font-weight: bold;
  70. color: #333333;
  71. margin: 40rpx 0 20rpx 0;
  72. }
  73. .no-address {
  74. width: 248rpx;
  75. height: 60rpx;
  76. background: var(--maincolor);
  77. border-radius: 10rpx;
  78. font-size: 26rpx;
  79. font-weight: 400;
  80. color: #FFFFFF;
  81. }
  82. .address-card {
  83. width: 100%;
  84. height: 194rpx;
  85. background: #FFFFFF;
  86. border-radius: 20rpx;
  87. }
  88. .ad-left {
  89. width: calc(70% - 20rpx);
  90. height: 100%;
  91. padding-left: 20rpx;
  92. }
  93. .ad-right {
  94. width: 30%;
  95. height: 100%;
  96. }
  97. .chose-address-btn {
  98. width: 144rpx;
  99. height: 60rpx;
  100. border-radius: 10rpx;
  101. }
  102. .ad-top {
  103. height: 92rpx;
  104. width: 100%;
  105. }
  106. .ad-name {
  107. font-size: 30rpx;
  108. font-weight: bold;
  109. color: #333333;
  110. margin-right:20rpx;
  111. }
  112. .ad-phone {
  113. font-size: 26rpx;
  114. font-weight: 400;
  115. color: #999999;
  116. }
  117. .address-detail {
  118. font-size: 26rpx;
  119. font-weight: 400;
  120. color: #333333;
  121. line-height: 36rpx;
  122. }
  123. .ad-tips {
  124. font-size: 26rpx;
  125. font-weight: 400;
  126. color: #9A1D16;
  127. margin-top: 20rpx;
  128. }
  129. .ca-title {
  130. font-size: 30rpx;
  131. font-weight: bold;
  132. color: #333333;
  133. margin: 40rpx 0 20rpx 0;
  134. }
  135. .calendar-card {
  136. width: 690rpx;
  137. min-height: 500rpx;
  138. background: #FFFFFF;
  139. border-radius: 20rpx 20rpx 0 0;
  140. border-bottom: 1rpx solid #DDDDDD;
  141. }
  142. .calendar-card-header {
  143. width: 100%;
  144. height: 84rpx;
  145. display: flex;
  146. justify-content: space-between;
  147. align-items: center;
  148. }
  149. .calendar-card-body {
  150. width: 630rpx;
  151. margin: 0 auto;
  152. min-height: 70rpx;
  153. }
  154. .week-header {
  155. width: 100%;
  156. height: 90rpx;
  157. }
  158. .week-item {
  159. width: 90rpx;
  160. height: 90rpx;
  161. text-align: center;
  162. line-height: 90rpx;
  163. font-size: 24rpx;
  164. color: #999999;
  165. }
  166. .week-body {
  167. width: 100%;
  168. min-height: 450rpx;
  169. display: flex;
  170. justify-content: flex-start;
  171. flex-wrap: wrap;
  172. }
  173. .week-body-item {
  174. width: 90rpx;
  175. height: 90rpx;
  176. color: #333333;
  177. }
  178. .week-body-item-disabled {
  179. color: #999999;
  180. }
  181. .week-body-item-active {
  182. color: #fff;
  183. background-color: #45A6B5;
  184. border-radius: 50%;
  185. }
  186. .week-body-item-full {
  187. color: #9A1D16;
  188. }
  189. .date {
  190. width: 100%;
  191. height: 100%;
  192. text-align: center;
  193. line-height: 90rpx;
  194. font-size: 28rpx;
  195. }
  196. .curr-date {
  197. font-size: 32rpx;
  198. font-weight: bold;
  199. color: #333333;
  200. margin-left: 20rpx;
  201. }
  202. .warn-icon {
  203. width: 20rpx;
  204. height: 20rpx;
  205. background: #9A1D16;
  206. border-radius: 50%;
  207. }
  208. .warn-text{
  209. font-size: 26rpx;
  210. font-weight: 400;
  211. color: #333333;
  212. margin: 0 20rpx 0 10rpx;
  213. }
  214. .calendar {
  215. --calendar-height: 450rpx;
  216. }
  217. view .van-calendar__selected-day {
  218. width: 68rpx;
  219. height: 68rpx;
  220. border-radius: 50%;
  221. }
  222. view .van-calendar__month-title {
  223. display: none;
  224. }
  225. view .van-calendar__days {
  226. background-color: #fff;
  227. }
  228. .time-list {
  229. width: 100%;
  230. height: 148rpx;
  231. justify-content: space-around;
  232. background-color: #fff;
  233. }
  234. .time-item {
  235. width: 190rpx;
  236. height: 68rpx;
  237. display: flex;
  238. justify-content: center;
  239. align-items: center;
  240. background: #FFFFFF;
  241. border-radius: 10rpx;
  242. border: 1rpx solid #DDDDDD;
  243. }
  244. .t-text {
  245. font-size: 26rpx;
  246. font-weight: 400;
  247. color: #333333;
  248. }
  249. .time-nurse-text {
  250. font-size: 22rpx;
  251. font-weight: 400;
  252. color: #9A1D16;
  253. }
  254. .time-nurse {
  255. display: flex;
  256. flex-direction: column;
  257. justify-content: center;
  258. align-items: center;
  259. }
  260. .time-active {
  261. background-color: var(--maincolor);
  262. border: 1rpx solid var(--maincolor);
  263. }
  264. .time-active .t-text{
  265. color: #fff;
  266. }
  267. .footer-actions {
  268. width: 100%;
  269. height: 80rpx;
  270. margin-top: 40rpx;
  271. }
  272. .f-btn {
  273. width: 324rpx;
  274. height: 80rpx;
  275. border-radius: 10rpx;
  276. }
  277. .cancel-btn {
  278. background-color: #F7F7F7;
  279. border: 1rpx solid #333333;
  280. }
  281. .wrapper {
  282. height: 100%;
  283. }
  284. .model {
  285. width: 540rpx;
  286. height: 208rpx;
  287. background: #FFFFFF;
  288. border-radius: 24rpx;
  289. }
  290. .top-title {
  291. font-size: 34rpx;
  292. font-weight: bold;
  293. color: #333333;
  294. text-align: center;
  295. height: 118rpx;
  296. line-height: 118rpx;
  297. border-bottom: 1rpx solid #DDDDDD;
  298. box-sizing:border-box;
  299. }
  300. .btn {
  301. width: 270rpx;
  302. height: 90rpx;
  303. box-sizing: border-box;
  304. font-size: 34rpx;
  305. color: #333333;
  306. }
  307. .w-cancel-btn {
  308. font-weight: 400;
  309. }
  310. .w-confirm-btn {
  311. border-left: 1rpx solid #DDDDDD;
  312. font-weight: bold;
  313. }
  314. .calendar-all-full {
  315. color: #9A1D16 !important;
  316. }