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

157 lines
2.3 KiB
SCSS
Raw Permalink Normal View History

2024-08-08 11:08:55 +08:00
.ml-10 {
margin-left: 20upx !important;
2023-11-07 10:24:08 +08:00
}
2024-08-08 11:08:55 +08:00
.mt-10 {
margin-top: 20upx !important;
2023-11-07 10:24:08 +08:00
}
2024-08-08 11:08:55 +08:00
.mb-10 {
margin-bottom: 20upx !important;
2023-11-07 10:24:08 +08:00
}
2024-08-08 11:08:55 +08:00
.mr-10 {
margin-right: 20upx !important;
2023-11-07 10:24:08 +08:00
}
2024-08-08 11:08:55 +08:00
.m-10 {
margin: 20upx !important;
2023-11-07 10:24:08 +08:00
}
2024-08-08 11:08:55 +08:00
.p-10 {
padding: 20upx !important;
2023-11-07 10:24:08 +08:00
}
2024-08-08 11:08:55 +08:00
.pl-10 {
padding-left: 20upx !important;
2023-11-07 10:24:08 +08:00
}
2024-08-08 11:08:55 +08:00
.pr-10 {
padding-right: 20upx !important;
2023-11-07 10:24:08 +08:00
}
2024-08-08 11:08:55 +08:00
.pt-10 {
padding-top: 20upx !important;
2023-11-07 10:24:08 +08:00
}
2024-08-08 11:08:55 +08:00
.pb-10 {
padding-bottom: 20upx !important;
2023-11-07 10:24:08 +08:00
}
2024-08-08 11:08:55 +08:00
.w100 {
width: 100%;
2023-11-07 10:24:08 +08:00
}
2024-08-08 11:08:55 +08:00
.flex1 {
flex: 1;
2023-11-07 10:24:08 +08:00
}
2024-08-08 11:08:55 +08:00
.pr {
position: relative;
2023-11-07 10:24:08 +08:00
}
2024-08-08 11:08:55 +08:00
.border {
border: 1px solid #e5e5e5;
2023-11-07 10:24:08 +08:00
}
.content {
2024-08-08 11:08:55 +08:00
position: relative;
min-height: 100vh;
background-color: $uni-bg-color-grey;
}
.card {
padding: 20upx;
background-color: #ffffff;
}
.search {
border-bottom: 1px solid #ccc;
display: flex;
flex-direction: row;
.u-text {
width: 100upx !important;
flex: none !important;
}
.u-button {
height: 68upx !important;
}
.u-input__content__field-wrapper__field {
height: 42upx !important;
}
}
.bth-mini {
width: auto !important;
2024-09-03 16:47:06 +08:00
border-radius: 38upx !important;
2024-08-08 11:08:55 +08:00
margin-left: unset;
margin-right: unset;
}
.bth {
flex: 1;
2024-09-03 16:47:06 +08:00
border-radius: 40upx !important;
2024-08-08 11:08:55 +08:00
margin-left: unset;
margin-right: unset;
}
.flex-between {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.flex-end {
display: flex;
flex-direction: row;
justify-content: flex-end;
}
.flex-warp {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.main-title {
color: #333333;
font-size: 30upx;
}
.subtitle {
color: #888888;
font-size: 26upx;
}
.view-title {
border-left: 8upx solid #1d82fe;
.u-text {
padding-left: 10upx;
color: #353535 !important;
}
}
.title {
font-weight: bold;
color: #000000;
font-size: 28upx;
}
.title-none {
.u-cell__body__content,
.u-cell__title {
display: none !important;
}
}
.title-show {
.u-cell__body__content,
.u-cell__title {
display: flex !important;
}
}
.flex-none {
display: block;
.u-cell__body {
display: block !important;
}
}
.required {
&:before {
content: "*";
position: absolute;
left: 0;
color: #f56c6c;
font-size: 40upx;
font-weight: normal;
}
}
.form-item-block {
.u-form-item__body {
display: block !important;
.u-form-item__body__left {
width: 100% !important;
}
.u-form-item__body__right {
.u-form-item__body__right__content__slot {
justify-content: flex-start;
position: relative;
margin-left: 20upx;
}
}
}
2023-11-07 10:24:08 +08:00
}