browse-history.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. .wrap {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. padding-top: calc(358rpx + var(--status-bar-height));
  6. }
  7. .header {
  8. width: 100%;
  9. height: calc(358rpx + var(--status-bar-height));
  10. position: fixed;
  11. top: 0;
  12. left: 0;
  13. z-index: 9999999;
  14. display: flex;
  15. flex-direction: column;
  16. box-sizing: border-box;
  17. padding: var(--status-bar-height) 0 0;
  18. background-color: #fff;
  19. }
  20. .header-top {
  21. width: 100%;
  22. height: 88rpx;
  23. display: flex;
  24. justify-content: space-between;
  25. align-items: center;
  26. background-color: #fff;
  27. position: relative;
  28. }
  29. .return {
  30. width: 19rpx;
  31. position: absolute;
  32. left: 24rpx;
  33. z-index: 999999;
  34. }
  35. .header-title {
  36. width: 100%;
  37. line-height: 88rpx;
  38. font-weight: 700;
  39. font-size: 16px;
  40. text-align: center;
  41. color: rgb(0, 0, 0);
  42. }
  43. .header-msg {
  44. line-height: 88rpx;
  45. color: #202020;
  46. font-size: 28rpx;
  47. position: absolute;
  48. right: 28rpx;
  49. }
  50. .header-center {
  51. width: 100%;
  52. height: 106rpx;
  53. border-top: 1px solid #F2F2F2;
  54. }
  55. .tab-list {
  56. width: 100%;
  57. height: 106rpx;
  58. display: flex;
  59. justify-content: space-between;
  60. align-items: center;
  61. padding: 0 155rpx;
  62. box-sizing: border-box;
  63. }
  64. .child {
  65. height: 106rpx;
  66. display: flex;
  67. align-items: center;
  68. font-size: 32rpx;
  69. color: #777777;
  70. position: relative;
  71. }
  72. .child.active::after {
  73. content: "";
  74. width: 64rpx;
  75. height: 8rpx;
  76. position: absolute;
  77. bottom: 0;
  78. left: 50%;
  79. transform: translate(-50%, 0);
  80. background-color: #F2501A;
  81. border-radius: 10rpx;
  82. }
  83. .child.active {
  84. color: #F2501A;
  85. font-weight: bold;
  86. }
  87. .header-bottom {
  88. width: 100%;
  89. height: 164rpx;
  90. display: flex;
  91. align-items: center;
  92. background-color: #FFFFFF;
  93. padding: 0 38rpx;
  94. box-sizing: border-box;
  95. border-top: 1px solid #F2F2F2;
  96. }
  97. .subtab-list {
  98. width: 100%;
  99. height: 164rpx;
  100. white-space: nowrap;
  101. }
  102. .subtab-item {
  103. width: 14.285%;
  104. height: 100%;
  105. display: inline-block;
  106. box-sizing: border-box;
  107. }
  108. .subtab-child {
  109. width: 47rpx;
  110. height: 100%;
  111. display: flex;
  112. flex-direction: column;
  113. justify-content: center;
  114. align-items: center;
  115. color: #999999;
  116. font-size: 24rpx;
  117. border-radius: 10rpx;
  118. margin: 0 auto;
  119. }
  120. .subtab-child text:first-child {
  121. font-size: 30rpx;
  122. color: #A7A7A7;
  123. margin-bottom: 14rpx;
  124. }
  125. .subtab-child text:last-child {
  126. font-size: 30rpx;
  127. color: #202020;
  128. height: 52rpx;
  129. line-height: 52rpx;
  130. position: relative;
  131. }
  132. .subtab-child.active text:last-child {
  133. text-align: center;
  134. width: 52rpx;
  135. height: 52rpx;
  136. line-height: 52rpx;
  137. border-radius: 50%;
  138. color: #ffffff;
  139. font-size: 30rpx;
  140. background-color: #F2501A;
  141. }
  142. .subtab-child text:last-child::after {
  143. content: "";
  144. position: absolute;
  145. bottom: -10rpx;
  146. left: 50%;
  147. transform: translate(-50%, 0);
  148. width: 8rpx;
  149. height: 8rpx;
  150. background-color: #F2501A;
  151. border-radius: 50%;
  152. }
  153. .subtab-child.active text:last-child::after {
  154. background-color: initial;
  155. }