2025-09-09 16:23:08 +08:00

254 lines
4.2 KiB
CSS

page {
background-color: #f0f2f5;
}
.apply-container {
/* padding: 10rpx; */
}
/* 弹窗样式 */
.refund-info-container {
background-color: #ffffff;
border-radius: 10rpx;
padding: 30rpx;
}
.refund-title {
font-size: 32rpx;
font-weight: bold;
text-align: center;
margin-bottom: 30rpx;
}
.refund-item {
display: flex;
justify-content: space-between;
padding: 20rpx 0;
border-bottom: 1rpx solid #f0f0f0;
}
.refund-label {
font-size: 28rpx;
color: #333333;
}
.required {
color: #ff4500;
margin-left: 5rpx;
}
.refund-value {
font-size: 28rpx;
color: #666666;
text-align: right;
position: relative;
max-width: 60%;
}
.arrow-right {
display: inline-block;
width: 16rpx;
height: 16rpx;
border-top: 2rpx solid #999999;
border-right: 2rpx solid #999999;
transform: rotate(45deg);
margin-left: 10rpx;
vertical-align: middle;
}
.price {
color: #ff4500;
font-weight: bold;
}
.modify-btn {
color: #007aff;
margin-left: 10rpx;
font-size: 26rpx;
}
.refund-hint {
font-size: 24rpx;
color: #999999;
margin-top: 10rpx;
text-align: right;
}
.hr {
height: 20rpx;
background-color: #f5f5f5;
margin: 20rpx -30rpx;
}
.refund-item2 {
padding: 20rpx 0;
}
.refund-description {
width: 100%;
height: 160rpx;
border: 1rpx solid #e0e0e0;
border-radius: 8rpx;
padding: 15rpx;
font-size: 26rpx;
color: #333333;
box-sizing: border-box;
margin-top: 10rpx;
}
.imgCon {
font-size: 18rpx;
color: #222222;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 120rpx;
height: 120rpx;
background: #F6F7FB;
border: 1rpx solid #D1D1D1;
border-radius: 10rpx 10rpx 10rpx 10rpx;
margin: 20rpx 0;
}
.imgCon image {
width: 34rpx;
height: 34rpx;
margin-bottom: 8rpx;
}
.u-upload__wrap__preview {
width: 120rpx;
height: 120rpx;
border-radius: 10rpx 0rpx 10rpx 10rpx !important;
margin-top: 20rpx !important;
}
.u-upload__wrap__preview__image {
width: 100% !important;
height: 100% !important;
object-fit: cover;
}
.contact-info {
font-size: 24rpx;
color: #666666;
text-align: right;
margin-top: 10rpx;
margin-bottom: 10rpx;
}
.submit-btn {
width: 60%;
height: 88rpx;
background-color: #ff451b;
color: #fff;
font-size: 32rpx;
border-radius: 44rpx;
line-height: 88rpx;
text-align: center;
margin-top: 50rpx;
border: none;
}
/* 选择退款原因弹窗样式 */
.cancel-reason-container {
background-color: #ffffff;
border-radius: 10rpx;
padding: 30rpx;
}
.title {
font-size: 32rpx;
font-weight: bold;
text-align: center;
margin-bottom: 30rpx;
}
.asTabs2 {
display: flex;
border-bottom: 1rpx solid #f0f0f0;
margin-bottom: 20rpx;
}
.asTab2 {
flex: 1;
text-align: center;
padding: 15rpx 0;
font-size: 28rpx;
color: #666666;
position: relative;
}
.asTab2.active {
color: #ff451b;
}
.asTab2.active::after {
content: '';
position: absolute;
bottom: -1rpx;
left: 10%;
width: 80%;
height: 4rpx;
background-color: #ff451b;
}
.reason-list {
max-height: 500rpx;
overflow-y: auto;
}
.reason-item {
display: flex;
align-items: center;
padding: 20rpx 0;
border-bottom: 1rpx solid #f0f0f0;
}
.radio {
width: 28rpx;
height: 28rpx;
border: 2rpx solid #999999;
border-radius: 50%;
margin-right: 20rpx;
}
.radio.active {
border-color: #ff451b;
background-color: #ff451b;
position: relative;
}
.radio.active::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 12rpx;
height: 12rpx;
background-color: #ffffff;
border-radius: 50%;
}
.confirm-btn {
width: 100%;
height: 88rpx;
background-color: #ff451b;
color: #ffffff;
border-radius: 44rpx;
font-size: 32rpx;
margin-top: 30rpx;
}
/* 打开弹窗按钮样式 */
.open-popup-btn {
height: 88rpx;
background-color: #ff451b;
color: #ffffff;
border-radius: 44rpx;
font-size: 32rpx;
margin: 40rpx auto;
display: block;
}