interview_success.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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: 60rpx;
  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. }
  25. .check-item {
  26. display: flex;
  27. align-items: center;
  28. margin-bottom: 20rpx;
  29. }
  30. .check-index {
  31. width: 40rpx;
  32. height: 40rpx;
  33. border-radius: 50%;
  34. background-color: #f0f0f0;
  35. color: #999;
  36. display: flex;
  37. justify-content: center;
  38. align-items: center;
  39. font-size: 24rpx;
  40. margin-right: 20rpx;
  41. }
  42. .check-name {
  43. flex: 1;
  44. font-size: 28rpx;
  45. color: #333;
  46. }
  47. .check-status {
  48. font-size: 28rpx;
  49. color: #67c23a;
  50. }
  51. .button-group {
  52. display: flex;
  53. width: 100%;
  54. justify-content: space-between;
  55. margin-top: 40rpx;
  56. }
  57. .btn-retake, .btn-next {
  58. width: 45%;
  59. height: 80rpx;
  60. line-height: 80rpx;
  61. text-align: center;
  62. border-radius: 8rpx;
  63. }
  64. .btn-retake {
  65. background-color: #f5f5f5;
  66. color: #333;
  67. border: 1px solid #ddd;
  68. }
  69. .btn-next {
  70. background-color: #003399;
  71. color: #fff;
  72. }