qa-prevention-xgf-app/styles/common.scss

139 lines
1.8 KiB
SCSS

.text-blue {
color: #3676f2;
}
.text-red {
color: #cb4238;
}
.text-white {
color: #fff;
}
.text-grey {
color: #979799;
}
.text-green {
color: #23b576;
}
.text-yellow {
color: #ffae00;
}
.yellow-bg {
color: #fbbd08;
background-color: #fef2ce;
padding: 10rpx 20rpx;
font-size: 24rpx;
border-radius: 10rpx;
}
.red-bg {
color: #e54d42;
background-color: #fadbd9;
padding: 10rpx 20rpx;
font-size: 24rpx;
border-radius: 10rpx;
}
.mt-10 {
margin-top: 20rpx;
}
.mt-5 {
margin-top: 10rpx;
}
.ml-10 {
margin-left: 20rpx;
}
.ml-5 {
margin-left: 10rpx;
}
.flex-end {
display: flex;
align-items: center;
justify-content: flex-end;
}
.flex-between {
display: flex;
align-items: center;
justify-content: space-between;
}
.flex-start {
display: flex;
align-items: center;
justify-content: flex-start;
}
.main-title {
color: #333333;
font-size: 30rpx;
// font-weight: bold;
margin-bottom: 20rpx;
}
.subtitle {
color: #888888;
font-size: 26rpx;
}
.card {
padding: 20rpx;
background-color: #fff;
}
.container {
background-color: #fafafa;
min-height: 100vh;
}
.list {
.item {
background-color: #fff;
padding: 20rpx;
border-bottom: 1px solid #eee;
position: relative;
}
.u-button {
width: max-content !important;
margin: 0;
}
}
.u-form-item__body__right__content__slot {
position: relative;
.u-radio-group--row {
justify-content: flex-end;
gap: 20rpx;
}
.flex-start {
.u-radio-group--row {
justify-content: flex-start;
}
}
.select_content {
flex: 1;
display: flex;
align-items: center;
}
}
.u-form-item__body__right .u-form-item__body__right__content__slot {
justify-content: flex-start;
}
.u-form-item__body__right__message {
margin-bottom: 10rpx;
}