You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
618 B
43 lines
618 B
/* tab bar */
|
|
.uni-tab-bar {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
}
|
|
|
|
.uni-tab-bar .list {
|
|
width: 750upx;
|
|
height: 100%;
|
|
}
|
|
|
|
.uni-swiper-tab {
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
line-height: 100upx;
|
|
height: 100upx;
|
|
/* border-bottom: 1px solid #c8c7cc; */
|
|
}
|
|
|
|
.swiper-tab-list {
|
|
font-size: 30upx;
|
|
width: 150upx;
|
|
display: inline-block;
|
|
text-align: center;
|
|
color: #555;
|
|
}
|
|
|
|
.uni-tab-bar .active {
|
|
color: #1890ff;
|
|
}
|
|
|
|
.uni-tab-bar .swiper-box {
|
|
flex: 1;
|
|
width: 100%;
|
|
height: calc(100% - 100upx);
|
|
}
|
|
|
|
.uni-tab-bar-loading {
|
|
padding: 20upx 0;
|
|
}
|
|
|