12345678910111213141516171819202122232425262728293031 |
- @import "../../app.wxss";
- .tab {
- width: 100%;
- }
- .tab .swiper-tab {
- display: flex;
- justify-content: space-around;
- width: 100%;
- border-bottom: 2rpx solid #ccc;
- text-align: center;
- height: 88rpx;
- line-height: 88rpx;
- font-weight: bold;
- background-color: var(--rgbfff);
- }
- .tab .swiper-tab .swiper-tab-item {
- color: var(--rgb3AB);
- }
- .tab .swiper {
- width: 100%;
- height: 84vh;
- }
- .active {
- color: var(--rgb40E) !important;
- border-bottom: 4rpx solid var(--rgb40E);
- }
|