83 lines
1.1 KiB
Plaintext
83 lines
1.1 KiB
Plaintext
/* page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
|
|
.nav-tabs {
|
|
width: 100%;
|
|
display: flex;
|
|
position: fixed;
|
|
bottom: 0;
|
|
}
|
|
|
|
.tab-list {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column-reverse;
|
|
background: #fcfcfc;
|
|
height: 120rpx;
|
|
|
|
}
|
|
|
|
.tab-text {
|
|
font-size: 24rpx;
|
|
line-height: 35rpx;
|
|
color: #5f5f5f;
|
|
}
|
|
|
|
.iconPath {
|
|
width:54rpx;
|
|
height: 54rpx;
|
|
}
|
|
|
|
.tab-content {
|
|
flex: 1;
|
|
}
|
|
|
|
.default {
|
|
line-height: 75rpx;
|
|
text-align: center;
|
|
flex: 1;
|
|
color: #eee;
|
|
font-weight: bold;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.active {
|
|
line-height: 75rpx;
|
|
text-align: center;
|
|
background-color: #fff;
|
|
flex: 1;
|
|
font-weight: bold;
|
|
font-size: 28rpx;
|
|
}
|
|
.active .tab-text {
|
|
color: rgb(116,162,250);
|
|
}
|
|
|
|
.show {
|
|
display: block;
|
|
flex: 1;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
flex: 1;
|
|
} */
|
|
|
|
.dialog{
|
|
width: 50%;
|
|
text-align: center;
|
|
height: 100rpx;
|
|
line-height: 100rpx;
|
|
}
|
|
.dialog_cancel_btn{
|
|
border-top: 1px solid #E9E9E9;
|
|
border-right: 1px solid #E9E9E9;
|
|
}
|
|
.dialog_confirm_btn{
|
|
border-top: 1px solid #E9E9E9;
|
|
color: #3CC7C0;
|
|
} |