* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1200px;
  margin: 0;
  color: #17233d;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #f3f7fc;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: .72;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 6px 20px rgba(16, 54, 107, .08);
}

.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-logo {
  width: 112px;
  height: auto;
  display: block;
}

.brand-text {
  color: #0b3b78;
  font-size: 18px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #304766;
  font-size: 15px;
}

.top-nav a:hover {
  color: #1268d8;
}

.hero {
  position: relative;
  min-height: 320px;
  padding: 14px 0 16px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #063a83 0%, #1268d8 48%, #20a6df 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: .28;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: #ffd166;
  font-size: 20px;
  font-weight: 700;
}

.hero h1,
.sub-hero h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 800;
}

.hero-desc,
.sub-hero p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  min-width: 150px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-submit {
  color: #fff;
  background: #ff7a1a;
  box-shadow: 0 10px 22px rgba(255, 122, 26, .24);
}

.btn-light {
  color: #0b3b78;
  background: #fff;
}

.hero-points {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, .92);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffd166;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.hero-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(4, 30, 74, .24);
}

.lead-form,
.condition-card,
.remind-form,
.material-form,
.query-panel {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(9, 54, 116, .12);
}

.hero-form {
  padding: 24px;
}

.lead-form h2,
.condition-card h3,
.remind-form h3,
.material-form h3,
.query-panel h2 {
  margin: 0 0 18px;
  color: #0b3b78;
  font-size: 26px;
  line-height: 1.3;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.lead-form label {
  display: block;
}

.lead-form label span {
  display: block;
  margin-bottom: 8px;
  color: #55687f;
  font-size: 14px;
}

input,
select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #d9e4f2;
  border-radius: 6px;
  color: #17233d;
  background: #fff;
  outline: none;
}

input:focus,
select:focus {
  border-color: #1268d8;
  box-shadow: 0 0 0 3px rgba(18, 104, 216, .12);
}

.hero-form .btn-submit {
  width: 100%;
  margin-top: 16px;
}

.form-tip {
  margin: 12px 0 0;
  color: #6a7d92;
  font-size: 13px;
}

.section {
  padding: 76px 0;
}

.section-title {
  margin-bottom: 34px;
  text-align: center;
}

.section-title p {
  margin: 0 0 8px;
  color: #1268d8;
  font-size: 18px;
  font-weight: 700;
}

.section-title h2 {
  margin: 0;
  color: #0b3b78;
  font-size: 38px;
  line-height: 1.25;
}

.light-title p,
.light-title h2 {
  color: #fff;
}

.align-left {
  text-align: left;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.guide-item {
  height: 118px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 0;
  border-radius: 8px;
  color: #17233d;
  text-align: left;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 95, 175, .1);
}

.guide-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #1268d8, #20a6df);
}

.guide-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guide-item strong {
  font-size: 22px;
}

.guide-item:hover {
  color: #1268d8;
  transform: translateY(-2px);
}

.question-zone {
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: 28px;
  margin-top: 34px;
}

.question-list,
.condition-card {
  padding: 26px;
}

.question-list {
  display: block;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 95, 175, .1);
}

.zone-head {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: #0b3b78;
  font-size: 24px;
  font-weight: 800;
}

.zone-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 50%;
  color: #fff;
  background: #1268d8;
}

.question-list a,
.question-list button {
  min-height: 34px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  border: 0;
  color: #304766;
  font-size: 16px;
  text-align: left;
  background: transparent;
}

.question-list b {
  color: #ff7a1a;
}

.question-list a:hover,
.question-list button:hover {
  color: #1268d8;
}

.condition-card p {
  margin: -8px 0 18px;
  color: #6a7d92;
  text-align: left;
}

.radio-block {
  margin-bottom: 14px;
}

.radio-block span {
  display: block;
  margin-bottom: 8px;
  color: #2f3440;
  font-size: 18px;
  font-weight: 700;
}

.radio-block label {
  display: inline-flex;
  align-items: center;
  margin: 0 28px 8px 0;
  color: #304766;
  font-size: 17px;
}

.radio-block input {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  accent-color: #1268d8;
}

.agreement {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  color: #6a7d92;
  font-size: 12px;
}

