| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314 |
- 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);
- }
|