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.

225 lines
4.9 KiB

1 month ago
page {
padding-bottom: calc(140rpx + env(safe-area-inset-bottom));
}
.page {
width: 100vw;
overflow-x: hidden;
4 weeks ago
padding-bottom: 200rpx;
1 month ago
.banner {
4 weeks ago
margin: 40rpx 40rpx 0;
padding: 48rpx 32rpx;
display: flex;
1 month ago
background: #ffffff;
4 weeks ago
border-radius: 12rpx 12rpx 12rpx 12rpx;
border: 1px solid #f4f3f3;
.avatar {
flex-shrink: 0;
.avatar-img {
width: 112rpx;
height: 112rpx;
border-radius: 50%;
1 month ago
}
}
4 weeks ago
.wrap {
margin-left: 24rpx;
.name {
font-size: 44rpx;
color: rgba(33, 33, 32, 1);
.tel-icon {
margin-left: 10rpx;
width: 32rpx;
height: 32rpx;
1 month ago
}
}
4 weeks ago
.content {
1 month ago
margin-top: 16rpx;
4 weeks ago
font-size: 32rpx;
color: rgba(33, 33, 32, 1);
line-height: 52rpx;
1 month ago
}
}
}
4 weeks ago
.container {
margin: 32rpx 40rpx;
padding: 0 32rpx;
background: #ffffff;
box-shadow: 0rpx 4rpx 32rpx 0rpx rgba(0, 0, 0, 0.08);
border-radius: 12rpx 12rpx 12rpx 12rpx;
border: 2rpx solid #f4f3f3;
.row {
display: flex;
justify-content: space-between;
padding: 30rpx 0;
border-bottom: 1px solid rgba(244, 243, 243, 1);
&.row-vetical {
display: block;
.content {
margin-top: 24rpx;
text-align: left;
1 month ago
}
}
4 weeks ago
.label {
font-size: 36rpx;
color: rgba(33, 33, 32, 1);
font-weight: bold;
1 month ago
}
4 weeks ago
.content {
text-align: right;
max-width: 6em;
font-size: 36rpx;
color: rgba(33, 33, 32, 1);
1 month ago
}
}
}
4 weeks ago
.footer {
padding: 0 40rpx;
position: fixed;
bottom: calc(env(safe-area-inset-bottom) + 32rpx);
left: 0;
width: 100%;
box-sizing: border-box;
display: flex;
align-items: center;
gap: 30rpx;
.remark {
flex: 1;
height: 96rpx;
display: flex;
align-items: center;
justify-content: center;
border-radius: 12rpx;
font-size: 36rpx;
color: rgba(22, 121, 203, 1);
border: 1px solid rgba(22, 121, 203, 1);
}
.send {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
font-size: 36rpx;
color: rgba(255, 255, 255, 1);
height: 96rpx;
background: linear-gradient(90deg, #293b9f 0%, #1679cb 100%);
border-radius: 12rpx 12rpx 12rpx 12rpx;
}
}
1 month ago
}
.popup-remark {
padding: 32rpx 30rpx 84rpx;
.title {
display: flex;
justify-content: center;
font-size: 36rpx;
color: rgba(40, 48, 49, 1);
font-weight: bold;
}
.textarea {
padding: 30rpx;
margin-top: 32rpx;
width: 100%;
height: 216rpx;
box-sizing: border-box;
background: #f7f8f9;
border-radius: 24rpx 24rpx 24rpx 24rpx;
border: 2rpx solid #f8f9f9;
font-size: 32rx;
}
.submit {
margin-top: 32rpx;
4 weeks ago
height: 96rpx;
1 month ago
display: flex;
justify-content: center;
align-items: center;
4 weeks ago
background: linear-gradient( 90deg, #293B9F 0%, #1679CB 100%);
1 month ago
font-size: 36rpx;
color: #fff;
4 weeks ago
border-radius: 12rpx;
1 month ago
}
}
.popup-edit {
width: 650rpx;
background-color: #fff;
.title {
padding-top: 46rpx;
font-size: 40rpx;
color: #283031;
font-weight: bold;
text-align: center;
}
.popup-container {
padding: 0 32rpx 32rpx;
min-height: 20vh;
max-height: 50vh;
overflow-y: auto;
.row {
margin-top: 48rpx;
.row-header {
display: flex;
align-items: center;
justify-content: space-between;
.label {
font-size: 32rpx;
color: #283031;
font-weight: bold;
}
.change-phone {
font-size: 32rpx;
color: #cf5375;
}
}
.row-content {
padding-top: 24rpx;
.radio-btns {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 22rpx;
.btn {
padding: 18rpx 24rpx;
font-size: 32rpx;
color: #677172;
text-align: center;
line-height: 40rpx;
background: #f7f8f9;
border-radius: 12rpx 12rpx 12rpx 12rpx;
&.active {
color: #fff;
background-color: #67baca;
}
}
}
}
}
}
.popup-footer {
box-shadow: 0rpx 4rpx 32rpx 0rpx rgba(0, 0, 0, 0.15);
padding: 32rpx;
display: flex;
align-items: center;
justify-content: space-between;
gap: 18rpx;
.cancel {
flex: 1;
height: 74rpx;
border-radius: 98rpx 98rpx 98rpx 98rpx;
border: 1px solid #67baca;
font-size: 36rpx;
line-height: 74rpx;
color: #67baca;
text-align: center;
}
.conform {
flex: 1;
height: 74rpx;
border-radius: 98rpx 98rpx 98rpx 98rpx;
border: 1px solid #67baca;
background-color: #67baca;
font-size: 36rpx;
line-height: 74rpx;
color: #fff;
text-align: center;
}
}
}