| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- .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 {
- padding: 6rpx 16rpx calc(-60rpx + env(safe-area-inset-bottom));
- background: #fff;
- }
- .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;
- }
|