电速宝
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.wxss 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /* 页面容器 */
  2. .pay-success-container {
  3. padding: 40rpx 30rpx;
  4. min-height: 100vh;
  5. background-color: #f8f8f8;
  6. box-sizing: border-box;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. }
  11. /* 成功状态区 */
  12. .success-top {
  13. text-align: center;
  14. margin-bottom: 60rpx;
  15. margin-top: 80rpx;
  16. }
  17. .success-icon {
  18. width: 120rpx;
  19. height: 120rpx;
  20. line-height: 120rpx;
  21. background-color: #07c160;
  22. border-radius: 50%;
  23. margin: 0 auto 30rpx;
  24. }
  25. .success-icon text {
  26. font-size: 60rpx;
  27. color: #ffffff;
  28. }
  29. .success-title {
  30. font-size: 36rpx;
  31. color: #333;
  32. font-weight: 600;
  33. margin-bottom: 16rpx;
  34. }
  35. .success-desc {
  36. font-size: 28rpx;
  37. color: #666;
  38. }
  39. /* 工单信息区 */
  40. .order-info {
  41. width: 100%;
  42. background-color: #ffffff;
  43. border-radius: 16rpx;
  44. padding: 30rpx;
  45. box-sizing: border-box;
  46. margin-bottom: 80rpx;
  47. box-shadow: 0 2rpx 10rpx rgba(0,0,0,0.05);
  48. }
  49. .info-title {
  50. font-size: 32rpx;
  51. color: #333;
  52. font-weight: 600;
  53. margin-bottom: 24rpx;
  54. padding-bottom: 16rpx;
  55. border-bottom: 1rpx solid #f0f0f0;
  56. }
  57. .info-item {
  58. display: flex;
  59. justify-content: space-between;
  60. align-items: center;
  61. font-size: 28rpx;
  62. margin-bottom: 20rpx;
  63. }
  64. .info-item:last-child {
  65. margin-bottom: 0;
  66. }
  67. .label {
  68. color: #666;
  69. }
  70. .value {
  71. color: #333;
  72. text-align: right;
  73. flex: 1;
  74. margin-left: 20rpx;
  75. }
  76. .amount {
  77. color: #ff4757;
  78. font-weight: 600;
  79. font-size: 30rpx;
  80. }
  81. /* 按钮区 */
  82. .btn-group {
  83. width: 100%;
  84. display: flex;
  85. flex-direction: column;
  86. gap: 20rpx;
  87. }
  88. .btn {
  89. height: 88rpx;
  90. line-height: 88rpx;
  91. border-radius: 16rpx;
  92. font-size: 32rpx;
  93. border: none;
  94. }
  95. .btn-primary {
  96. width: 400rpx;
  97. background-color: #07c160;
  98. color: #ffffff;
  99. }
  100. .btn-default {
  101. width: 400rpx;
  102. margin-top: 10rpx;
  103. background-color: #ffffff;
  104. color: #333;
  105. border: 1rpx solid #e0e0e0;
  106. }
  107. /* 去除小程序默认按钮样式 */
  108. button::after {
  109. border: none;
  110. }