payStatus.wxss 4.5 KB

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