interview-notice.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. .notice-container {
  2. display: flex;
  3. flex-direction: column;
  4. min-height: 100vh;
  5. background-color: #f5f7fa;
  6. padding: 30rpx;
  7. }
  8. .notice-title {
  9. font-size: 36rpx;
  10. font-weight: bold;
  11. margin-top: 20rpx;
  12. margin-bottom: 10rpx;
  13. }
  14. .notice-subtitle {
  15. font-size: 28rpx;
  16. color: #666;
  17. margin-bottom: 40rpx;
  18. }
  19. .notice-grid {
  20. display: flex;
  21. flex-wrap: wrap;
  22. justify-content: space-between;
  23. margin-bottom: 30rpx;
  24. }
  25. .notice-item {
  26. width: 42%;
  27. background-color: #fff;
  28. border-radius: 12rpx;
  29. padding: 20rpx;
  30. margin-bottom: 20rpx;
  31. display: flex;
  32. flex-direction: column;
  33. align-items: center;
  34. text-align: center;
  35. }
  36. .icon-container {
  37. width: 80rpx;
  38. height: 80rpx;
  39. border-radius: 50%;
  40. display: flex;
  41. justify-content: center;
  42. align-items: center;
  43. margin-bottom: 15rpx;
  44. }
  45. .light {
  46. background-color: #f1c40f;
  47. }
  48. .smile {
  49. background-color: #2ecc71;
  50. }
  51. .mic {
  52. background-color: #3498db;
  53. }
  54. .wifi {
  55. background-color: #9b59b6;
  56. }
  57. .forbidden {
  58. background-color: #e74c3c;
  59. }
  60. .iconfont {
  61. font-size: 40rpx;
  62. color: #fff;
  63. }
  64. .item-text {
  65. font-size: 24rpx;
  66. color: #333;
  67. line-height: 1.4;
  68. }
  69. .warning-tip {
  70. background-color: #fff8e1;
  71. border-radius: 12rpx;
  72. padding: 20rpx;
  73. margin-bottom: 30rpx;
  74. border-left: 8rpx solid #ffc107;
  75. }
  76. .warning-tip text {
  77. font-size: 26rpx;
  78. color: #ff9800;
  79. line-height: 1.4;
  80. }
  81. .disclaimer {
  82. font-size: 24rpx;
  83. color: #999;
  84. line-height: 1.5;
  85. margin-bottom: 30rpx;
  86. }
  87. .agreement {
  88. display: flex;
  89. align-items: center;
  90. margin-bottom: 40rpx;
  91. }
  92. .agreement-text {
  93. font-size: 28rpx;
  94. color: #333;
  95. margin-left: 10rpx;
  96. }
  97. .start-btn {
  98. width: 100%;
  99. height: 90rpx;
  100. line-height: 90rpx;
  101. background-color: #6c5ce7;
  102. color: #fff;
  103. border-radius: 45rpx;
  104. font-size: 32rpx;
  105. }
  106. .start-btn[disabled] {
  107. background-color: #b2b2b2;
  108. color: #fff;
  109. }