interview_success.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. .success-container {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. padding: 40rpx 30rpx;
  6. }
  7. .success-icon {
  8. margin-top: 162rpx;
  9. width: 160rpx;
  10. height: 160rpx;
  11. }
  12. .success-icon image {
  13. width: 100%;
  14. height: 100%;
  15. }
  16. .success-title {
  17. font-size: 36rpx;
  18. font-weight: bold;
  19. margin: 30rpx 0 50rpx;
  20. }
  21. .check-list {
  22. width: 100%;
  23. margin-bottom: 60rpx;
  24. display: flex;
  25. flex-direction: column;
  26. align-content: center;
  27. flex-wrap: wrap;
  28. }
  29. .check-item {
  30. display: flex;
  31. align-items: center;
  32. margin-bottom: 20rpx;
  33. }
  34. .check-index {
  35. width: 40rpx;
  36. height: 40rpx;
  37. border-radius: 50%;
  38. background-color: #f0f0f0;
  39. color: #999;
  40. display: flex;
  41. justify-content: center;
  42. align-items: center;
  43. font-size: 24rpx;
  44. margin-right: 20rpx;
  45. }
  46. .check-name {
  47. margin-right: 20px;
  48. font-size: 28rpx;
  49. color: #333;
  50. }
  51. .check-status {
  52. font-size: 28rpx;
  53. color: #003399;
  54. }
  55. .status-fail {
  56. color: #f56c6c;
  57. }
  58. .button-group {
  59. display: flex;
  60. width: 100%;
  61. justify-content: space-between;
  62. margin-top: 240rpx;
  63. }
  64. .btn-retake, .btn-next {
  65. width: 45%;
  66. height: 80rpx;
  67. line-height: 80rpx;
  68. text-align: center;
  69. border-radius: 8rpx;
  70. }
  71. .btn-retake {
  72. background-color: #f5f5f5;
  73. color: #333;
  74. border: 1px solid #ddd;
  75. }
  76. .btn-next {
  77. background-color: #003399;
  78. color: #fff;
  79. }
  80. .btn-next:disabled {
  81. background-color: #999;
  82. opacity: 0.6;
  83. }
  84. .loading-container {
  85. position: absolute;
  86. top: 0;
  87. left: 0;
  88. width: 100%;
  89. height: 100%;
  90. background-color: rgba(255, 255, 255, 0.8);
  91. display: flex;
  92. flex-direction: column;
  93. align-items: center;
  94. justify-content: center;
  95. }
  96. .loading-spinner {
  97. border: 4px solid #f3f3f3;
  98. border-top: 4px solid #003399;
  99. border-radius: 50%;
  100. width: 40rpx;
  101. height: 40rpx;
  102. animation: spin 1s linear infinite;
  103. }
  104. @keyframes spin {
  105. 0% { transform: rotate(0deg);
  106. }
  107. 100% { transform: rotate(360deg);
  108. }
  109. }
  110. .loading-text {
  111. margin-top: 20rpx;
  112. font-size: 28rpx;
  113. color: #333;
  114. }
  115. /* 添加 loading 相关样式 */
  116. .loading-container {
  117. display: flex;
  118. flex-direction: column;
  119. align-items: center;
  120. margin: 40rpx 0;
  121. }
  122. .loading-spinner {
  123. width: 60rpx;
  124. height: 60rpx;
  125. border: 4rpx solid #f3f3f3;
  126. border-top: 4rpx solid #003399;
  127. border-radius: 50%;
  128. animation: spin 1s linear infinite;
  129. margin-bottom: 20rpx;
  130. }
  131. .loading-text {
  132. font-size: 28rpx;
  133. color: #666;
  134. }
  135. @keyframes spin {
  136. 0% { transform: rotate(0deg);
  137. }
  138. 100% { transform: rotate(360deg);
  139. }
  140. }
  141. /* 修改按钮禁用状态样式 */
  142. .btn-retake:disabled, .btn-next:disabled {
  143. opacity: 0.5;
  144. cursor: not-allowed;
  145. }