/* ===== jindu.css - 进度查询表单页专用样式 ===== */
/* 断点: PC(≥1024px,默认) / 折叠屏(600~1023px) / 手机(≤599px) */
/* 改法: PC段写全量，折叠屏/手机只写和PC不同的值 */

/* ===== PC端（≥1024px，默认）===== */

/* --- 页面容器 --- */
.jindu-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 24px 200px;

}
.jindu-page h2 {
  color: #b8363a;
  font-size: 45px;
  text-align: center;
  margin-bottom: 8px;
  font-weight: bolder;
}
.jindu-page .subtitle {
  text-align: center;
  color: #777;
  font-size: 18px;
  margin-bottom: 32px;
}

/* --- 查询表单 --- */
.query-form {
  background: #fff;
  border: 1px solid #e0d5c8;
  border-radius: 10px;
  padding: 32px;
  max-width: 460px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  color: #4a3c33;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}
.form-group input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0d5c8;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input[type="text"]:focus {
  border-color: #b8363a;
}

/* --- 验证码行 --- */
.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.captcha-row input[type="text"] {
  flex: 1;
}
.captcha-row img {
  height: 44px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid #e0d5c8;
}
.captcha-hint {
  color: #999;
  font-size: 12px;
  margin-top: 4px;
}

/* --- 查询按钮 --- */
.query-btn {
  width: 100%;
  padding: 14px;
  background: #b8363a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.query-btn:hover {
  background: #a03033;
}
.query-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* --- 错误提示 --- */
.error-box {
  background: #fff3f3;
  border: 1px solid #f0c0c0;
  color: #b8363a;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
}


/* ===== 折叠屏（600~1023px）===== */
@media (min-width: 600px) and (max-width: 1023px) {
  .jindu-page {
    max-width: 600px;
    padding: 50px 16px 50px;
      height: 83vw;

  }
  .jindu-page h2 {
    font-size: 38px;
      margin-bottom: 10px;
  }
    .jindu-page .subtitle {
        text-align: center;
        color: #777;
        font-size: 17px;
        margin-bottom: 15px;
    }
  .query-form {
    padding: 15px;
    max-width: 420px;
  }
  .form-group input[type="text"] {
    padding: 10px 12px;
    font-size: 15px;
  }
  .captcha-row img {
    height: 40px;
  }
  .query-btn {
    padding: 12px;
    font-size: 15px;
  }
}


/* ===== 手机端（≤599px）===== */
@media (max-width: 599px) {
  .jindu-page {
    padding: 80px 12px 40px;
      width: 90vw;
      height: 80vh;
  }
  .jindu-page h2 {
    font-size: 28px;
  }
  .jindu-page .subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .query-form {
    padding: 20px 16px;
    max-width: 100%;
  }
  .form-group {
    margin-bottom: 16px;
  }
  .form-group label {
    font-size: 13px;
  }
  .form-group input[type="text"] {
    padding: 10px 12px;
    font-size: 15px;
  }
  .captcha-row {
    gap: 8px;
  }
  .captcha-row img {
    height: 40px;
  }
  .captcha-hint {
    font-size: 11px;
  }
  .query-btn {
    padding: 12px;
    font-size: 15px;
  }
  .error-box {
    padding: 8px 12px;
    font-size: 13px;
  }
}
