interview_success.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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: #67c23a;
  54. }
  55. .button-group {
  56. display: flex;
  57. width: 100%;
  58. justify-content: space-between;
  59. margin-top: 240rpx;
  60. }
  61. .btn-retake, .btn-next {
  62. width: 45%;
  63. height: 80rpx;
  64. line-height: 80rpx;
  65. text-align: center;
  66. border-radius: 8rpx;
  67. }
  68. .btn-retake {
  69. background-color: #f5f5f5;
  70. color: #333;
  71. border: 1px solid #ddd;
  72. }
  73. .btn-next {
  74. background-color: #003399;
  75. color: #fff;
  76. }