﻿/* ===================================
   鐧炬鼎娲煡璇嗕骇鏉?- 鍏ㄥ眬鏍峰紡
   涓昏壊锛氭繁钃?#0a1f5c / 绾㈣壊 #cc2027
   =================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Microsoft YaHei", "寰蒋闆呴粦", "PingFang SC", Arial, sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #cc2027; }
img { max-width: 100%; vertical-align: middle; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER / NAVBAR ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* 绾浘鐗?Logo 妯″紡锛坙ogo鍥剧墖鏈韩鍖呭惈鍝佺墝鍚嶇О鍜屽壇鏍囬锛?*/
.navbar-brand-img img {
  height: 50px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.brand-text {
  line-height: 1.2;
}

.brand-text h1 {
  font-size: 18px;
  font-weight: bold;
  color: #cc2027;
  letter-spacing: 1px;
}

.brand-text span {
  font-size: 11px;
  color: #666;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  border-radius: 3px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #0a1f5c;
  background: rgba(10,31,92,0.07);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

/* ===== HERO BANNER (璺戦┈鐏嫳鏂囧瓧骞? ===== */
.ticker-bar {
  background: rgba(10,31,92,0.95);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.ticker-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: 8px;
  font-style: italic;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #0a1033;
  height: 520px;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
  height: 100%;
}

/* .slide 鏍峰紡浠呴檺 .hero-slider 鍐呴儴浣跨敤锛岄伩鍏嶅奖鍝嶅悇澶勮疆鎾浘 */
.hero-slider .slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1f5c 0%, #0d2878 50%, #0a1545 100%);
}

/* 绉戞妧绮掑瓙鐐圭姸鑳屾櫙 */
.slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
}

.slide-globe {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  opacity: 0.85;
}

/* CSS 缁樺埗鍦扮悆 */
.globe-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #c8d8f0 0%, #a0b8d8 30%, #6888b0 60%, #2a4880 100%);
  box-shadow: 0 0 80px rgba(100,150,220,0.4), inset 0 0 40px rgba(0,0,50,0.3);
  position: relative;
  overflow: hidden;
}

.globe-wrapper::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: globeRing1 8s linear infinite;
}

.globe-wrapper::after {
  content: '';
  position: absolute;
  inset: -40px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  animation: globeRing2 12s linear infinite reverse;
}

@keyframes globeRing1 {
  from { transform: rotate(0deg) scaleX(0.4); }
  to { transform: rotate(360deg) scaleX(0.4); }
}

@keyframes globeRing2 {
  from { transform: rotate(0deg) scaleX(0.6); }
  to { transform: rotate(360deg) scaleX(0.6); }
}

.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-left: 80px;
  max-width: 600px;
}

.slide-content .sub-text {
  font-size: 14px;
  color: #ff9999;
  margin-bottom: 16px;
  font-style: italic;
  letter-spacing: 1px;
}

.slide-content h2 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  letter-spacing: 3px;
}

.slide-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-red {
  display: inline-block;
  padding: 12px 32px;
  background: #cc2027;
  color: #fff;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  border: none;
}

.btn-red:hover { background: #a81820; transform: translateY(-2px); color: #fff; }

.btn-outline-white {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255,255,255,0.08);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}

.slider-dot.active {
  background: #cc2027;
  transform: scale(1.3);
}

/* .sdot 鍒悕锛圚TML涓疆鎾寚绀哄櫒浣跨敤 class="sdot"锛?*/
.sdot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s, transform 0.3s; border: none; padding: 0; }
.sdot.active { background: #cc2027; transform: scale(1.3); }

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 46px;
}

.section-en {
  display: block;
  font-size: 12px;
  color: #4a6fa5;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: bold;
  color: #cc2027;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

.section-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: -1px;
}

.section-tab {
  padding: 6px 20px;
  font-size: 13px;
  color: #666;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.section-tab.active, .section-tab:hover {
  color: #cc2027;
  border-color: #cc2027;
}

/* ===== ABOUT (棣栭〉) ===== */
.about-home {
  padding: 70px 0;
  background: #fff;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.about-text .section-header {
  text-align: left;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 14px;
  font-size: 14px;
}

.about-text .btn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 28px;
  background: #cc2027;
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s;
}

