Files
2025-07-07 15:55:44 +08:00

101 lines
1.8 KiB
SCSS

.container {
padding: 0 24px 24px 16px;
.title {
margin: 14px 0 15px;
}
.content {
.voucherTypeWrapper {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
column-gap: 12px;
row-gap: 15px;
.voucherType {
display: flex;
justify-content: center;
align-items: center;
column-gap: 4px;
flex: 1;
padding: 0 8px;
height: 81px;
border: 1px solid #e5e5e5;
cursor: pointer;
&.active {
border: none;
box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.15);
}
.voucherIcon {
width: 33px;
height: 27px;
flex-shrink: 0;
}
.label {
font-size: 20px;
font-weight: 700;
}
}
}
.voucherImgTitle {
margin-top: 28px;
font-size: 20px;
font-weight: 700;
line-height: 29px;
}
.voucherImgDesc {
margin-top: 10px;
color: #999999;
font-size: 14px;
}
.voucherImgWrapper {
display: flex;
align-items: center;
column-gap: 20px;
margin-top: 20px;
::v-deep .uni-file-picker {
height: 100px;
}
::v-deep .uni-file-picker__container {
height: 100px;
}
::v-deep .file-picker__box {
padding-top: 0px;
width: 100% !important;
max-width: 152px;
height: 100% !important;
}
::v-deep .uni-forms-item {
flex: 1;
}
}
.normWrapper {
margin-bottom: 34px;
.normTitle {
font-size: 14px;
font-weight: 700;
color: #999999;
}
.normContent {
display: flex;
column-gap: 20px;
margin-top: 8px;
font-size: 12px;
color: #999999;
.normColumn {
display: flex;
flex-direction: column;
.normItem {
display: flex;
column-gap: 4px;
align-items: center;
.point {
width: 2px;
height: 2px;
border-radius: 10px;
background-color: #999999;
}
}
}
}
}
}
}