index.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. .interview-container {
  2. display: flex;
  3. flex-direction: column;
  4. min-height: 100vh;
  5. background-color: #f5f7fa;
  6. }
  7. .nav-bar {
  8. display: flex;
  9. justify-content: space-between;
  10. align-items: center;
  11. padding: 20rpx 30rpx;
  12. background-color: #0039b3;
  13. color: #fff;
  14. }
  15. .scan-btn {
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. background-color: #ff9f43;
  20. padding: 10rpx 30rpx;
  21. border-radius: 30rpx;
  22. font-size: 24rpx;
  23. }
  24. .interview-info {
  25. background-color: #0039b3;
  26. color: #fff;
  27. padding: 20rpx 30rpx 40rpx;
  28. }
  29. .info-item {
  30. margin: 10rpx 0;
  31. font-size: 28rpx;
  32. }
  33. .label {
  34. margin-right: 10rpx;
  35. }
  36. .form-container {
  37. flex: 1;
  38. background-color: #fff;
  39. padding: 40rpx 30rpx;
  40. }
  41. .form-title {
  42. font-size: 32rpx;
  43. font-weight: bold;
  44. margin-bottom: 40rpx;
  45. text-align: center;
  46. color: #333;
  47. }
  48. .form-item {
  49. margin-bottom: 30rpx;
  50. position: relative;
  51. }
  52. .validation-icon {
  53. position: absolute;
  54. right: 20rpx;
  55. top: 50%;
  56. transform: translateY(-50%);
  57. font-size: 36rpx;
  58. display: flex;
  59. align-items: center;
  60. justify-content: center;
  61. }
  62. .icon-success {
  63. color: #4cd964;
  64. }
  65. .icon-error {
  66. color: #ff3b30;
  67. }
  68. input {
  69. width: 100%;
  70. height: 80rpx;
  71. border: 1px solid #eee;
  72. border-radius: 8rpx;
  73. padding: 0 60rpx 0 20rpx;
  74. font-size: 28rpx;
  75. box-sizing: border-box;
  76. background-color: #f9f9f9;
  77. }
  78. .phone-item {
  79. display: flex;
  80. align-items: center;
  81. position: relative;
  82. }
  83. .phone-item .validation-icon {
  84. right: 20rpx;
  85. }
  86. .phone-item input {
  87. flex: 1;
  88. border-radius: 0 8rpx 8rpx 0;
  89. }
  90. .verify-btn {
  91. width: 100%;
  92. height: 90rpx;
  93. line-height: 90rpx;
  94. background-color: #0039b3;
  95. color: #fff;
  96. border-radius: 45rpx;
  97. font-size: 32rpx;
  98. margin-top: 60rpx;
  99. }
  100. .verify-btn[disabled] {
  101. background-color: #b2b2b2;
  102. color: #fff;
  103. opacity: 0.7;
  104. }
  105. .agreement {
  106. display: flex;
  107. align-items: center;
  108. margin-top: 30rpx;
  109. }
  110. .agreement-text {
  111. font-size: 24rpx;
  112. color: #666;
  113. line-height: 1.5;
  114. margin-left: 10rpx;
  115. }
  116. .agreement-link {
  117. color: #0039b3;
  118. }
  119. /* 职位列表样式 */
  120. .job-list-container {
  121. flex: 1;
  122. background-color: #fff;
  123. border-radius: 20rpx 20rpx 0 0;
  124. margin-top: -20rpx;
  125. padding: 40rpx 30rpx;
  126. }
  127. .job-list-title {
  128. font-size: 32rpx;
  129. font-weight: bold;
  130. margin-bottom: 30rpx;
  131. }
  132. .job-list {
  133. max-height: 800rpx;
  134. overflow-y: auto;
  135. }
  136. .job-item {
  137. padding: 30rpx;
  138. border-radius: 12rpx;
  139. background-color: #f8f9fa;
  140. margin-bottom: 20rpx;
  141. border: 2rpx solid transparent;
  142. }
  143. .job-selected {
  144. border-color: #0039b3;
  145. background-color: rgba(108, 92, 231, 0.1);
  146. }
  147. .job-name {
  148. font-size: 30rpx;
  149. font-weight: bold;
  150. margin-bottom: 10rpx;
  151. }
  152. .job-details {
  153. display: flex;
  154. justify-content: space-between;
  155. font-size: 24rpx;
  156. color: #666;
  157. }
  158. .job-salary {
  159. color: #ff6b6b;
  160. }
  161. .apply-btn {
  162. width: 100%;
  163. height: 90rpx;
  164. line-height: 90rpx;
  165. background-color: #0039b3;
  166. color: #fff;
  167. border-radius: 45rpx;
  168. font-size: 32rpx;
  169. margin-top: 40rpx;
  170. }
  171. .apply-btn[disabled] {
  172. background-color: #b2b2b2;
  173. color: #fff;
  174. }
  175. /* 修复国家代码样式 */
  176. .country-code {
  177. display: flex;
  178. align-items: center;
  179. justify-content: space-between;
  180. width: 100rpx;
  181. padding: 0 20rpx;
  182. height: 80rpx;
  183. border: 1px solid #eee;
  184. border-radius: 8rpx 0 0 8rpx;
  185. border-right: none;
  186. font-size: 28rpx;
  187. background-color: #f9f9f9;
  188. }
  189. .dropdown-icon {
  190. font-size: 20rpx;
  191. color: #999;
  192. margin-left: 10rpx;
  193. }
  194. /* 修复手机号输入框样式 */
  195. .phone-item {
  196. display: flex;
  197. align-items: center;
  198. position: relative;
  199. }
  200. .phone-item input {
  201. flex: 1;
  202. border-radius: 0 8rpx 8rpx 0;
  203. }
  204. /* 修复验证图标位置 */
  205. .validation-icon {
  206. position: absolute;
  207. right: 20rpx;
  208. top: 50%;
  209. transform: translateY(-50%);
  210. font-size: 36rpx;
  211. display: flex;
  212. align-items: center;
  213. justify-content: center;
  214. z-index: 2;
  215. }
  216. .phone-item .validation-icon {
  217. right: 20rpx;
  218. }
  219. /* 修改图标样式与图片一致 */
  220. .icon-success {
  221. color: #4cd964;
  222. font-weight: bold;
  223. }
  224. .icon-error {
  225. color: #ff3b30;
  226. font-weight: bold;
  227. }