myAppointment.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /* pages/myAppointment/myAppointment.wxss */
  2. .myappoint-content {
  3. width: 100%;
  4. height: 100%;
  5. overflow-y: auto;
  6. background-color: #f7f7f7;
  7. }
  8. .nav-header {
  9. width: 100%;
  10. height: 88rpx;
  11. background-color: #fff;
  12. }
  13. .nav-item {
  14. width: 230rpx;
  15. height: 100%;
  16. font-size: 30rpx;
  17. font-weight: 400;
  18. color: #999999;
  19. }
  20. .nav-item-active {
  21. font-weight: bold;
  22. color: var(--maincolor);
  23. }
  24. .nodate {
  25. width: 100%;
  26. height: calc(100% - 88rpx);
  27. margin-top: 250rpx;
  28. display: flex;
  29. flex-direction: column;
  30. justify-content: flex-start;
  31. align-items: center;
  32. }
  33. .nodate-img {
  34. width: 450rpx;
  35. height: 400rpx;
  36. }
  37. .nodate-text {
  38. font-size: 26rpx;
  39. font-weight: 400;
  40. color: #999999;
  41. margin-top: 20rpx;
  42. }
  43. .data-item {
  44. width: 690rpx;
  45. margin: 20rpx auto 0;
  46. background: #FFFFFF;
  47. border-radius: 20rpx;
  48. padding-bottom: 20rpx;
  49. }
  50. .top {
  51. width: 100%;
  52. height: 82rpx;
  53. border-bottom: 1rpx solid #e4e4e4;
  54. }
  55. .top-date {
  56. font-size: 30rpx;
  57. font-weight: bold;
  58. color: #333333;
  59. margin-left: 20rpx;
  60. }
  61. .status {
  62. font-size: 26rpx;
  63. font-weight: 400;
  64. margin-right: 20rpx;
  65. color: var(--maincolor);
  66. }
  67. .s-cancel {
  68. color: #999;
  69. }
  70. s-done {
  71. color: #333;
  72. }
  73. .info-item {
  74. margin-top: 20rpx;
  75. margin-left: 20rpx;
  76. font-size: 26rpx;
  77. font-weight: 400;
  78. color: #333333;
  79. }
  80. .bototm {
  81. width: 100%;
  82. margin-top: 20rpx;
  83. display: flex;
  84. justify-content: flex-end;
  85. }
  86. .cancel-button {
  87. width: 144rpx;
  88. height: 60rpx;
  89. margin-right: 20rpx;
  90. background: #FFFFFF;
  91. border-radius: 10rpx;
  92. border: 1rpx solid #333333;
  93. font-size: 26rpx;
  94. font-weight: 400;
  95. color: #333333;
  96. box-sizing: border-box;
  97. }
  98. .submit-btn {
  99. width: 144rpx;
  100. height: 60rpx;
  101. margin-right: 20rpx;
  102. border-radius: 10rpx;
  103. font-size: 26rpx;
  104. }
  105. .wrapper {
  106. height: 100%;
  107. }
  108. .model {
  109. width: 540rpx;
  110. height: 208rpx;
  111. background: #FFFFFF;
  112. border-radius: 24rpx;
  113. }
  114. .top-title {
  115. font-size: 34rpx;
  116. font-weight: bold;
  117. color: #333333;
  118. text-align: center;
  119. height: 118rpx;
  120. line-height: 118rpx;
  121. border-bottom: 1rpx solid #DDDDDD;
  122. box-sizing:border-box;
  123. }
  124. .btn {
  125. width: 270rpx;
  126. height: 90rpx;
  127. box-sizing: border-box;
  128. font-size: 34rpx;
  129. color: #333333;
  130. }
  131. .w-cancel-btn {
  132. font-weight: 400;
  133. }
  134. .w-confirm-btn {
  135. border-left: 1rpx solid #DDDDDD;
  136. font-weight: bold;
  137. }