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

134 lines
2.4 KiB
SCSS

.container {
padding: 0 24px 24px 16px;
.title {
margin: 14px 0 16px;
}
.infoCard {
display: flex;
flex-direction: column;
padding: 0px 24px 19px;
box-sizing: border-box;
box-shadow: -1px 0px 5px 1px rgba(0, 0, 0, 0.15);
.title {
margin: 13px 0 18px;
color: #333333;
font-size: 18px;
font-weight: 700;
}
.infoCardContent {
display: flex;
column-gap: 20px;
.labelColumn,
.valueColumn,
.copyIconColumn {
display: flex;
flex-direction: column;
row-gap: 24px;
}
.labelColumn {
color: #333333;
// white-space: nowrap;
}
.valueColumn {
flex: 1;
color: #666666;
// white-space: nowrap;
.value {
word-break: break-all;
}
}
.copyIconColumn {
justify-self: flex-end;
}
}
.walletAddress {
display: flex;
justify-content: space-between;
margin: 4px 0 20px;
.value {
max-width: 90%;
word-break: break-all;
}
}
.scanCode {
display: flex;
flex-direction: column;
row-gap: 20px;
.codeWrapper {
display: flex;
justify-content: center;
align-items: center;
width: 90px;
height: 90px;
background: linear-gradient(90deg, #103776 0%, #92dbed 100%);
.code {
display: flex;
justify-content: center;
align-items: center;
width: 84px;
height: 84px;
background: #fff;
}
}
}
}
.infoContent {
display: flex;
flex-direction: column;
padding: 24px 0;
.remittanceAmount {
display: flex;
flex-direction: column;
row-gap: 8px;
font-size: 18px;
font-weight: 700;
.value {
font-size: 28px;
color: #29bbe4;
}
}
.imgUploadWrapper {
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;
}
}
.currencyType {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 12px;
height: 45px;
box-sizing: border-box;
border-top: 1px solid #d9d7d7;
border-bottom: 1px solid #d9d7d7;
color: #333333;
.value {
color: #777777;
}
}
.countdown {
display: flex;
align-items: center;
margin-bottom: 20px;
font-size: 12px;
color: #aaaaaa;
}
}
}