>

:root {
  /* 替换为原始系列的主色调：黄白风格 */
  --deep-green: #2d3e50;
  /* 用作深色替代，如原深绿的用途（如标题背景、边框） */
  --cultural-pink: #e0c97f;
  /* 替换为原始黄色系，用于链接、强调文字 */
  --tech-red: #b38a3a;
  /* 替换为深一点的棕黄，用于下划线、强调 */
  --eco-brown: #f8f5e6;
  /* 浅米黄，用作内容背景替代深色 */
  --future-green: #fffbe6;
  /* 替换为原始淡黄背景色，用于高亮、标题下划线等 */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#map-container{
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
body {
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.3) 100%), url('../img/bg_imh/丝路山水地图 (9) (1).jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-color: var(--eco-brown);
  /* 浅米黄背景，匹配原始风格 */
  color: #333;
  /* 深灰色文字，原始风格 */
  font-family: 'Cambria', serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Section */
header {
  padding: 60px 0 30px;
  text-align: center;
}

h1 {
  color: #4f483c;
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
}

.subtitle {
  color: #555;
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
}

/* Content Sections */
.content-section {
  padding: 40px 0;
  background-color: rgba(255, 255, 255, 0.85);
  /* 白色半透明背景 */
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
  color: var(--cultural-pink);
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--tech-red), var(--future-green));
  border-radius: 3px;
}

.content-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 0 20px;
  color: #555;
}

.content-text p {
  margin-bottom: 20px;
  text-align: justify;
}

/* Map Section */
#map-container {
  position: relative;
  width: 100%;
  height: 700px;
  margin: 40px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

#china-map {
  width: 100%;
  height: 100%;
}

/* Team Info Sidebar */
#team-info {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 320px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid var(--cultural-pink);
  display: none;
  z-index: 10;
  transition: all 0.4s ease;
}

#team-info.visible {
  display: block;
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50%) translateX(50px);
    opacity: 0;
  }

  to {
    transform: translateY(-50%);
    opacity: 1;
  }
}

.team-photo {
  width: 100%;
  height: 180px;
  background-color: #f0f0f0;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cultural-pink);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  color: var(--cultural-pink);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.team-city {
  color: #b38a3a;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-style: italic;
}

.team-description {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Footer Note */
.footer-note {
  text-align: center;
  padding: 20px;
  color: #888;
  font-style: italic;
  border-top: 1px solid var(--cultural-pink);
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.3rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  #map-container {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  h1 {
    font-size: 2rem;
  }

  .content-text {
    font-size: 1.05rem;
  }

  #map-container {
    height: 500px;
  }

  #team-info {
    width: 280px;
    right: 15px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  #map-container {
    height: 400px;
  }

  #team-info {
    width: 250px;
    padding: 15px;
  }

  .team-photo {
    height: 150px;
  }
}

.kong {
  height: 100px;
}
