.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 400px; /* 固定高度，大概能容纳10条 */
  overflow-y: auto;
}

.news-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list li a {
  flex: 1;
  text-decoration: none;
  color: #333;
}

.news-list .time {
  font-size: 12px;
  color: #888;
  margin-left: 10px;
  white-space: nowrap;
}

.news-list .arrow {
  margin-left: 8px;
  color: #bbb;
}

/* .current_news {
  background: #eef6ff;
} */

.current_news a {
  font-weight: bold;
  color: #007bff;
}

/* Footer */
    footer {
      background: #1e293b;
      color: #ccc;
      padding: 40px 20px;
    }
    footer h3 {
      color: #fff;
      margin-bottom: 10px;
    }
    footer p {
      margin: 4px 0;
      font-size: 14px;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      flex-wrap: wrap;
    }
    .footer-info {
      flex: 1;
      min-width: 260px;
    }
    .footer-qrcodes {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
    }
    .footer-qrcodes .qrcode-item {
      text-align: center;
    }
    .footer-qrcodes img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 8px;
      background: #fff;
      padding: 6px;
      margin-bottom: 8px;
    }
    .footer-qrcodes p {
      font-size: 14px;
      margin: 0;
      color: #ccc;
    }
    footer .copy {
      margin-top: 30px;
      text-align: center;
      font-size: 13px;
      color: #888;
    }

  .box {
    width: 1200px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
  }

  .box ul {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .box ul li {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s linear;
    list-style: none;
    opacity: 0; /* 默认隐藏 */
  }

  .box ul li img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ============ 显示的 5 张 ============ */

  /* 左中 */
  .box ul .show1 {
    width: 762px;
    height: 336px;
    transform: translate(-50%, -50%) scale(0.9);
    left: 35%;
    z-index: 88;
    opacity: 1;
  }

  /* 中间最大 */
  .box ul .show2 {
    width: 640px;
    height: 380px;
    transform: translate(-50%, -50%) scale(1);
    left: 50%;
    z-index: 99;
    opacity: 1;
  }

  /* 右中 */
  .box ul .show3 {
    width: 762px;
    height: 336px;
    transform: translate(-50%, -50%) scale(0.9);
    left: 65%;
    z-index: 88;
    opacity: 1;
  }

  /* ============ 按钮样式 ============ */
  .butL,
  .butR {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    margin-top: -20px;
    z-index: 999;
    cursor: pointer;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .butL {
    left: 195px;
    background-image: url("teamdetails/l.png");
  }

  .butR {
    right: 195px;
    background-image: url("teamdetails/r.png");
  }

  /* ============ 响应式可选 ============ */
  @media (max-width: 1200px) {
    .box {
      width: 100%;
      max-width: 980px;
      height: 350px;
    }
    .box ul .show2 {
      width: 700px;
      height: 350px;
    }
  }

  #arrowIndicator {
  position: fixed;
  right: 20px; 
  width: 50px;
  height: 50px;
  bottom: 150px;
  z-index: 101;
}