myService.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /* pages/my/myService/myService.wxss */
  2. page {
  3. width: 100%;
  4. height: 100%;
  5. }
  6. .tabs {
  7. display: flex;
  8. height: 74rpx;
  9. background-color: #fff;
  10. border-bottom: 1rpx solid #e6e6e6;
  11. }
  12. .tabs .tab {
  13. flex: 1;
  14. padding-top: 4rpx;
  15. text-align: center;
  16. font-size: 28rpx;
  17. font-family: 'PingFang SC, PingFang SC-Regular';
  18. font-weight: 400;
  19. color: #666666;
  20. }
  21. .tabs .tab-active {
  22. font-size: 32rpx;
  23. font-family: 'PingFang SC, PingFang SC-Bold';
  24. font-weight: 700;
  25. color: #1A1A1A;
  26. }
  27. .tab-item {
  28. position: relative;
  29. display: inline-block;
  30. height: 100%;
  31. }
  32. .activeTab::after {
  33. position: absolute;
  34. display: block;
  35. width: 100%;
  36. bottom: 0;
  37. content: '';
  38. height: 4rpx;
  39. background: #ffdd36;
  40. border-radius: 2rpx;
  41. }
  42. .main {
  43. padding: 0 30rpx;
  44. }
  45. .main .box {
  46. display: flex;
  47. justify-content: space-between;
  48. height: 214rpx;
  49. background: #ffffff;
  50. border-radius: 10rpx;
  51. margin-top: 20rpx;
  52. padding: 37rpx 30rpx 0;
  53. box-sizing: border-box;
  54. }
  55. .main .box:first-child {
  56. margin-top: 36rpx;
  57. }
  58. .main .box .info {
  59. font-size: 24rpx;
  60. font-weight: 400;
  61. font-family: 'PingFang SC, PingFang SC-Regular';
  62. }
  63. .main .box .info .classify {
  64. margin-bottom: 10rpx;
  65. font-size: 28rpx;
  66. color: #2b2b2b;
  67. }
  68. .main .box .info .label {
  69. margin-bottom: 10rpx;
  70. font-family: 'PingFang SC, PingFang SC-Regular';
  71. color: #1a1a1a;
  72. }
  73. .main .box .info .num {
  74. color: #808080;
  75. }
  76. .main .box .info .tip {
  77. color: #1a1a1a;
  78. }
  79. .main .box .status {
  80. font-size: 28rpx;
  81. }
  82. .main .box .status .btn {
  83. width: 153rpx;
  84. height: 57rpx;
  85. margin-bottom: 28rpx;
  86. background: #ffdc2f;
  87. border-radius: 29rpx;
  88. font-size: 28rpx;
  89. line-height: 57rpx;
  90. font-family: 'PingFang SC, PingFang SC-Regular';
  91. font-weight: 400;
  92. color: #1a1a1a;
  93. color: #fff;
  94. }
  95. .main .box .status .refuse {
  96. background: #ffb08d;
  97. }
  98. .main .box .status .dispose {
  99. background: #3BE5B2;
  100. }
  101. .main .box .status .finish {
  102. color: #ffa836;
  103. /* color: #fff; */
  104. background: #FFFAE1;
  105. }
  106. .main .box .status .serve-price {
  107. font-size: 20rpx;
  108. text-align: right;
  109. font-family: 'PingFang SC, PingFang SC-Medium';
  110. font-weight: 500;
  111. color: #ec2e26;
  112. color: #fff;
  113. }
  114. .main .box .status .serve-price .num {
  115. font-size: 30rpx;
  116. font-weight: 700;
  117. }