.agreement input {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.agreement a {
  color: #1268d8;
}

.condition-card .btn-submit,
.remind-form .btn-submit,
.material-form .btn-submit {
  width: 100%;
  margin-top: 14px;
}

.policy,
.material,
.career-section {
  color: #fff;
  background: linear-gradient(135deg, #0b3b78, #1268d8);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.policy-grid article {
  min-height: 230px;
  padding: 28px;
  border-radius: 8px;
  color: #17233d;
  background: #fff;
}

.policy-grid h3 {
  margin: 0 0 14px;
  color: #0b3b78;
  font-size: 24px;
}

.policy-grid p {
  min-height: 92px;
  margin: 0;
  color: #55687f;
}

.policy-grid button {
  height: 38px;
  margin-top: 22px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: #ff7a1a;
}

.policy-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.policy-help-grid article {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 16px;
  border-radius: 8px;
  color: #17233d;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 95, 175, .1);
}

.policy-help-img {
  width: 128px;
  height: 86px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.policy-help-grid h3 {
  margin: 0 0 10px;
  color: #0b3b78;
  font-size: 22px;
}

.policy-help-grid button {
  height: 34px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  background: #ff7a1a;
}

.schedule-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

.schedule-table {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 95, 175, .1);
}

.table-body {
  max-height: 432px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #b8d6f6 #f3f7fc;
}

.table-body::-webkit-scrollbar {
  width: 8px;
}

.table-body::-webkit-scrollbar-track {
  background: #f3f7fc;
}

.table-body::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #b8d6f6;
}

.table-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr 1fr 1fr;
  min-height: 54px;
  align-items: center;
  border-bottom: 1px solid #edf2f8;
}

.table-head {
  color: #fff;
  font-weight: 700;
  background: #1268d8;
}

.table-row span,
.table-row button {
  padding: 0 16px;
}

.table-row button {
  height: 34px;
  margin: 0 12px 0 0;
  border: 1px solid #d9e4f2;
  border-radius: 6px;
  color: #1268d8;
  background: #f6fbff;
}

.table-row button:hover {
  color: #fff;
  background: #1268d8;
}

.remind-form {
  padding: 24px;
}

.remind-form input,
.remind-form select,
.material-form input,
.material-form select {
  margin-bottom: 12px;
}

.remind-form p {
  margin: 14px 0 0;
  color: #6a7d92;
  font-size: 14px;
}

.exam-table-wrap {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 95, 175, .1);
}

.exam-table {
  width: 100%;
  border-collapse: collapse;
}

.exam-table th,
.exam-table td {
  padding: 18px;
  border: 1px solid #e5edf6;
  text-align: center;
}

.exam-table th {
  color: #fff;
  background: #1268d8;
}

.exam-table td {
  color: #304766;
  background: #fff;
}

.exam-pill,
.exam-detail {
  height: 34px;
  margin-left: 10px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  background: #ff3b43;
}

.score-manage {
  line-height: 1.8;
}

.score-manage .exam-detail {
  display: block;
  width: 122px;
  margin: 14px auto 0;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.material-grid button {
  min-height: 124px;
  padding: 24px;
  border: 0;
  border-radius: 8px;
  color: #0b3b78;
  font-weight: 700;
  font-size: 20px;
  text-align: left;
  background: #fff;
}

.material-grid span {
  display: inline-flex;
  margin-top: 14px;
  padding: 7px 14px;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  background: #ff7a1a;
}

.material-form {
  display: grid;
  grid-template-columns: 1.2fr 260px 260px 220px;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
}

.material-form h3 {
  margin: 0;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, .78);
  background: #102235;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.footer-legal a {
  color: inherit;
}

.footer-inner button {
  width: 168px;
  height: 42px;
  flex: none;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 6px;
  color: #fff;
  background: transparent;
}

.float-consult {
  position: fixed;
  right: 24px;
  top: 50%;
  z-index: 18;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.float-consult button {
  width: 88px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: #ff7a1a;
  box-shadow: 0 8px 20px rgba(255, 122, 26, .25);
}

.float-consult button:nth-child(2) {
  background: #1268d8;
}

.float-consult button:nth-child(3) {
  color: #0b3b78;
  background: #fff;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.is-open {
  display: flex;
}

.modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(11, 30, 58, .58);
}

.modal-card {
  position: relative;
  width: 440px;
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  color: #6a7d92;
  font-size: 30px;
  line-height: 1;
  background: transparent;
}

