| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- .refund-reason-popup {
- height: 70vh;
- min-height: 560rpx;
- background: #fff;
- border-top-left-radius: 32rpx;
- border-top-right-radius: 32rpx;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- }
- .refund-reason-popup__header {
- height: 100rpx;
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- font-weight: 600;
- font-size: 34rpx;
- color: #1f1f1f;
- background: #f2f2f2;
- }
- .refund-reason-popup__close {
- position: absolute;
- right: 24rpx;
- width: 72rpx;
- height: 116rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 48rpx;
- color: #444;
- }
- .refund-reason-popup__header-spacer {
- width: 72rpx;
- height: 1px;
- }
- .refund-reason-popup__content {
- flex: 1;
- overflow: auto;
- background: #fff;
- padding: 10rpx 0;
- box-sizing: border-box;
- }
- .custom-radio {
- --td-radio-icon-checked-color: #2f6df6;
- font-size: 32rpx !important;
- padding: 24rpx 32rpx;
- }
- .refund-reason-popup__footer {
- flex-shrink: 0;
- padding: 20rpx 32rpx 32rpx;
- background: #fff;
- box-shadow: 0 -2rpx 12rpx rgba(0, 0, 0, 0.06);
- }
- .refund-reason-popup__next-btn {
- width: 100%;
- height: 88rpx;
- line-height: 88rpx;
- border-radius: 44rpx;
- background: linear-gradient(135deg, #2f6df6 0%, #1f5de8 100%);
- color: #fff;
- text-align: center;
- font-size: 30rpx;
- font-weight: 500;
- }
|