45 lines
651 B
CSS
45 lines
651 B
CSS
|
|
|
|
.H10{height: 10px;}
|
|
|
|
/* 背景色 */
|
|
.qy-bg-red{background-color: #FB303C;}
|
|
.qy-bg-grey{background-color: #EDECF2;}
|
|
.qy-bg-white{background-color: #fff;}
|
|
.qy-bg-yellow{background-color: #FBBD08;}
|
|
|
|
/* 文本 */
|
|
.text-center{text-align: center;}
|
|
.text-cut {
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
|
|
|
|
/* 文本颜色 */
|
|
.qy-text-white{color: #fff;}
|
|
.qy-text-red{color: #FB303C;}
|
|
.qy-text-grey{color: #B3ADA9;}
|
|
.qy-text-yellow{color: #FBBD08;}
|
|
|
|
|
|
.text-sm {
|
|
font-size: 24rpx;
|
|
}
|
|
.text-bold {
|
|
font-weight: bold;
|
|
}
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.text-left {
|
|
text-align: left;
|
|
}
|
|
|
|
.text-right {
|
|
text-align: right;
|
|
}
|