.modal-card .lead-form {
  padding: 0;
  box-shadow: none;
}

.modal-card label {
  margin-bottom: 14px;
}

.toast {
  position: fixed;
  left: 50%;
  top: 92px;
  z-index: 80;
  min-width: 220px;
  padding: 12px 20px;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  background: rgba(16, 34, 53, .92);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity .2s ease, transform .2s ease;
}

.toast.is-show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.sub-page .site-header {
  position: sticky;
}

.sub-hero {
  padding: 36px 0 30px;
  color: #fff;
  background: linear-gradient(135deg, #0b3b78, #1380df 60%, #11a37f);
}

.sub-hero-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: center;
}

.sub-hero .eyebrow {
  margin-bottom: 10px;
  font-size: 18px;
}

.sub-hero h1 {
  font-size: 42px;
}

.sub-hero p {
  margin-top: 14px;
  font-size: 18px;
}

.sub-hero .btn {
  margin-top: 18px;
}

.sub-hero img {
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(4, 30, 74, .24);
}

.breadcrumb {
  margin-bottom: 20px;
  color: #6a7d92;
}

.breadcrumb span {
  color: #1268d8;
}

.query-shell {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 95, 175, .1);
}

.query-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid #e5edf6;
}

.tab-btn {
  height: 62px;
  border: 0;
  color: #304766;
  font-weight: 700;
  background: #fff;
}

.tab-btn.is-active {
  color: #fff;
  background: #1268d8;
}

.query-panels {
  padding: 34px;
}

.query-panel {
  display: none;
  padding: 0;
  box-shadow: none;
}

.query-panel.is-active {
  display: block;
}

.query-panel h2 span {
  color: #ff7a1a;
}

.query-panel .wide-btn {
  width: 260px;
  margin-top: 18px;
}

.sub-form-row {
  grid-template-columns: 1fr 1fr 220px;
  align-items: center;
}

.sub-form-row .wide-btn {
  width: 100%;
  margin-top: 0;
}

.notice-list {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 8px;
  color: #6a7d92;
  background: #f6fbff;
}

.notice-list p {
  margin: 6px 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-grid article {
  min-height: 240px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 95, 175, .1);
}

.value-grid strong {
  color: #ff7a1a;
  font-size: 28px;
}

.value-grid h3 {
  margin: 16px 0 12px;
  color: #0b3b78;
  font-size: 22px;
}

.value-grid p {
  margin: 0;
  color: #55687f;
}

.career-inner {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 52px;
  align-items: center;
}

.career-text {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
}

.career-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 24px;
  border-radius: 8px;
  color: #0b3b78;
  background: #fff;
}

.career-list span {
  font-size: 20px;
  font-weight: 700;
}

.career-list em {
  color: #55687f;
  font-style: normal;
}

@media (max-width: 1200px) {
  body {
    min-width: 0;
  }

  .container {
    width: auto;
    margin: 0 20px;
  }

  .header-inner {
    height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .top-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero-inner,
  .sub-hero-inner,
  .question-zone,
  .schedule-wrap,
  .career-inner {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .sub-hero h1 {
    font-size: 42px;
  }

  .guide-grid,
  .policy-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .material-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .material-form {
    grid-template-columns: 1fr 1fr;
  }

  .float-consult {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    margin: 0 14px;
  }

  .section {
    padding: 48px 0;
  }

  .brand-text {
    font-size: 15px;
  }

  .hero {
    min-height: 0;
    padding: 52px 0;
  }

  .hero h1,
  .sub-hero h1 {
    font-size: 34px;
  }

  .hero-desc,
  .sub-hero p {
    font-size: 17px;
  }

  .hero-actions,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .form-grid,
  .form-grid.three,
  .guide-grid,
  .question-list,
  .policy-grid,
  .material-grid,
  .material-form,
  .value-grid,
  .query-tabs {
    grid-template-columns: 1fr;
  }

  .schedule-table,
  .exam-table-wrap {
    overflow-x: auto;
  }

  .table-row {
    min-width: 720px;
  }

  .exam-table {
    min-width: 780px;
  }

  .query-panels {
    padding: 22px;
  }

  .query-panel .wide-btn {
    width: 100%;
  }

  .modal-card {
    width: calc(100% - 28px);
    padding: 24px;
  }
}
