index.scss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. .search-right {
  2. padding: 0 10rpx !important;
  3. }
  4. .tips {
  5. width: 750rpx;
  6. text-align: center;
  7. height: 64rpx;
  8. line-height: 64rpx;
  9. background: #FFEFD9;
  10. font-size: 28rpx;
  11. font-family: PingFang SC-Semibold, PingFang SC;
  12. font-weight: 600;
  13. color: #FA8C16;
  14. }
  15. page {
  16. width: 100vw;
  17. overflow: hidden;
  18. }
  19. .groud {
  20. width: 100%;
  21. padding: 30rpx;
  22. border-bottom: 1px solid #DDDDDD;
  23. .label {
  24. height: 40rpx;
  25. font-size: 28rpx;
  26. font-family: PingFang SC-Regular, PingFang SC;
  27. color: #333333;
  28. }
  29. .content {
  30. display: flex;
  31. flex-wrap: wrap;
  32. width: 100%;
  33. .but {
  34. width: 188rpx;
  35. height: 72rpx;
  36. background: #F5F5F5;
  37. border-radius: 8rpx;
  38. font-size: 28rpx;
  39. font-family: PingFang SC-Regular, PingFang SC;
  40. color: #333333;
  41. box-sizing: border-box;
  42. margin-right: 20rpx;
  43. margin-top: 20rpx;
  44. padding: 0;
  45. }
  46. .active {
  47. border: 1px solid #3874F6;
  48. color: #3874F6;
  49. font-weight: bold;
  50. background-color: #F5F5F5;
  51. }
  52. }
  53. .time {
  54. .partition {
  55. margin-right: 20rpx;
  56. display: flex;
  57. align-items: center;
  58. }
  59. .tbox {
  60. width: 220rpx;
  61. height: 72rpx;
  62. text-align: center;
  63. line-height: 72rpx;
  64. background: #F5F5F5;
  65. border-radius: 8rpx;
  66. font-size: 28rpx;
  67. font-family: PingFang SC-Regular, PingFang SC;
  68. color: #333333;
  69. box-sizing: border-box;
  70. margin-right: 20rpx;
  71. margin-top: 20rpx;
  72. }
  73. }
  74. }
  75. .DrawerPage {
  76. position: fixed;
  77. width: 100vw;
  78. height: 100vh;
  79. left: 0vw;
  80. background-color: #f1f1f1;
  81. transition: all 0.4s;
  82. }
  83. .DrawerPage.show {
  84. transform: scale(0.9, 0.9);
  85. left: 50vw;
  86. box-shadow: 0 0 60rpx rgba(0, 0, 0, 0.2);
  87. transform-origin: 0;
  88. }
  89. .DrawerWindow {
  90. position: absolute;
  91. width: 50vw;
  92. height: 100vh;
  93. left: 0;
  94. top: 0;
  95. transform: scale(0.9, 0.9) translateX(-100%);
  96. opacity: 0;
  97. pointer-events: none;
  98. transition: all 0.4s;
  99. }
  100. .DrawerWindow.show {
  101. transform: scale(1, 1) translateX(0%);
  102. opacity: 1;
  103. pointer-events: all;
  104. }
  105. .DrawerClose {
  106. position: absolute;
  107. width: 40vw;
  108. height: 100vh;
  109. right: 0;
  110. top: 0;
  111. color: transparent;
  112. padding-bottom: 30rpx;
  113. display: flex;
  114. align-items: flex-end;
  115. justify-content: center;
  116. background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.6));
  117. letter-spacing: 5px;
  118. font-size: 50rpx;
  119. opacity: 0;
  120. pointer-events: none;
  121. transition: all 0.4s;
  122. }
  123. .DrawerClose.show {
  124. opacity: 1;
  125. pointer-events: all;
  126. width: 50vw;
  127. color: #fff;
  128. }
  129. .DrawerPage .cu-bar.tabbar .action button.icon {
  130. width: 64rpx;
  131. height: 64rpx;
  132. line-height: 64rpx;
  133. margin: 0;
  134. display: inline-block;
  135. }
  136. .DrawerPage .cu-bar.tabbar .action .cu-avatar {
  137. margin: 0;
  138. }
  139. .DrawerPage .nav {
  140. flex: 1;
  141. }
  142. .DrawerPage .nav .cu-item.cur {
  143. border-bottom: 0;
  144. position: relative;
  145. }
  146. .DrawerPage .nav .cu-item.cur::after {
  147. content: "";
  148. width: 10rpx;
  149. height: 10rpx;
  150. background-color: currentColor;
  151. position: absolute;
  152. bottom: 10rpx;
  153. border-radius: 10rpx;
  154. left: 0;
  155. right: 0;
  156. margin: auto;
  157. }
  158. .DrawerPage .cu-bar.tabbar .action {
  159. flex: initial;
  160. }