81 lines
755 B
CSS
81 lines
755 B
CSS
/* 全局样式 */
|
|
page {
|
|
background-color: #f5f5f5;
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
}
|
|
|
|
.container {
|
|
padding: 20rpx;
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
|
|
.flex-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.flex-center {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.flex-between {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.mt-10 {
|
|
margin-top: 10rpx;
|
|
}
|
|
|
|
.mt-20 {
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.mb-10 {
|
|
margin-bottom: 10rpx;
|
|
}
|
|
|
|
.mb-20 {
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.p-20 {
|
|
padding: 20rpx;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.text-primary {
|
|
color: #3c9cff;
|
|
}
|
|
|
|
.text-success {
|
|
color: #19be6b;
|
|
}
|
|
|
|
.text-warning {
|
|
color: #ff9900;
|
|
}
|
|
|
|
.text-error {
|
|
color: #fa3534;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|