81 lines
1.2 KiB
CSS
81 lines
1.2 KiB
CSS
.flex{
|
|
display: flex;
|
|
}
|
|
|
|
.flex-space-between{
|
|
justify-content: space-between;
|
|
}
|
|
.flbtn{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.flex-space-around{
|
|
justify-content: space-around;
|
|
}
|
|
.flex-center{
|
|
justify-content: center;
|
|
}
|
|
.flex-left{
|
|
justify-content: start;
|
|
}
|
|
.flex-right{
|
|
justify-content: end;
|
|
}
|
|
.mt-30{
|
|
margin: 0 30rpx;
|
|
}
|
|
.align-item-center{
|
|
align-items: center;
|
|
}
|
|
.clearBtn{
|
|
border: none;
|
|
background: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
/* #ifdef MP-ALIPAY */
|
|
display: flex;
|
|
align-items:center;
|
|
/* #endif */
|
|
}
|
|
.clearBtn:after{
|
|
border: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.min-body{
|
|
background-color: #f5f5f5;
|
|
min-height: 100vh;
|
|
}
|
|
.lit-999{
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
}
|
|
.lit-666{
|
|
font-size: 24rpx;
|
|
color: #666;
|
|
}
|
|
.overtext{
|
|
overflow: hidden; /*超出隐藏*/
|
|
text-overflow: ellipsis;/*隐藏后添加省略号*/
|
|
white-space: nowrap;/*强制不换行*/
|
|
}
|
|
.lit-333{
|
|
font-size: 24rpx;
|
|
color: #333;
|
|
}
|
|
.big-333{
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
}
|
|
.big-999{
|
|
font-size: 28rpx;
|
|
color: #999;
|
|
}
|
|
.big-666{
|
|
font-size: 28rpx;
|
|
color: #666;
|
|
}
|
|
.bold{
|
|
font-weight: bold;
|
|
} |