  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: #333;
    }
	
	.link-images {
	  display: flex;
	  justify-content: center;   /* 居中 */
	  align-items: center;       /* 垂直居中 */
	  gap: 40px;                 /* 两图间距 */
	  margin-top: 5px;
	}
	
	.link-images img {
	  height: 200px;             /* 统一高度 */
	  width: auto;
	  transition: transform 0.25s ease, opacity 0.25s ease;
	}
	
	.link-images a:hover img {
	  transform: scale(1.05);
	  opacity: 0.9;
	}
	
	.section-title {
	  font-size: 28px;
	  font-weight: 600;
	  text-align: center;
	  margin-bottom: 5px;
	  position: relative;
	  margin-top: 10px;
	}

	.section-title::after {
	  content: "";
	  display: block;
	  width: 10%;
	  height: 3px;
	  background: rgba(255,0,0,0.2);
	  margin: 10px auto 0;
	  border-radius: 2px;
	}

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 72px;                 /* ⭐ 固定高度 */
      background: rgba(0,0,0,0.3);
      backdrop-filter: blur(1px);
      z-index: 1000;
    }

    .container {
      height: 100%;                 /* ⭐ 跟 navbar 等高 */
      display: flex;
      align-items: center;          /* ⭐ 垂直居中 */
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;   /* ⭐ 垂直居中 */
}

/* 只控制主导航（第一层） */
.nav-menu > ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-menu a {
  display: flex;
  align-items: center;
  height: 100%;
  color: #fff;
  text-decoration: none;
  padding: 0 8px;
}

    .nav-menu a {
      color: #fff;
      text-decoration: none;
      padding: 8px 12px;
    }

    .nav-menu a:hover {
      background: #444;
      border-radius: 4px;
    }
	.section_top{
		padding: 60px 20px;
		text-align: center;
		/* border-bottom: 1px solid #ddd; */
	}
	.section_content{
		padding: 60px 20px;
		text-align: center;
		/* border-bottom: 1px solid #ddd; */
	}
	

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: #2a2a2a;
  min-width: 200px;
  z-index: 999;
}

   .dropdown-content li {
     width: 100%;
   }
   
   .dropdown-content li a {
     display: block;
     padding: 10px 16px;
     white-space: nowrap;
   }
   .dropdown-content li a:hover {
     background: rgba(255,255,255,0.1);
   }



    .mobile-toggle {
      display: none;
      font-size: 26px;
      cursor: pointer;
	  color: white;
	  background-color: white;
    }

    /* ===== HERO / CAROUSEL ===== */
    .hero {
      height: 600px;
      position: relative;
      overflow: hidden;
    }

    .carousel {
      height: 100%;
      position: relative;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(65%);
    }

    .hero-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
    }

    .hero-text h1 {
      font-size: 46px;
    }

    .hero-text p {
      font-size: 20px;
      margin-top: 10px;
    }

    .nav {
      position: absolute;
      top: 60%;
      transform: translateY(-50%);
      font-size: 48px;
      color: white;
      background: rgba(0,0,0,0.4);
      border: none;
      cursor: pointer;
      padding: 5px 15px;
      z-index: 10;
    }

    .nav.prev { left: 10px; }
    .nav.next { right: 10px; }

    /* ===== SECTIONS ===== */
    .section {
      padding: 60px 20px;
      text-align: center;
/*      border-bottom: 1px solid #ddd; */
    }
	.section h2 { margin-bottom: 15px; font-size: 28px; }
	.footer_contact {
	  background: rgba(0,0,0,0.2);
	  color: black;
	  text-align: center;
	  padding: 15px;
	}

    .footer {
      background: rgba(0,0,0,0.5);
      color: white;
      text-align: center;
      padding: 15px;
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
      .nav-menu ul {
        display: none;
        flex-direction: column;
        background: #1a1a1a;
      }

      .nav-menu.open ul {
        display: flex;
      }

      .mobile-toggle {
        display: block;
      }
    }
	
.page-banner {
	  position: relative;
	  height: 320px;
	  overflow: hidden;
	}
	
	.page-banner img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  filter: brightness(60%);
	}
	
	.page-banner-text {
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  text-align: center;
	  color: white;
	}
	
	.page-banner-text h1 {
	  font-size: 42px;
	  margin-bottom: 10px;
	}
	
	.page-banner-text p {
	  font-size: 18px;
	}
	
	/* ===== INFO LIST ===== */
	.info-list {
	  list-style: none;
	  padding: 0;
	  margin: 0;
	}
	
	.info-list li {
	  font-size: 16px;
	  margin-bottom: 10px;
	}
	
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #2a2a2a;
  min-width: 200px;
  z-index: 999;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.fee-table th,
.fee-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.fee-table th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.fee-table tr:nth-child(even) {
  background-color: #fafafa;
}

.note {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}
/* --- 登录容器居中 --- */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

/* --- 登录卡片 --- */
.login-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

/* 标题 */
.login-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #003366;
}

/* 输入组 */
.input-group {
  margin-bottom: 15px;
}
.input-group label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.input-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  margin-top: 6px;
  transition: border-color 0.2s ease;
}
.input-group input:focus {
  border-color: #00509e;
  outline: none;
}

/* 选项行：Remember + 忘记密码 */
.options-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
}
.options-row .remember {
  display: flex;
  gap: 6px;
  align-items: center;
}
.options-row .forget-link {
  color: #00509e;
  text-decoration: none;
}
.options-row .forget-link:hover {
  text-decoration: underline;
}

/* 登录按钮 */
.btn-submit {
  width: 100%;
  background: #00509e;
  color: #ffffff;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn-submit:hover {
  background: #003f7f;
}

/* 忘记密码区 */
.forget-section {
  margin-top: 15px;
  background: #f9f9f9;
  padding: 14px;
  border-radius: 6px;
}
.btn-reset {
  margin-top: 8px;
  width: 100%;
  background: #e06d06;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}
.btn-reset:hover {
  background: #b25405;
}

/* 登录底部提示 */
.login-footer {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
}
.login-footer a {
  color: #00509e;
  text-decoration: none;
  font-weight: 500;
}
.login-footer a:hover {
  text-decoration: underline;
}
.content-box {
  max-width: 600px;
  margin: auto;
}

.section-title {
  margin-bottom: 30px;
  /* border-left: 5px solid #003366; */
  padding-left: 12px;
}

.role-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.role-card {
  border: 2px solid #ddd;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: .3s;
}

.role-card.active {
  border-color: #003366;
  background: #eef3f8;
}

.fee {
  font-weight: bold;
  color: #b40000;
}

.form-section label {
  font-weight: bold;
}

.form-section input,
.form-section select {
  width: 100%;
  padding: 10px;
  margin: 6px 0 20px;
}

.primary-btn {
  background: #003366;
  color: #fff;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
}
.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group .error-msg {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: red;
  font-size: 13px;
  white-space: nowrap;
}

.card {
  background:#fff;
  border-radius:12px;
  padding:24px;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.card-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:16px;
}

.badge {
  padding:6px 14px;
  border-radius:20px;
  font-size:12px;
  font-weight:bold;
}

.badge-ok { background:#e6f6ed; color:#137333; }
.badge-warn { background:#fff4e5; color:#b06000; }

.upload-area {
  margin:16px 0;
}

.action-row button {
  margin-right:10px;
}

.hint {
  font-size:12px;
  color:#888;
  margin-top:12px;
}
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.required {
  color: red;
  margin-right: 4px;
}

.hint {
  margin-top: 10px;
  font-size: 13px;
  color: #666;
}
