127 lines
2.2 KiB
SCSS
127 lines
2.2 KiB
SCSS
.container {
|
|
padding: 0 24px 24px 16px;
|
|
.title {
|
|
margin: 14px 0 15px;
|
|
}
|
|
.minAmount {
|
|
margin-top: 4px;
|
|
color: #14cc9e;
|
|
font-size: 10px;
|
|
line-height: 14px;
|
|
&.unavailable {
|
|
color: #ff5733;
|
|
}
|
|
}
|
|
.exchangeRate {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 12px;
|
|
font-size: 14px;
|
|
color: #777777;
|
|
.value {
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
.currency_amount {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 12px;
|
|
.label {
|
|
font-size: 14px;
|
|
color: #777777;
|
|
}
|
|
.value {
|
|
font-size: 14px;
|
|
color: #29bbe4;
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
// 二维码信息
|
|
.qrCodeInfoWrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding-top: 29px;
|
|
padding-bottom: 22px;
|
|
box-shadow: -1px 0px 5px 1px rgba(0, 0, 0, 0.15);
|
|
.currencyAmountLabel {
|
|
color: #333333;
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
line-height: 17px;
|
|
}
|
|
.currencyAmount {
|
|
color: #29bbe4;
|
|
font-size: 36px;
|
|
font-weight: 700;
|
|
line-height: 53px;
|
|
}
|
|
.qrCodeImgWrapper {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-top: 33px;
|
|
margin-bottom: 19px;
|
|
width: 101px;
|
|
height: 101px;
|
|
background-image: linear-gradient(to right, #103776 0%, #92dbed 100%);
|
|
.qrCodeImg {
|
|
position: relative;
|
|
width: 94px;
|
|
height: 94px;
|
|
}
|
|
.qrCodeImgBg {
|
|
position: absolute;
|
|
left: 4px;
|
|
top: 4px;
|
|
width: 93px;
|
|
height: 93px;
|
|
background-color: #fff;
|
|
}
|
|
}
|
|
.paymentIcons {
|
|
display: flex;
|
|
column-gap: 24px;
|
|
.paymentIcon {
|
|
width: 23px;
|
|
height: 23px;
|
|
}
|
|
}
|
|
}
|
|
.saveImageBtn {
|
|
margin-top: 54px;
|
|
}
|
|
.countdown {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-bottom: 20px;
|
|
margin-top: 28px;
|
|
margin-bottom: 28px;
|
|
font-size: 12px;
|
|
color: #aaaaaa;
|
|
}
|
|
.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;
|
|
}
|
|
}
|
|
}
|