browse-history.css 2.9 KB

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