You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
1.9 KiB
107 lines
1.9 KiB
2 years ago
|
.wux-popup__content {
|
||
|
background: none!important;
|
||
|
}
|
||
|
.wux-popup__content .wux-popup__hd {
|
||
|
padding: 0!important;
|
||
|
|
||
|
}
|
||
|
.wux-popup__bd {
|
||
|
padding: 0!important;
|
||
|
}
|
||
|
.popup-container {
|
||
|
padding: 32rpx 20rpx 50rpx;
|
||
|
background: linear-gradient(180deg, #DBEEFF 0%, #F4FAFF 100%);
|
||
|
border-radius: 30rpx 30rpx 0px 0px;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
font-size: 34rpx;
|
||
|
font-weight: bold;
|
||
|
color: #333333;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
margin-bottom: 39rpx;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.title:before {
|
||
|
content: '';
|
||
|
display: block;
|
||
|
width: 10rpx;
|
||
|
height: 28rpx;
|
||
|
background: #3A80E7;
|
||
|
border-radius: 4rpx;
|
||
|
margin-right: 20rpx;
|
||
|
}
|
||
|
|
||
|
.popup-content {
|
||
|
border-radius: 20px;
|
||
|
padding: 30rpx;
|
||
|
box-sizing: border-box;
|
||
|
background: #fff;
|
||
|
margin-bottom: 30rpx;
|
||
|
height: auto!important;
|
||
|
}
|
||
|
|
||
|
|
||
|
.items {
|
||
|
display: flex;
|
||
|
align-items: flex-start;
|
||
|
text-align: left;
|
||
|
font-size: 32rpx;
|
||
|
font-weight: 500;
|
||
|
color: #333333;
|
||
|
margin-bottom: 29rpx;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.items .label {
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
|
||
|
.textarea {
|
||
|
width: 100%;
|
||
|
height: 340rpx;
|
||
|
background: #F7F7F7;
|
||
|
border-radius: 20rpx;
|
||
|
padding: 27rpx 31rpx;
|
||
|
}
|
||
|
.textarea-placeholder {
|
||
|
font-size: 32rpx;
|
||
|
font-weight: 500;
|
||
|
color: #C1C1C1;
|
||
|
line-height: 42rpx;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
.bottom-btn {
|
||
|
background: none;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
padding: 20rpx 99rpx 20rpx;
|
||
|
/*padding-bottom: calc(env(safe-area-inset-bottom) + 10rpx);*/
|
||
|
width: 100%;
|
||
|
box-sizing: border-box;
|
||
|
z-index: 999;
|
||
|
position: static;
|
||
|
}
|
||
|
.btn {
|
||
|
width: 240rpx;
|
||
|
height: 76rpx;
|
||
|
border-radius: 38rpx;
|
||
|
color: #fff;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
text-align: center;
|
||
|
font-size: 32rpx;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
.btn-blue {
|
||
|
background: linear-gradient(87deg, #81B5FB 0%, #3E92FF 100%);
|
||
|
}
|
||
|
.btn-gray {
|
||
|
background: #D9D9D9;
|
||
|
}
|