64 lines
1018 B
CSS
64 lines
1018 B
CSS
.cancel-reason-container {
|
|
padding: 20rpx;
|
|
background-color: #fff;
|
|
border-radius: 10rpx;
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.title {
|
|
font-size: 32rpx;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
margin: 20rpx 0 40rpx;
|
|
}
|
|
|
|
.reason-list {
|
|
margin-bottom: 40rpx;
|
|
}
|
|
|
|
.reason-item {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 20rpx 0;
|
|
border-bottom: 1rpx solid #eee;
|
|
}
|
|
|
|
.radio {
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
border: 2rpx solid #999;
|
|
border-radius: 50%;
|
|
margin-right: 20rpx;
|
|
position: relative;
|
|
}
|
|
|
|
.radio.active {
|
|
border-color: #ff4400;
|
|
}
|
|
|
|
.radio.active::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 16rpx;
|
|
height: 16rpx;
|
|
background-color: #ff4400;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.confirm-btn {
|
|
background-color: #ff4400;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 40rpx;
|
|
padding: 15rpx 0;
|
|
width: 80%;
|
|
font-size: 32rpx;
|
|
margin-top: 20rpx;
|
|
align-items: center;
|
|
justify-content: center;
|
|
display: flex;
|
|
} |