appointment.wxss 5.0 KB

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