126 lines
2.5 KiB
Plaintext
126 lines
2.5 KiB
Plaintext
@import '../../../config/styles/mp/mixins.less';
|
|
@import '../../../config/styles/mp/index.less';
|
|
|
|
|
|
.errorContainer {
|
|
padding: 48rpx;
|
|
background-color: #fff;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 40rpx;
|
|
}
|
|
|
|
.container {
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
background-color: @oak-bg-color-container;
|
|
.safe-area-inset-bottom();
|
|
|
|
|
|
.btns {
|
|
padding: 16rpx;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 32rpx;
|
|
|
|
.cancelBtn {
|
|
color: #333;
|
|
border: 2rpx solid #eee;
|
|
}
|
|
}
|
|
}
|
|
|
|
.main {
|
|
background-color: @oak-bg-color-container;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
border-radius: 8rpx;
|
|
padding: 44rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.label {
|
|
margin-top: 36rpx;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.input {
|
|
margin-top: 24rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: baseline;
|
|
font-size: 56rpx;
|
|
border-bottom: solid 0.2rpx silver;
|
|
|
|
.symbol {
|
|
margin-right: 12rpx;
|
|
}
|
|
|
|
.my-input-class {
|
|
font-size: 56rpx !important;
|
|
}
|
|
}
|
|
|
|
.tips {
|
|
margin-top: 24rpx;
|
|
|
|
.tipLine {
|
|
margin-top: 16rpx;
|
|
color: dimgrey;
|
|
font-size: 24rpx;
|
|
|
|
.value {
|
|
color: @oak-color-primary;
|
|
font-weight: bolder;
|
|
margin-left: 4rpx;
|
|
margin-right: 4rpx;
|
|
}
|
|
}
|
|
}
|
|
|
|
.helps {
|
|
margin-top: 44rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
|
|
|
|
.label2 {
|
|
color: @oak-color-primary;
|
|
padding: 6rpx;
|
|
}
|
|
|
|
.content2 {
|
|
margin-bottom: 16rpx;
|
|
margin-left: 44rpx;
|
|
color: slategrey;
|
|
border-radius: 8rpx;
|
|
padding: 16rpx;
|
|
}
|
|
}
|
|
|
|
.gotoHistory {
|
|
font-size: 32rpx;
|
|
color: @oak-color-primary;
|
|
margin-top: 56rpx;
|
|
text-decoration: underline;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
}
|
|
|
|
.footer {
|
|
position: fixed;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 44rpx;
|
|
bottom: 0;
|
|
left: 0;
|
|
.safe-area-inset-bottom()
|
|
}
|
|
} |