.about-text .btn-more:hover { background: #a81820; }

/* ===== SERVICES GRID (棣栭〉鏈嶅姟椤圭洰) ===== */
.services-home {
  padding: 70px 0;
  background: #eef4fb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #cc2027;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-4px); }

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b8d0ea;
  border-radius: 50%;
  color: #1a56b0;
  font-size: 24px;
  background: rgba(26,86,176,0.05);
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  border-color: #0a1f5c;
  color: #0a1f5c;
  background: rgba(10,31,92,0.08);
}

.service-card h3 {
  font-size: 16px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 16px;
}

.btn-apply, .svc-link {
  display: inline-block;
  padding: 0;
  background: transparent;
  color: #0a1f5c;
  border: none;
  border-bottom: 2px solid #0a1f5c;
  border-radius: 0;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
  padding-bottom: 2px;
}

.btn-apply:hover, .svc-link:hover {
  background: transparent;
  color: #cc2027;
  border-bottom-color: #cc2027;
  letter-spacing: 0.5px;
}

/* ===== INTERNATIONAL TRADEMARK ===== */
.intl-trade {
  padding: 70px 0;
  background: #fff;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}

.cat-btn {
  padding: 5px 14px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 12px;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}

.cat-btn.active, .cat-btn:hover {
  background: #cc2027;
  border-color: #cc2027;
  color: #fff;
}

.trademark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trademark-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.trademark-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.trademark-item:hover img { transform: scale(1.05); }

.trademark-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(204,32,39,0.85);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 2px;
}

/* ===== STATS ===== */
.stats-section {
  padding: 60px 0;
  background: #eef4fb;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 30px 0;
  border-right: 1px solid #e8e8e8;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 42px;
  font-weight: 900;
  color: #cc2027;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-num sup {
  font-size: 18px;
}

.stat-label {
  font-size: 14px;
  color: #666;
}

/* ===== NEWS ===== */
.news-home {
  padding: 70px 0;
  background: #fff;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-list-item {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed #e5e5e5;
  gap: 12px;
}

.news-list-item::before {
  content: '鈻?;
  color: #cc2027;
  font-size: 10px;
  flex-shrink: 0;
}

.news-list-item a {
  flex: 1;
  font-size: 14px;
  color: #333;
  transition: color 0.2s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news-list-item a:hover { color: #cc2027; }

.news-list-item .date {
  font-size: 12px;
  color: #aaa;
  flex-shrink: 0;
  margin-left: 12px;
}

/* two-column news layout */
.news-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.news-col-title {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  padding-bottom: 10px;
  border-bottom: 2px solid #cc2027;
  margin-bottom: 0;
}

/* ===== HONORS ===== */
.honors-home {
  padding: 70px 0;
  background: #eef4fb;
}

.honors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.honor-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}

.honor-item:hover img {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.honor-item p {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}

/* ===== FOOTER ===== */
footer {
  background: #0a1f5c;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.footer-main {
  padding: 50px 0 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-col p { line-height: 1.9; }

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.footer-contact i {
  color: #cc2027;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---------- 合作机构 ---------- */
.partner-section {
  padding: 50px 0;
  background: #ecf2fa;
  border-top: 1px solid #eee;
}
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 30px;
}
.partner-item {
  padding: 18px 32px;
  border-right: 1px solid #d0daf0;
  font-size: 13px;
  color: #555;
  text-align: center;
  transition: color 0.2s, transform 0.2s;
}
.partner-item:last-child { border-right: none; }
.partner-item:hover { color: #1a56b0; transform: translateY(-1px); }
.partner-item i { display: block; font-size: 24px; margin-bottom: 8px; color: #4a6fa5; transition: color 0.2s; }
.partner-item:hover i { color: #1a56b0; }
.partner-item a { text-decoration: none; color: inherit; }

@media (max-width: 767px) {
  .partner-logos { gap: 12px 0; }
  .partner-item { border-right: none; border-bottom: 1px solid #d0daf0; padding: 12px 20px; }
  .partner-item:last-child { border-bottom: none; }
}

.footer-partner {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-partner a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-partner a:hover { color: #cc2027; }

.footer-bottom {
  padding: 14px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #cc2027; }

/* ===== PAGE BANNER (瀛愰〉闈㈠ぇ鍥? ===== */
.page-banner {
  background: linear-gradient(135deg, #0a1f5c, #0d2878);
  height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-banner .banner-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-banner .slide-globe {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  padding-left: 80px;
}

.page-banner-content .sub {
  font-size: 14px;
  color: #ff9999;
  font-style: italic;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.page-banner-content h1 {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: 3px;
}

.page-banner-content .en-text {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 4px;
}

/* ===== PROCESS FLOW ===== */
.process-box {
  background: #ecf2fa;
  border-radius: 4px;
  padding: 30px;
  margin: 36px 0;
}

.process-box h3 {
  text-align: center;
  font-size: 18px;
  color: #333;
  margin-bottom: 28px;
}

.process-steps {
  display: flex;
  align-items: stretch;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '鈥?;
  position: absolute;
  right: -8px;
  top: 18px;
  font-size: 22px;
  color: #999;
}

.process-step:last-child::after { display: none; }

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 10px;
  color: #1a56b0;
  background: rgba(26,86,176,0.07);
  border: 1px solid #b8d0ea;
  box-shadow: 0 2px 8px rgba(26,86,176,0.1);
}

.process-step.active .step-icon {
  background: #e8f0e8;
  color: #5a9a5a;
}

.process-step.active2 .step-icon {
  background: #f5f0e8;
  color: #c8844a;
}

.process-step.active3 .step-icon {
  background: #e8ecf5;
  color: #5a72c8;
}

.process-step.active4 .step-icon {
  background: #e8ecf5;
  color: #5a72c8;
}

.step-title {
  font-size: 13px;
  font-weight: bold;
  color: #333;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
  padding: 0 8px;
}

/* ===== APPLY FORM ===== */
.apply-section {
  padding: 50px 0;
  background: #fff;
}

.apply-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

.apply-title span {
  color: #cc2027;
}

.apply-form {
  max-width: 800px;
  margin: 0 auto;
}

.apply-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
  padding: 16px 0;
}

.apply-cats label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
  align-items: end;
}

.form-row-3 input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-row-3 input:focus { border-color: #cc2027; }

.captcha-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

.captcha-img {
  height: 38px;
  cursor: pointer;
  border-radius: 3px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 4px;
  color: #333;
  border: 1px solid #ddd;
  padding: 0 8px;
}

.btn-submit-red {
  width: 100%;
  padding: 14px;
  background: #cc2027;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit-red:hover { background: #a81820; }

/* ===== SERVICE DETAIL CARDS ===== */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
}

.svc-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #eee;
  border-radius: 4px;
  transition: box-shadow 0.3s;
}

.svc-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }

.svc-card-icon {
  font-size: 36px;
  color: #1a56b0;
  margin-bottom: 14px;
}

.svc-card h3 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ===== BRANCH OFFICES ===== */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 0;
}

.branch-card {
  padding: 24px;
  border: 1px solid #eee;
  border-radius: 4px;
  transition: box-shadow 0.3s;
}

.branch-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

.branch-card h3 {
  font-size: 16px;
  font-weight: bold;
  color: #cc2027;
  margin-bottom: 14px;
}

.branch-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.branch-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #555;
}

.branch-info-row i {
  color: #cc2027;
  flex-shrink: 0;
  margin-top: 2px;
  width: 14px;
}

/* ===== JOBS LIST ===== */
.jobs-section {
  padding: 60px 0;
  background: #fff;
}

.job-list-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
  gap: 16px;
}

.job-list-item:hover { background: #fafafa; }

.job-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cc2027;
  flex-shrink: 0;
}

.job-title {
  flex: 1;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

.job-date {
  font-size: 13px;
  color: #aaa;
}

/* ===== PAGINATION ===== */
.pagination {
  text-align: center;
  padding: 36px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
}

.pagination a, .pagination span {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #666;
  transition: all 0.2s;
  cursor: pointer;
}

.pagination a:hover, .pagination .current {
  background: #cc2027;
  border-color: #cc2027;
  color: #fff;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 70px 0;
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-detail-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid #cc2027;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .honors-grid { grid-template-columns: repeat(3, 1fr); }
  .news-two-col { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
    gap: 0;
    z-index: 100;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 24px; }
  .hamburger { display: flex; }
  .slide-content h2 { font-size: 32px; }
  .slide-globe { display: none; }
  .page-banner { height: 340px; }
  .page-banner .slide-globe { display: none; }
  .page-banner-content h1 { font-size: 28px; }
  .page-banner-content { padding-left: 24px; }
  .slide-content { padding-left: 24px; }
  .footer-main { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
  .trademark-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 16px; }
  .process-step::after { display: none; }
}

/* ===== 回到顶部按钮 ===== */
#backToTop {
  position: fixed;
  right: 28px;
  bottom: 40px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a56b0, #0a3a8a);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(10, 31, 92, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
  z-index: 9999;
}
#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover {
  background: linear-gradient(135deg, #cc2027, #e53935);
  box-shadow: 0 6px 20px rgba(204, 32, 39, 0.38);
}
#backToTop:active {
  transform: translateY(2px);
}

