/*postcss-pxtransform disable*/
|
@use './common.scss' as *;
|
|
.recharge-tips-view {
|
padding: 16px;
|
border-radius: 12px;
|
background: linear-gradient(0deg, rgba(10, 90, 255, 0.04), rgba(10, 90, 255, 0.04)), #fff;
|
|
.recharge-tips-title {
|
color: #1f2229;
|
font-size: 14px;
|
font-weight: 700;
|
line-height: 18px;
|
padding: 4px 0 12px 0;
|
border-bottom: 1px solid boleGetCssVar('color', 'primary');
|
}
|
|
.recharge-tips-content {
|
color: boleGetCssVar('text-color', 'regular');
|
font-size: 13px;
|
font-weight: 400;
|
line-height: 21px;
|
padding-top: 16px;
|
|
.recharge-tips-top {
|
color: #e03e2d;
|
font-size: 18px;
|
}
|
}
|
}
|
|
.confirm-dialog-content {
|
.confirm-dialog-content-tips {
|
margin-bottom: 16px;
|
}
|
|
.confirm-dialog-content-info {
|
padding: 12px;
|
border-radius: 8px;
|
background: #f0f3fa;
|
|
.confirm-dialog-content-info-item {
|
display: flex;
|
margin-bottom: 10px;
|
|
&:last-child {
|
margin-bottom: 0;
|
}
|
|
.confirm-dialog-content-info-item-label {
|
color: boleGetCssVar('text-color', 'regular');
|
margin-right: 6px;
|
}
|
|
.confirm-dialog-content-info-item-content {
|
flex: 1;
|
min-width: 0;
|
@include ellipsis;
|
color: boleGetCssVar('text-color', 'primary');
|
text-align: left;
|
}
|
|
&.danger {
|
.confirm-dialog-content-info-item-content {
|
color: boleGetCssVar('color', 'danger');
|
}
|
}
|
}
|
}
|
}
|