payStatus.wxss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. .container {
  2. display: flex;
  3. flex-direction: column;
  4. justify-content: space-between;
  5. align-items: center;
  6. min-height: 100vh;
  7. color: #f2f2f2;
  8. padding: 20px;
  9. }
  10. .title {
  11. color: #373737;
  12. font-size: 20px;
  13. font-weight: bold;
  14. margin-bottom: 10px;
  15. }
  16. .sub-title {
  17. font-size: 14px;
  18. color: #7e7e7e;
  19. }
  20. .bottom-links {
  21. width: 100%;
  22. display: flex;
  23. align-items: center;
  24. font-size: 12px;
  25. color: #808080;
  26. }
  27. .page-container {
  28. display: flex;
  29. flex-direction: column;
  30. justify-content: space-between;
  31. align-items: center;
  32. min-height: 100vh;
  33. padding: 20px;
  34. background-color: #f2f2f2;
  35. }
  36. .fail-icon-box {
  37. width: 100%;
  38. display: flex;
  39. justify-content: center;
  40. margin-bottom: 40px;
  41. }
  42. .orange-circle {
  43. width: 80px;
  44. height: 80px;
  45. border-radius: 50%;
  46. background-color: #fe8d1b;
  47. display: flex;
  48. justify-content: center;
  49. align-items: center;
  50. }
  51. .close-icon {
  52. color: #eff3f2;
  53. font-size: 80px;
  54. }
  55. .prompt-text-area {
  56. text-align: center;
  57. margin-bottom: 50px;
  58. color: #353535;
  59. }
  60. .fail-title {
  61. font-size: 20px;
  62. font-weight: bold;
  63. color: #3a3a3a;
  64. }
  65. .action-button-section {
  66. width: 100%;
  67. margin-bottom: auto;
  68. }
  69. .retry-pay-btn {
  70. width: 100%;
  71. height: 45px;
  72. line-height: 30px;
  73. background-color: #d81e07;
  74. color: #fff3e9;
  75. border: none;
  76. border-radius: 12px;
  77. font-size: 16px;
  78. }
  79. .a {
  80. display: flex;
  81. flex-direction: column;
  82. justify-content: space-between;
  83. align-items: center;
  84. min-height: 100vh;
  85. padding: 20px;
  86. background-color: #f2f2f2;
  87. }
  88. .b {
  89. width: 100%;
  90. display: flex;
  91. justify-content: center;
  92. margin-bottom: 40px;
  93. }
  94. .c {
  95. width: 80px;
  96. height: 80px;
  97. border-radius: 50%;
  98. background-color: #1fb758;
  99. display: flex;
  100. justify-content: center;
  101. align-items: center;
  102. }
  103. .d {
  104. color: #fefaff;
  105. font-size: 40px;
  106. }
  107. .e {
  108. text-align: center;
  109. margin-bottom: 20px;
  110. }
  111. .f {
  112. font-size: 20px;
  113. font-weight: bold;
  114. color: #383838;
  115. }
  116. .g {
  117. text-align: center;
  118. margin-bottom: 50px;
  119. }
  120. .h {
  121. font-size: 17px;
  122. color: #818181;
  123. }
  124. .i {
  125. width: 120%;
  126. background-color: #f2f2f2;
  127. height: 45px;
  128. border: 5px solid #d81e07;
  129. border-radius: 20px;
  130. overflow: hidden;
  131. box-sizing: border-box;
  132. position: relative;
  133. }
  134. .k{
  135. height: 100%;
  136. background-color: #d81e07;
  137. transition: width 1s ease; /* 添加过渡动画,让进度条变化更平滑 */
  138. }
  139. .countdown-text {
  140. position: absolute;
  141. top: 0;
  142. left: 0;
  143. right: 0;
  144. bottom: 0;
  145. display: flex;
  146. justify-content: center;
  147. align-items: center;
  148. font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  149. color: rgb(0, 0, 0);
  150. font-size: 24px;
  151. }
  152. .button-container {
  153. display: flex;
  154. flex-direction: column;
  155. align-items: center;
  156. gap: 15px; /* 设置按钮之间的间距 */
  157. }
  158. .check-order-btn {
  159. width: 200px; /* 按钮宽度 */
  160. height: 45px; /* 按钮高度 */
  161. background-color: #d81e07; /* 背景颜色 */
  162. color: #fffdfe; /* 文字颜色 */
  163. border: none; /* 无边框 */
  164. border-radius: 10px; /* 圆角 */
  165. font-size: 16px; /* 文字大小 */
  166. }
  167. .complete-btn {
  168. width: 200px;
  169. height: 45px;
  170. background-color: #f2f2f2; /* 背景颜色为白色 */
  171. color: #c52818; /* 文字颜色为红色 */
  172. border: 3px solid #c83523; /* 红色边框 */
  173. border-radius: 10px;
  174. font-size: 16px;
  175. }
  176. .loading-circle {
  177. width: 65px;
  178. height: 65px;
  179. border: 4px solid #e0e0e0; /* 灰色边框 */
  180. border-top-color: #ad1919; /* 绿色上边框,可根据喜好修改 */
  181. border-radius: 50%; /* 圆形 */
  182. animation: spin 1s linear infinite; /* 应用动画,1秒循环一次,线性变化,无限循环 */
  183. }
  184. @keyframes spin {
  185. 0% {
  186. transform: rotate(0deg); /* 初始旋转角度 */
  187. }
  188. 100% {
  189. transform: rotate(360deg); /* 结束旋转角度 */
  190. }
  191. }