86 lines
1.2 KiB
Plaintext
86 lines
1.2 KiB
Plaintext
|
|
|
|
.tab-container {
|
|
position: relative;
|
|
}
|
|
|
|
.scroll-view {
|
|
white-space: nowrap;
|
|
|
|
border-radius: 10rpx;
|
|
width: 100%;
|
|
padding-top: 20rpx;
|
|
padding-bottom: 24rpx;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.tab-view {
|
|
width: 100%;
|
|
display: inline-block;
|
|
}
|
|
|
|
.slide-bar {
|
|
width: 100rpx;
|
|
height: 8rpx;
|
|
position: absolute;
|
|
background-color: #eee;
|
|
border-radius: 4rpx;
|
|
bottom: 6rpx;
|
|
left: 50%;
|
|
transform: translateX(-50%) translateY(-50%);
|
|
}
|
|
|
|
.slide-show {
|
|
height: 100%;
|
|
background-color: #8f8f8f;
|
|
}
|
|
|
|
.btn-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
width: 100%;
|
|
}
|
|
|
|
.btn-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.btn-box:active {
|
|
background-color: #fafafa;
|
|
}
|
|
|
|
.btn-box{
|
|
margin-top: 20rpx,
|
|
}
|
|
|
|
.btn-name {
|
|
font-size: 28rpx;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.icon {
|
|
font-size: 30rpx;
|
|
color: #000 !important;
|
|
}
|
|
|
|
.icon-white {
|
|
color: #fff !important;
|
|
}
|
|
|
|
.icon-box {
|
|
font-size: 30rpx;
|
|
width: 96rpx;
|
|
height: 96rpx;
|
|
min-width: 96rpx;
|
|
border-radius: 16rpx;
|
|
background-color: #fff;
|
|
color: #000;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
} |