myAppointment.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. .app-str {
  62. margin-right: 20rpx;
  63. }
  64. .status {
  65. font-size: 26rpx;
  66. font-weight: 400;
  67. margin-right: 20rpx;
  68. color: var(--maincolor);
  69. }
  70. .s-cancel {
  71. color: #999;
  72. }
  73. s-done {
  74. color: #333;
  75. }
  76. .info-item {
  77. margin-top: 20rpx;
  78. margin-left: 20rpx;
  79. font-size: 26rpx;
  80. font-weight: 400;
  81. color: #333333;
  82. }
  83. .bototm {
  84. width: 100%;
  85. margin-top: 20rpx;
  86. display: flex;
  87. justify-content: flex-end;
  88. align-items: center;
  89. }
  90. .cancel-button {
  91. margin-right: 20rpx;
  92. background: #FFFFFF;
  93. color: #333333;
  94. }
  95. .action-btn {
  96. width: 144rpx;
  97. height: 60rpx;
  98. font-size: 26rpx;
  99. margin: 0;
  100. }
  101. .submit-btn {
  102. margin-right: 20rpx;
  103. }
  104. .cancels-btn {
  105. margin-right: 20rpx;
  106. }
  107. .wrapper {
  108. height: 100%;
  109. }
  110. .model {
  111. width: 540rpx;
  112. height: 208rpx;
  113. background: #FFFFFF;
  114. border-radius: 24rpx;
  115. }
  116. .top-title {
  117. font-size: 34rpx;
  118. font-weight: bold;
  119. color: #333333;
  120. text-align: center;
  121. height: 118rpx;
  122. line-height: 118rpx;
  123. border-bottom: 1rpx solid #DDDDDD;
  124. box-sizing:border-box;
  125. }
  126. .btn {
  127. width: 270rpx;
  128. height: 90rpx;
  129. box-sizing: border-box;
  130. font-size: 34rpx;
  131. color: #333333;
  132. }
  133. .w-cancel-btn {
  134. font-weight: 400;
  135. }
  136. .w-confirm-btn {
  137. border-left: 1rpx solid #DDDDDD;
  138. font-weight: bold;
  139. }