12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .body {
- padding-top: 90rpx;
- }
- .body::after {
- content: "";
- display: block;
- height: env(safe-area-inset-bottom);
- }
- .tab {
- width: 100%;
- height: 90rpx;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 10;
- display: flex;
- background: #fff;
- }
- .tab-item {
- flex: 1;
- height: 100%;
- display: flex;
- align-items: flex-end;
- justify-content: center;
- }
- .tab-item text {
- font-size: 32rpx;
- color: #999999;
- padding-bottom: 8rpx;
- border-bottom: 2rpx solid transparent;
- font-weight: 500;
- }
- .tab-item.active text {
- color: #333333;
- border-bottom-color: #FF77B0;
- }
- .list {
- padding: 20rpx 28rpx 0;
- }
|