.req {
  color: #f00;
  padding-right: 5px;
}
.frm-operate{width:90%}
.job-guide-recommend {  
  position: fixed;  
  top: 50%;  
  left: 50%;  
  transform: translate(-50%, -50%);  
  z-index: 1001;  
  background: white;  
  box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.15);  
  width:90%;
  max-width:80%; 
  max-height: 80vh;  
  padding: 1.25rem;  
  overflow-y: auto;  
  -webkit-overflow-scrolling: touch;  
}  
  
.job-guide-recommend::-webkit-scrollbar {  
  width: 0.3125rem;  
}  
  
.job-guide-recommend::-webkit-scrollbar-track {  
  background: #f1f1f1;  
}  
  
.job-guide-recommend::-webkit-scrollbar-thumb {  
  background: #c1c1c1;  
  border-radius: 0.25rem;  
}  
  
.job-guide-recommend::-webkit-scrollbar-thumb:hover {  
  background: #a0a0a0;  
}  

.recommend-box {
  text-align: left;
}

.recommend-box h3 {
  text-align: center;
  margin-bottom:1rem;
  font-size:1rem;
  color: #333;
}

.recommend-box h2 {
  font-size:0.825rem;
  margin-top:1.5rem;
  margin-bottom:1.5rem;
  text-align: left;
  background: #0161ae;
  line-height: 2rem;
  padding-left:0.6rem;
  color: #fff;
  width: 7rem;
  animation: float 3s infinite ease-in-out;
  border-radius: 0 2rem 2rem 0;
}

.form-row {
  margin-bottom:0.5rem;
}

.form-row label {
  display: block;
  margin-bottom:0.4rem;
  font-weight: 500;
  font-size:0.825rem;
  color: #555;
}

.form-control {
  width: 100%;
  padding:10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
}

.file-upload {
  position: relative;
}

.file-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.btn-upload,
.btn-select {
  padding: 10px 15px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-upload:hover,
.btn-select:hover {
  background: #e9ecef;
  border-color: #c3c3c3;
}

.file-preview {
  margin-top: 15px;
  padding: 15px;
  border: 1px dashed #ddd;
  border-radius: 4px;
  min-height: 50px;
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.btn-submit,
.btn-reset,
.btn-cancel {
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-submit {
  background: #007bff;
  color: white;
  border: none;
}

.btn-submit:hover {
  background: #0069d9;
  transform: translateY(-2px);
}

.btn-reset {
  background: #6c757d;
  color: white;
  border: none;
}

.btn-reset:hover {
  background: #5a6268;
}

.btn-cancel {
  background: #dc3545;
  color: white;
  border: none;
}

.btn-cancel:hover {
  background: #bd2130;
}

/* 弹窗动画 */
.job-guide-recommend.hide {
  transition: all 0.3s ease;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
  visibility: hidden;
}

.job-guide-recommend {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
}

.file-upload {
  margin-bottom: 15px;
  border: 1px dashed #ddd;
  border-radius: 8px;
  padding: 12px;
  background: #f9f9f9;
}

.file-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.btn-upload {
  padding: 10px 15px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-upload:hover {
  background: #0069d9;
}

.file-preview {
  margin-top: 15px;
  padding: 15px;
  border: 1px dashed #ddd;
  border-radius: 4px;
  min-height: 50px;
  background: #fff;
}

.file-name {
  margin-top: 5px;
  font-size: 13px;
  color: #555;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .file-actions {
    flex-direction: column;
  }
  
  .btn-upload {
    width: 100%;
    justify-content: center;
  }
}
input[type="file"] {
  display: none;
}

/* 自定义上传按钮 */
.btn-upload {
  padding: 12px 20px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.btn-upload:hover {
  background: #0069d9;
}

/* 文件预览区域 */
.file-preview {
  margin-top: 15px;
  padding: 15px;
  border: 1px dashed #ddd;
  border-radius: 6px;
  min-height: 50px;
  background: #f9f9f9;
  display: none;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .btn-upload {
    width: 100%;
    justify-content: center;
    padding: 10px;
    font-size:1rem;
  }
}