success.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .success-container {
  2. display: flex;
  3. flex-direction: column;
  4. min-height: 100vh;
  5. background-color: #f5f7fa;
  6. padding: 30rpx;
  7. }
  8. .success-icon {
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. margin: 60rpx 0;
  13. }
  14. .icon-circle {
  15. width: 120rpx;
  16. height: 120rpx;
  17. background-color: #4cd137;
  18. border-radius: 50%;
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. margin-bottom: 20rpx;
  23. }
  24. .icon-check {
  25. color: white;
  26. font-size: 60rpx;
  27. font-weight: bold;
  28. }
  29. .success-text {
  30. font-size: 36rpx;
  31. font-weight: bold;
  32. color: #333;
  33. }
  34. .interview-info {
  35. background-color: #fff;
  36. border-radius: 12rpx;
  37. padding: 30rpx;
  38. margin-bottom: 40rpx;
  39. }
  40. .info-title {
  41. font-size: 32rpx;
  42. font-weight: bold;
  43. margin-bottom: 20rpx;
  44. }
  45. .info-item {
  46. display: flex;
  47. margin: 15rpx 0;
  48. font-size: 28rpx;
  49. color: #333;
  50. }
  51. .time-end {
  52. margin-top: -10rpx;
  53. padding-left: 120rpx;
  54. }
  55. .label {
  56. color: #666;
  57. width: 120rpx;
  58. }
  59. .btn-container {
  60. margin: 40rpx 0;
  61. }
  62. .start-btn {
  63. width: 100%;
  64. height: 90rpx;
  65. line-height: 90rpx;
  66. background-color: #6c5ce7;
  67. color: #fff;
  68. border-radius: 45rpx;
  69. font-size: 32rpx;
  70. }
  71. .bottom-tips {
  72. text-align: center;
  73. font-size: 24rpx;
  74. color: #999;
  75. margin-top: 20rpx;
  76. }