myAppointment.wxss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. height: 352rpx;
  46. margin: 20rpx auto 0;
  47. background: #FFFFFF;
  48. border-radius: 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. height: 60rpx;
  83. margin-top: 20rpx;
  84. display: flex;
  85. justify-content: flex-end;
  86. }
  87. .cancel-button {
  88. width: 144rpx;
  89. height: 60rpx;
  90. margin-right: 20rpx;
  91. background: #FFFFFF;
  92. border-radius: 10rpx;
  93. border: 1rpx solid #333333;
  94. font-size: 26rpx;
  95. font-weight: 400;
  96. color: #333333;
  97. }