body {
  font-family: 'Microsoft YaHei', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
}
.site-header, .site-footer {
  width: 100%;
  background: #fff;
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  border-bottom: 1px solid #e5e5e5;
}
.logo img { height: 70px; }
.header-contact { font-size: 16px; }
.header-icons img { width: 20px; margin-left: 8px; }
.header-links { font-size: 14px; }
.header-links a { color: #333; margin: 0 4px; text-decoration: none; }
.main-nav ul { display: flex; list-style: none; margin: 0; padding: 0; background: #0a4fa1; }
.main-nav li { flex: 1; }
.main-nav a {
  display: block;
  text-align: center;
  color: #fff;
  padding: 16px 0;
  text-decoration: none;
  font-size: 18px;
}
.main-nav a:hover, .main-nav .active { background: #e60012; }

.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner .swiper-container {
  width: 100%;
  height: 380px;
  min-height: 180px;
}
.banner .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.banner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner-text {
  position: absolute;
  right: 80px;
  top: 120px;
  color: #0a4fa1;
  font-size: 32px;
  font-weight: bold;
}

.about-us { max-width: 1200px; margin: 140px auto 60px auto; }
.about-title { text-align: center; margin-bottom: 24px; }
.about-title-line { width: 60px; height: 4px; background: #0a4fa1; margin: 0 auto 12px auto; border-radius: 2px; }
.about-title-text { }
.about-title-en { color: #888; font-size: 16px; letter-spacing: 2px; }
.about-title-zh { color: #0a4fa1; font-size: 26px; font-weight: bold; margin-top: 4px; }

.about-tabs-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  z-index: 1;
}
.about-tabs {
  display: flex;
  justify-content: center;
  background: #fff;
  border: none;
  position: relative;
}
.about-tabs .about-tab {
  padding: 10px 40px;
  color: #222;
  text-decoration: none;
  font-size: 16px;
  background: #fff;
  border: none;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  margin: 0 1px;
  outline: none;
}
.about-tabs .about-tab.active, .about-tabs .about-tab:hover {
  background: #0a4fa1;
  color: #fff;
}
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.about-pane {
  display: none;
  width: 100%;
}

/* PC端布局 */
@media (min-width: 901px) {
  .about-pane[style*="display:block"],
  .about-pane[style*="display:flex"] {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 60px !important;
  }

  .about-video { 
    width: 420px !important; 
    flex-shrink: 0 !important;
  }

  .about-text { 
    flex: 1 !important;
    min-width: 0 !important;
    padding-left: 20px !important;
  }
}

/* 移动端布局 */
@media (max-width: 900px) {
  .about-pane[style*="display:block"],
  .about-pane[style*="display:flex"],
  .about-pane.about-pane-profile[style*="display:flex"],
  .about-pane.about-pane-profile[style*="display:block"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .about-video {
    width: 100% !important;
    margin-bottom: 16px !important;
  }

  .about-text {
    width: 100% !important;
    padding-left: 0 !important;
  }
}

.about-video img { 
  width: 100%; 
  border-radius: 8px;
  display: block;
}

.about-text p {
  font-size: 16px;
  line-height: 2;
  margin: 0;
}

@media (max-width: 900px) {
  .about-content {
    padding: 20px 16px;
  }
  
  .about-text p {
    font-size: 15px;
    line-height: 1.8;
  }
}

.history {
  background: #fff;
  padding: 40px 0 60px 0;
}
.history-title {
  width: 240px;
  margin: 0 auto 36px auto;
  background: #0060b3;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
  box-shadow: 8px 8px 0 #e5e5e5;
  letter-spacing: 4px;
  padding: 18px 0 14px 0;
}
.history-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.history-list li {
  display: flex;
  align-items: center;
  background: #f6f6f6;
  border-radius: 6px;
  margin-bottom: 18px;
  padding: 0;
  min-height: 84px;
  font-size: 22px;
  font-weight: 500;
}
.history-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 84px;
  background: #0060b3;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  border-radius: 6px 0 0 6px;
  margin-right: 24px;
  letter-spacing: 1px;
}
.history-list li:last-child { margin-bottom: 0; }
.history-list li {
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
@media (max-width: 900px) {
  .history-title {
    font-size: 18px !important;
    margin-top: 18px !important;
    margin-bottom: 12px !important;
    padding: 8px 0 !important;
  }
  .history-list { max-width: 98vw !important; }
  .history-list span { min-width: 70px; font-size: 15px; height: 44px; margin-right: 10px; }
  .history-list li { font-size: 14px; min-height: 44px; }
}

.site-footer {
  background: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.footer-main {
  background: #0053a6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0 36px 0;
  position: relative;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 56px;
}
.footer-logo img {
  height: 48px;
  margin-bottom: 12px;
}
.footer-logo-title {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.footer-logo-en {
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.85;
}
.footer-divider {
  width: 2px;
  height: 120px;
  background: #fff;
  opacity: 0.4;
  margin: 0 56px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  line-height: 2.2;
}
.footer-info p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.footer-bottom {
  background: #393939;
  color: #fff;
  text-align: center;
  padding: 18px 0 12px 0;
}
.footer-nav {
  background: #393939;
  color: #fff;
  text-align: center;
  padding: 0;
  font-size: 16px;
  letter-spacing: 1px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: #fff;
  margin: 0 32px;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: inline-block;
  line-height: 1;
}
.footer-nav a:hover {
  color: #d82019;
}
@media (max-width: 900px) {
  .footer-main { flex-direction: column; padding: 24px 0 18px 0; }
  .footer-logo { margin-right: 0; align-items: center; }
  .footer-divider { display: none; }
  .footer-info { align-items: center; font-size: 14px; }
  .footer-info p { font-size: 14px; }
  .footer-nav { font-size: 15px; height: 44px; }
  .footer-nav a { margin: 0 10px; font-size: 15px; }
}

/* 产品与服务样式 */
.service { max-width: 1200px; margin: 140px auto; }
.service-title { text-align: center; margin-bottom: 24px; }
.service-title-line { width: 60px; height: 4px; background: #0a4fa1; margin: 0 auto 12px auto; border-radius: 2px; }
.service-title-text { }
.service-title-en { color: #888; font-size: 16px; letter-spacing: 2px; }
.service-title-zh { color: #0a4fa1; font-size: 26px; font-weight: bold; margin-top: 4px; }

.service-tabs-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  z-index: 1;
}
.service-tabs {
  display: flex;
  justify-content: center;
  background: #fff;
  border: none;
  position: relative;
}
.service-tabs .service-tab {
  padding: 10px 40px;
  color: #222;
  text-decoration: none;
  font-size: 16px;
  background: #fff;
  border: none;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  margin: 0 1px;
  outline: none;
}
.service-tabs .service-tab.active, .service-tabs .service-tab:hover {
  background: #0a4fa1;
  color: #fff;
}
.service-content {
  background: #fff;
  border-radius: 0 0 8px 8px;
  padding: 32px 24px;
  margin-top: 0;
  position: relative;
}
.service-pane {
  display: none;
  width: 100%;
}
.service-pane[style*='block'] {
  display: block !important;
}
.service-pane .newscenter-list {
  width: 100%;
  position: relative;
}
.service-pane .newscenter-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-pane .newscenter-list li {
  width: calc(33.33% - 16px);
  margin: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-pane .newscenter-list li:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(10,79,161,0.13);
}
.service-pane .newscenter-list .news-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin: 0;
}
.service-pane .newscenter-list .news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.service-pane .newscenter-list li:hover .news-img img {
  transform: scale(1.05);
}
.service-pane .newscenter-list .news-text {
  padding: 16px;
}
.service-pane .newscenter-list .name {
  font-size: 18px;
  color: #222;
  margin: 0 0 12px 0;
  line-height: 1.4;
  height: 50px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.service-pane .newscenter-list .desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 12px 0;
  height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.service-pane .newscenter-list .date {
  font-size: 13px;
  color: #999;
}
@media (max-width: 900px) {
  .service-content {
    padding: 16px;
  }
  
  .service-pane .newscenter-list ul {
    gap: 16px;
  }
  
  .service-pane .newscenter-list li {
    width: calc(50% - 8px);
  }
  
  .service-pane .newscenter-list .news-img {
    height: 160px;
  }
  
  .service-pane .newscenter-list .name {
    font-size: 16px;
    height: 44px;
  }
  
  .service-pane .newscenter-list .desc {
    font-size: 13px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .service-pane .newscenter-list li {
    width: 100%;
  }
  
  .service-pane .newscenter-list .news-img {
    height: 180px;
  }
}
.service-video { width: 420px; position: relative; }
.service-video img { width: 100%; border-radius: 8px; }
.play-btn {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; background: url('../image/play_btn.png') no-repeat center center; background-size: contain;
}
.service-text { flex: 1; margin-left: 40px; }
.service-text h2 { font-size: 28px; color: #0a4fa1; margin-bottom: 16px; }
.service-text p { font-size: 16px; line-height: 2; }

.service-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: 100%;
  margin: 0 auto;
}
.service-item {
  display: flex;
  align-items: center;
  width: 900px;
  max-width: 90vw;
  gap: 32px;
  min-width: 320px;
  overflow: hidden;
}
.service-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.service-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.service-info {
  display: flex;
  align-items: center;
  flex: 1 1 0%;
  width: 100%;
  justify-content: flex-start;
  min-width: 0;
}
.service-name {
  font-size: 22px;
  font-weight: bold;
  color: #222;
  margin-bottom: 0;
  white-space: nowrap;
  width: 120px;
  text-align: left;
  flex-shrink: 0;
}
.service-divider {
  width: 60px;
  height: 1px;
  background: #e5e5e5;
  margin: 0 18px;
  min-width: 80px;
  max-width: 80px;
  flex-shrink: 0;
}
.service-desc {
  font-size: 18px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 480px;
  flex-shrink: 1;
}
@media (max-width: 600px) {
  .service-item {
    width: 98vw;
    gap: 8px;
    min-width: 0;
  }
  .service-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
  }
  .service-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  .service-name {
    font-size: 14px;
    width: 70px;
  }
  .service-desc {
    font-size: 11px;
    max-width: none;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  .service-divider {
    margin: 0 4px;
    min-width: 30px;
    max-width: 30px;
    width: 30px;
  }
}

/* 底部广告样式 */
.ad-footer { margin: 140px auto 380px auto; }
.ad-footer1 { margin: 140px auto 70px auto; }
.ad-footer-img { width: 100%; height: 120px;}
.ad-footer-img img {
  width: auto;
  height: auto;
}

/* 价值观/使命/愿景 样式 */
.vmg { max-width: 1200px; margin: 150px auto 100px auto; }
.vmg-list {
  max-width: 1100px;
  margin: 0 auto 80px auto;
}
.vmg-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 56px;
}
.vmg-title,
.vmg-title-main {
  width: 160px;
  min-width: 120px;
  font-size: 28px;
  color: #0a4fa1;
  font-weight: bold;
  text-align: right;
  margin-right: 40px;
  line-height: 1.2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vmg-title-main {
  font-size: 32px;
  color: #0a4fa1;
  font-weight: bold;
  text-align: right;
  margin-right: 40px;
  line-height: 1.2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vmg-title-main:after,
.vmg-title:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  margin-top: 10px;
  width: 120px;
  height: 6px;
  background: #235bb2;
  border-radius: 3px;
  z-index: 1;
}
.vmg-content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 60px;
  border-bottom: 2px solid #ededed;
  padding-bottom: 32px;
}
/* 
.vmg-row:last-child .vmg-content {
  border-bottom: none;
  padding-bottom: 0;
} */

.vmg-block {
  min-width: 220px;
  width: 800px;
  margin-bottom: 0;
}
.vmg-block-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin-bottom: 4px;
}
.vmg-block-sub {
  font-size: 15px;
  color: #888;
  margin-bottom: 4px;
}
.vmg-block-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .vmg-list {
    padding: 0 16px;
  }
  .vmg-row {
    flex-direction: column;
    margin-bottom: 32px;
  }
  .vmg-title,
  .vmg-title-main {
    font-size: 20px;
    margin-bottom: 24px;
    width: 100%;
    text-align: left;
    align-items: flex-start;
  }
  .vmg-title:after,
  .vmg-title-main:after {
    left: 0;
    transform: none;
  }
  .vmg-content {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .vmg-block {
    max-width: 100% !important;
    min-width: 0 !important;
    margin-bottom: 10px !important;
  }
  .vmg-block-title {
    font-size: 15px !important;
    margin-bottom: 2px !important;
  }
  .vmg-block-sub {
    font-size: 13px !important;
    margin-bottom: 2px !important;
  }
  .vmg-block-desc {
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
  }
}

/* 工作与生活 样式 */
.work-life-container {
  max-width: 1100px;
  margin: 100px auto 80px auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 16px;
}
.work-life-title {
  min-width: 160px;
  font-size: 28px;
  color: #0a4fa1;
  font-weight: bold;
  letter-spacing: 4px;
  text-align: left;
  line-height: 1.1;
  margin-top: 10px;
  flex-shrink: 0;
}
.work-life-list {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(10, 79, 161, 0.08);
  padding: 38px 48px 38px 48px;
  margin: 0;
  counter-reset: item;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.3s;
}
.work-life-list li {
  display: flex;
  align-items: flex-start;
  font-size: 26px;
  color: #222;
  font-weight: 600;
  line-height: 1.7;
}
.work-life-list li::before {
  content: counter(item) " ";
  counter-increment: item;
  color: #222;
  font-weight: bold;
  margin-right: 32px;
  display: inline-block;
}
.work-life-list span {
  display: block;
  font-size: 22px;
  color: #222;
  font-weight: 400;
  line-height: 2.2;
}
@media (max-width: 900px) {
  .work-life-container {
    flex-direction: column;
    gap: 18px;
    margin: 40px auto 30px auto;
    width: 100%;
  }
  .work-life-title {
    font-size: 32px;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .work-life-list {
    padding: 18px 10px 18px 10px;
    gap: 18px;
    width: 100%;
  }
  .work-life-list li {
    font-size: 16px;
  }
  .work-life-list li::before {
    font-size: 20px;
    margin-right: 12px;
    min-width: 20px;
  }
  .work-life-list span {
    font-size: 15px;
  }
}


.list{flex: 1;padding-left: 80px;margin-top: 40px;}
.list .item{}
.list .item .li{padding: 36px 0 40px;border-bottom: 1px solid #EBEBEB;display: block;}
.list .item .li:first-child{padding-top: 0;}
.list .item .li .title{font-size: 22px;color: #333;line-height: 38px;margin-bottom: 15px;}
.list .item .li .title .text{transition: .3s;}
.list .item .li .title .text span{color:#2495FC;}
.list .item .li .title .time{font-size: 16px;color: #888;}
.list .item .li .brief{font-size: 14px;color: #555;line-height: 24px;max-height: 48px;}

.list .item .li .title .text:hover{color: #2495fc;}
@media screen and (max-width:750px) {
    .list{padding-left: 0px;border-left: none;}
    .list .item .li .title{font-size: 30px;line-height: 1.6;display: block;}
    .list .item .li .title .time{font-size: 24px;display: block;}
    .list .item .li .brief{font-size: 26px;line-height: 1.6;max-height: 83.2px;}
}

.flex-between {
    display: flex;
    justify-content: space-between;
}



.digest {
  background: #fff;
  padding: 40px 0 60px 0;
}
.job-list-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0;
}

.job-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}
.job-card {
  background: #f6fcfe;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid #e0dcdb;
  padding: 0;
  width: 360px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 8px;
  overflow: hidden;
}
.job-card-main {
  background: #fff;
  border-radius: 10px 10px 0 0;
  padding: 16px 18px 10px 18px;
  border-bottom: none;
}
.job-card-footer {
  background: #f6fcfe;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  font-size: 15px;
  color: #888;
  padding: 10px 18px 12px 18px;
  border-radius: 0 0 12px 12px;
}
.job-card:hover {
  box-shadow: 0 8px 24px rgba(10,79,161,0.13), 0 2px 8px rgba(0,0,0,0.04);
  transform: translateY(-6px) scale(1.025);
  z-index: 2;
  border-color:rgb(196, 204, 215);
}
.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.job-title {
  color: #222;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: 600;
}
.job-salary {
  color: #ff4d4f;
  font-size: 22px;
  font-weight: bold;
  margin-left: 8px;
  letter-spacing: 1px;
}
.job-card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.job-tag {
  background: #f0f1f3;
  color: #888;
  font-size: 14px;
  border-radius: 6px;
  padding: 2px 12px;
  font-weight: 400;
  margin-left: 0;
}
.job-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 8px;
  vertical-align: middle;
  border: 1.5px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.job-user {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #222;
  font-weight: 500;
}
.job-location {
  color: #888;
  font-size: 15px;
  font-weight: 400;
}



.onboard-process-text ol > li {
  text-indent: 0 !important;
  margin-bottom: 12px;
}
.onboard-process-text ol > li > ol > li {
  text-indent: 2em !important;
  margin-bottom: 8px;
}

.team-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 900px;
}
.team-gallery-item {
  width: calc(25% - 14px);
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: #f6f6f6;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.team-gallery-item img,
.team-gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-gallery-item:hover {
  box-shadow: 0 8px 24px rgba(10,79,161,0.13);
  transform: scale(1.04);
  z-index: 2;
}
.team-gallery-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.team-gallery-modal.active {
  display: flex;
}
.team-gallery-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.team-gallery-modal-content img,
.team-gallery-modal-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
.team-gallery-modal-close {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  text-shadow: 0 2px 8px #000;
}
@media (max-width: 900px) {
  .team-gallery { max-width: 98vw; gap: 8px; }
  .team-gallery-item { width: calc(50% - 4px); }
}

.about-pane-structure .about-text img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
 

.honor-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 900px;
}
.honor-gallery-item {
  width: calc(25% - 14px);
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: #f6f6f6;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.honor-gallery-item img,
.thonor-gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.honor-gallery-item:hover {
  box-shadow: 0 8px 24px rgba(10,79,161,0.13);
  transform: scale(1.04);
  z-index: 2;
}

@media (max-width: 900px) {
  .honor-gallery { max-width: 98vw; gap: 8px; }
  .honor-gallery-item { width: calc(50% - 4px); }
}


.cooperation-cards {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin: 40px 0 60px 0;
}
.cooperation-card {
  background: #fff;
  border: 6px solid #e5e7ea;
  border-radius: 4px;
  width: 420px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.cooperation-card:hover {
  box-shadow: 0 8px 24px rgba(10,79,161,0.13);
  border-color: #235bb2;
  transform: translateY(-6px) scale(1.025);
  z-index: 2;
}
.cooperation-card-title {
  background: #235bb2;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 16px 0 12px 24px;
  border-radius: 2px 2px 0 0;
  letter-spacing: 1px;
}
.cooperation-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cooperation-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cooperation-card-desc {
  font-size: 16px;
  color: #444;
  padding: 18px 18px 18px 18px;
  background: #f8f9fa;
  border-radius: 0 0 2px 2px;
}
.cooperation-card-desc a {
  color: #235bb2;
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .cooperation-cards { flex-direction: column; align-items: center; gap: 24px; }
  .cooperation-card { width: 98vw; max-width: 420px; }
}

/* 汉堡按钮样式 */
.mobile-nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 10px;
  z-index: 1201;
}
.mobile-nav-toggle span {
  display: block;
  width: 28px;
  height: 4px;
  background: #0a4fa1;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
/* 遮罩层 */
.mobile-nav-mask {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1200;
}
.mobile-nav-mask.active {
  display: block;
}
/* 移动端导航菜单 */
@media (max-width: 900px) {
  .mobile-nav-toggle {
    display: flex;
  }
  .header-nav {
    position: fixed !important;
    left: -80vw !important;
    top: 0 !important;
    width: 80vw !important;
    max-width: 400px !important;
    height: 100vh !important;
    background: #fff !important;
    z-index: 9999 !important;
    display: block !important;
    transition: left 0.3s !important;
    padding-top: 60px !important;
  }
  .header-nav.mobile-open {
    left: 0 !important;
  }
  .header-nav ul {
    display: block !important;
  }
  .header-nav li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  .header-nav a {
    display: block;
    padding: 18px 24px;
    font-size: 18px;
    color: #0a4fa1;
    text-align: left;
  }
  .headerweb {
    position: relative;
    z-index: 1203;
  }
  .header-right {
    display: none;
  }
  header, .headerweb {
    overflow: visible !important;
  }
}

@media (max-width: 900px) {
  .flex-between {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 2px !important;
  }
  .title .text,
  .title .time,
  .brief {
    width: 100% !important;
    display: block !important;
    white-space: normal !important;
    word-break: break-all !important;
    overflow-wrap: break-word !important;
    font-size: 16px !important;
  }
  .title {
    font-size: 18px !important;
    line-height: 1.5 !important;
    margin-bottom: 8px !important;
  }
  .brief {
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 12px !important;
  }
}

@media (max-width: 900px) {
  .history-title,
  .digest-title {
    font-size: 18px !important;
    margin-top: 18px !important;
    margin-bottom: 12px !important;
    padding: 8px 0 !important;
  }
  .history ul,
  .digest ul {
    font-size: 14px !important;
    max-width: 98vw !important;
    padding: 0 4px !important;
  }
  .history ul li,
  .digest ul li {
    margin-bottom: 12px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
  }
}

@media (max-width: 900px) {
  .about-pane[style*="display:block"] {
    flex-direction: column;
    gap: 20px;
  }
  .about-video {
    width: 100%;
  }
  .about-text {
    width: 100%;
  }
}

.newscenter-list {
  width: 100%;
  position: relative;
}

.newscenter-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.newscenter-list li {
  width: calc(33.33% - 16px);
  margin: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.newscenter-list li:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(10,79,161,0.13);
}

.newscenter-list .news-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin: 0;
}

.newscenter-list .news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.newscenter-list li:hover .news-img img {
  transform: scale(1.05);
}

.newscenter-list .news-text {
  padding: 16px;
}

.newscenter-list .name {
  font-size: 18px;
  color: #222;
  margin: 0 0 12px 0;
  line-height: 1.4;
  height: 50px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.newscenter-list .desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 12px 0;
  height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.newscenter-list .date {
  font-size: 13px;
  color: #999;
}

@media (max-width: 900px) {
  .newscenter-list ul {
    gap: 16px;
  }
  
  .newscenter-list li {
    width: calc(50% - 8px);
  }
  
  .newscenter-list .news-img {
    height: 160px;
  }
  
  .newscenter-list .name {
    font-size: 16px;
    height: 44px;
  }
  
  .newscenter-list .desc {
    font-size: 13px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .newscenter-list li {
    width: 100%;
  }
  
  .newscenter-list .news-img {
    height: 180px;
  }
}

/* 确保切换时布局一致 */
.service-pane {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.service-pane[style*='none'] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.service-pane-gs,
.service-pane-hy {
  width: 100%;
}

/* 清除可能影响布局的样式 */
.service-pane .newscenter-list {
  margin: 0;
}

.service-pane .newscenter-list ul {
  margin: 0;
  padding: 0;
}

.col-sm-4 {
  box-sizing: border-box;
}