123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- .wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- padding-top: calc(358rpx + var(--status-bar-height));
- }
- .header {
- width: 100%;
- height: calc(358rpx + var(--status-bar-height));
- position: fixed;
- top: 0;
- left: 0;
- z-index: 9999999;
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- padding: var(--status-bar-height) 0 0;
- background-color: #fff;
- }
- .header-top {
- width: 100%;
- height: 88rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- background-color: #fff;
- position: relative;
- }
- .return {
- width: 19rpx;
- position: absolute;
- left: 24rpx;
- z-index: 999999;
- }
- .header-title {
- width: 100%;
- line-height: 88rpx;
- font-weight: 700;
- font-size: 16px;
- text-align: center;
- color: rgb(0, 0, 0);
- }
- .header-msg {
- line-height: 88rpx;
- color: #202020;
- font-size: 28rpx;
- position: absolute;
- right: 28rpx;
- }
- .header-center {
- width: 100%;
- height: 106rpx;
- border-top: 1px solid #F2F2F2;
- }
- .tab-list {
- width: 100%;
- height: 106rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 155rpx;
- box-sizing: border-box;
- }
- .child {
- height: 106rpx;
- display: flex;
- align-items: center;
- font-size: 32rpx;
- color: #777777;
- position: relative;
- }
- .child.active::after {
- content: "";
- width: 64rpx;
- height: 8rpx;
- position: absolute;
- bottom: 0;
- left: 50%;
- transform: translate(-50%, 0);
- background-color: #F2501A;
- border-radius: 10rpx;
- }
- .child.active {
- color: #F2501A;
- font-weight: bold;
- }
- .header-bottom {
- width: 100%;
- height: 164rpx;
- display: flex;
- align-items: center;
- background-color: #FFFFFF;
- padding: 0 38rpx;
- box-sizing: border-box;
- border-top: 1px solid #F2F2F2;
- }
- .subtab-list {
- width: 100%;
- height: 164rpx;
- white-space: nowrap;
- }
- .subtab-item {
- width: 14.285%;
- height: 100%;
- display: inline-block;
- box-sizing: border-box;
- }
- .subtab-child {
- width: 47rpx;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- color: #999999;
- font-size: 24rpx;
- border-radius: 10rpx;
- margin: 0 auto;
- }
- .subtab-child text:first-child {
- font-size: 30rpx;
- color: #A7A7A7;
- margin-bottom: 14rpx;
- }
- .subtab-child text:last-child {
- font-size: 30rpx;
- color: #202020;
- height: 52rpx;
- line-height: 52rpx;
- position: relative;
- }
- .subtab-child.active text:last-child {
- text-align: center;
- width: 52rpx;
- height: 52rpx;
- line-height: 52rpx;
- border-radius: 50%;
- color: #ffffff;
- font-size: 30rpx;
- background-color: #F2501A;
- }
- .subtab-child text:last-child::after {
- content: "";
- position: absolute;
- bottom: -10rpx;
- left: 50%;
- transform: translate(-50%, 0);
- width: 8rpx;
- height: 8rpx;
- background-color: #F2501A;
- border-radius: 50%;
- }
- .subtab-child.active text:last-child::after {
- background-color: initial;
- }
|