page { background-color: #f7f8fa; height: 100vh; display: flex; flex-direction: column; } .page-container { flex: 1; padding-bottom: 120rpx; /* footer padding */ } /* Header Section */ .header-section { background-color: #fff; display: flex; flex-direction: column; &.header-processing, &.header-revoked, &.header-completed { padding: 80rpx 40rpx 60rpx; align-items: center; } &.header-approved, &.header-rejected { padding: 40rpx 40rpx 60rpx; align-items: flex-start; } } .status-title { font-size: 52rpx; font-weight: 600; color: #333; margin-bottom: 20rpx; &.completed-title { font-size: 64rpx; margin-bottom: 60rpx; } } /* Refund Success Card */ .refund-card { width: 100%; padding: 30rpx 0; border-top: 1rpx solid #eee; display: flex; justify-content: space-between; align-items: flex-start; margin-top: 20rpx; } .refund-dest-name { font-size: 32rpx; color: #333; font-weight: 500; margin-bottom: 8rpx; text-align: left; } .refund-dest-account { font-size: 26rpx; color: #999; text-align: left; } .refund-amount-text { font-size: 36rpx; color: #333; font-weight: 600; } .status-sub { font-size: 28rpx; color: #666; margin-bottom: 40rpx; } .countdown-container { display: flex; align-items: center; justify-content: center; } .time-block { width: 90rpx; height: 90rpx; background-color: #1d6ff6; color: #fff; font-size: 40rpx; font-weight: 600; border-radius: 8rpx; display: flex; align-items: center; justify-content: center; } .time-colon { font-size: 40rpx; color: #666; margin: 0 16rpx; font-weight: 600; } /* Approved/Rejected Common Styles */ .approved-title { font-size: 40rpx; font-weight: 600; color: #333; line-height: 1.4; margin-bottom: 16rpx; text-align: left; } .approved-time { font-size: 28rpx; color: #999; margin-bottom: 40rpx; } .approved-content { width: 100%; } .content-row { font-size: 28rpx; color: #333; line-height: 1.6; margin-bottom: 16rpx; } /* Detail Section */ .detail-section { background-color: #fff; margin-top: 20rpx; padding: 32rpx; border-radius: 16rpx 16rpx 0 0; } .goods-info { display: flex; // align-items: center; margin-bottom: 32rpx; } .goods-img { width: 120rpx; height: 120rpx; border-radius: 8rpx; background-color: #f5f5f5; } .service-package-placeholder { width: 120rpx; height: 120rpx; border-radius: 8rpx; background-color: #e8e8e8; display: flex; align-items: center; justify-content: center; } .goods-desc { margin-left: 20rpx; flex: 1; } .goods-title { font-size: 30rpx; color: #333; margin-bottom: 12rpx; } .goods-meta { font-size: 24rpx; color: #999; } .divider { width: 100%; height: 1rpx; background-color: #eee; margin-bottom: 32rpx; } /* List Items */ .info-list { display: flex; flex-direction: column; gap: 24rpx; } .info-item { display: flex; justify-content: space-between; align-items: center; font-size: 28rpx; } .info-label { color: #666; } .info-value { color: #333; } .info-value-group { display: flex; align-items: center; } .clickable-text { color: #333; font-weight: 600; } .copy-btn { color: #333; font-weight: 600; margin-left: 16rpx; } /* Service Action */ .service-action { display: inline-flex; flex-direction: column; align-items: center; margin-top: 40rpx; } .service-text { font-size: 24rpx; color: #333; margin-top: 8rpx; } /* Bottom Bar */ .bottom-bar { position: fixed; bottom: 0; left: 0; right: 0; background-color: #fff; padding: 20rpx 32rpx 32rpx; box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05); &.bottom-bar-rejected { padding: 20rpx 32rpx 32rpx; background-color: transparent; box-shadow: none; } } .revoke-btn { background-color: #1d6ff6; color: #fff; font-size: 32rpx; font-weight: 500; border-radius: 44rpx; display: flex; align-items: center; justify-content: center; height: 88rpx; width: 100%; } .revoke-btn::after { border: none; } /* Dual Button Group - Pill Shaped */ .dual-btn-group { display: flex; align-items: center; width: 100%; height: 100rpx; background-color: #1d6ff6; border-radius: 50rpx; /* Makes it pill shaped */ overflow: hidden; box-shadow: 0 4rpx 20rpx rgba(29, 111, 246, 0.2); } .dual-btn { flex: 1; height: 100%; background-color: transparent; color: #fff; font-size: 32rpx; font-weight: 600; display: flex; align-items: center; justify-content: center; border-radius: 0; padding: 0; margin: 0; line-height: normal; &::after { border: none; } } .btn-divider { width: 1rpx; height: 40rpx; background-color: rgba(255, 255, 255, 0.5); }