| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- /* 页面容器 */
- .pay-success-container {
- padding: 40rpx 30rpx;
- min-height: 100vh;
- background-color: #f8f8f8;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
-
- /* 成功状态区 */
- .success-top {
- text-align: center;
- margin-bottom: 60rpx;
- margin-top: 80rpx;
- }
-
- .success-icon {
- width: 120rpx;
- height: 120rpx;
- line-height: 120rpx;
- background-color: #07c160;
- border-radius: 50%;
- margin: 0 auto 30rpx;
- }
-
- .success-icon text {
- font-size: 60rpx;
- color: #ffffff;
- }
-
- .success-title {
- font-size: 36rpx;
- color: #333;
- font-weight: 600;
- margin-bottom: 16rpx;
- }
-
- .success-desc {
- font-size: 28rpx;
- color: #666;
- }
-
- /* 工单信息区 */
- .order-info {
- width: 100%;
- background-color: #ffffff;
- border-radius: 16rpx;
- padding: 30rpx;
- box-sizing: border-box;
- margin-bottom: 80rpx;
- box-shadow: 0 2rpx 10rpx rgba(0,0,0,0.05);
- }
-
- .info-title {
- font-size: 32rpx;
- color: #333;
- font-weight: 600;
- margin-bottom: 24rpx;
- padding-bottom: 16rpx;
- border-bottom: 1rpx solid #f0f0f0;
- }
-
- .info-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 28rpx;
- margin-bottom: 20rpx;
- }
-
- .info-item:last-child {
- margin-bottom: 0;
- }
-
- .label {
- color: #666;
- }
-
- .value {
- color: #333;
- text-align: right;
- flex: 1;
- margin-left: 20rpx;
- }
-
- .amount {
- color: #ff4757;
- font-weight: 600;
- font-size: 30rpx;
- }
-
- /* 按钮区 */
- .btn-group {
- width: 100%;
- display: flex;
- flex-direction: column;
- gap: 20rpx;
- }
-
- .btn {
- height: 88rpx;
- line-height: 88rpx;
- border-radius: 16rpx;
- font-size: 32rpx;
- border: none;
- }
-
- .btn-primary {
- width: 400rpx;
- background-color: #07c160;
- color: #ffffff;
- }
-
- .btn-default {
- width: 400rpx;
- margin-top: 10rpx;
- background-color: #ffffff;
- color: #333;
- border: 1rpx solid #e0e0e0;
- }
-
- /* 去除小程序默认按钮样式 */
- button::after {
- border: none;
- }
|