69 lines
1.1 KiB
Plaintext
69 lines
1.1 KiB
Plaintext
.modal-mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
z-index: 1000;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.modal-content {
|
|
width: 100%;
|
|
background: #ffffff;
|
|
border-radius: 48rpx 48rpx 0 0;
|
|
padding: 40rpx 40rpx 60rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.modal-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 32rpx;
|
|
}
|
|
|
|
.modal-title {
|
|
font-size: var(--font-lg, 36rpx);
|
|
font-weight: 600;
|
|
color: var(--color-gray-13, #242424);
|
|
}
|
|
|
|
.modal-close {
|
|
width: 64rpx;
|
|
height: 64rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
background: var(--color-gray-1, #f3f3f3);
|
|
}
|
|
|
|
.rating-section {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 24rpx;
|
|
margin-bottom: 32rpx;
|
|
}
|
|
|
|
.rating-label {
|
|
font-size: var(--font-sm, 28rpx);
|
|
color: var(--color-gray-9, #5e5e5e);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.textarea-section {
|
|
margin-bottom: 40rpx;
|
|
}
|
|
|
|
.modal-footer {
|
|
display: flex;
|
|
gap: 24rpx;
|
|
}
|
|
|
|
.modal-footer t-button {
|
|
flex: 1;
|
|
}
|