appointment.wxss 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  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. .date {
  184. width: 100%;
  185. height: 100%;
  186. text-align: center;
  187. line-height: 90rpx;
  188. font-size: 28rpx;
  189. }
  190. .curr-date {
  191. font-size: 32rpx;
  192. font-weight: bold;
  193. color: #333333;
  194. margin-left: 20rpx;
  195. }
  196. .warn-icon {
  197. width: 20rpx;
  198. height: 20rpx;
  199. background: #9A1D16;
  200. border-radius: 50%;
  201. }
  202. .warn-text{
  203. font-size: 26rpx;
  204. font-weight: 400;
  205. color: #333333;
  206. margin: 0 20rpx 0 10rpx;
  207. }
  208. .calendar {
  209. --calendar-height: 450rpx;
  210. }
  211. view .van-calendar__selected-day {
  212. width: 68rpx;
  213. height: 68rpx;
  214. border-radius: 50%;
  215. }
  216. view .van-calendar__month-title {
  217. display: none;
  218. }
  219. view .van-calendar__days {
  220. background-color: #fff;
  221. }
  222. .time-list {
  223. width: 100%;
  224. height: 148rpx;
  225. justify-content: space-around;
  226. background-color: #fff;
  227. }
  228. .time-item {
  229. width: 190rpx;
  230. height: 68rpx;
  231. display: flex;
  232. justify-content: center;
  233. align-items: center;
  234. background: #FFFFFF;
  235. border-radius: 10rpx;
  236. border: 1rpx solid #DDDDDD;
  237. }
  238. .t-text {
  239. font-size: 26rpx;
  240. font-weight: 400;
  241. color: #333333;
  242. }
  243. .time-nurse-text {
  244. font-size: 22rpx;
  245. font-weight: 400;
  246. color: #9A1D16;
  247. }
  248. .time-nurse {
  249. display: flex;
  250. flex-direction: column;
  251. justify-content: center;
  252. align-items: center;
  253. }
  254. .time-active {
  255. background-color: var(--maincolor);
  256. border: 1rpx solid var(--maincolor);
  257. }
  258. .time-active .t-text{
  259. color: #fff;
  260. }
  261. .footer-actions {
  262. width: 100%;
  263. height: 80rpx;
  264. margin-top: 40rpx;
  265. }
  266. .f-btn {
  267. width: 324rpx;
  268. height: 80rpx;
  269. border-radius: 10rpx;
  270. }
  271. .cancel-btn {
  272. background-color: #F7F7F7;
  273. border: 1rpx solid #333333;
  274. }
  275. .wrapper {
  276. height: 100%;
  277. }
  278. .model {
  279. width: 540rpx;
  280. height: 208rpx;
  281. background: #FFFFFF;
  282. border-radius: 24rpx;
  283. }
  284. .top-title {
  285. font-size: 34rpx;
  286. font-weight: bold;
  287. color: #333333;
  288. text-align: center;
  289. height: 118rpx;
  290. line-height: 118rpx;
  291. border-bottom: 1rpx solid #DDDDDD;
  292. box-sizing:border-box;
  293. }
  294. .btn {
  295. width: 270rpx;
  296. height: 90rpx;
  297. box-sizing: border-box;
  298. font-size: 34rpx;
  299. color: #333333;
  300. }
  301. .w-cancel-btn {
  302. font-weight: 400;
  303. }
  304. .w-confirm-btn {
  305. border-left: 1rpx solid #DDDDDD;
  306. font-weight: bold;
  307. }
  308. .calendar-all-full {
  309. color: #9A1D16 !important;
  310. }