.e_navigationA-16 .p_level2Box {
  display: none;
  /* 默认隐藏 */
}

.e_navigationA-16 .p_navContent {
  display: none;
  /* 移动端面板默认隐藏 */
}

.e_navigationA-16 .p_navContent.show {
  display: block;
}

/* 语言下拉框默认隐藏 */

.p_navBox2 {
  width: 100%;
  display: flex;
  position: absolute;
  top: 90%;
  left: 0;
  padding: 0px;
  z-index: 99;
  display: none;
}

.p_navBox2 > .up_arr {
  width: 100%;
  height: 16px;
  position: relative;
}

.p_navBox2 > .up_arr:before {
  content: "";
  display: block;
  border-color: transparent transparent #ffffff transparent;
  border-style: solid;
  border-width: 8px;
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -8px;
}

.p_navBox2 ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  position: relative;
}

.p_navBox2 > .ej_list {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  padding: 10px 15px 15px 15px;
}

.p_navBox2.show {
  display: block;
}

/* 让左侧容器高度与右侧一致 */
/* 让左侧容器获得右侧撑开的高度（flex 拉伸） */
#c_static_001-1730786128041 .cbox-1-0 {
  display: flex;
  flex-direction: column;
  position: relative;
  /* 为内部绝对定位做准备 */
  overflow: hidden;
  /* 保证圆角裁剪等 */
}

/* 轮播整体绝对定位，填满左侧容器 */
#c_static_001-1730786128041 .e_bannerA-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 所有内部层级强制 100% 高度 */
#c_static_001-1730786128041 .e_bannerA-2 .swiper-container,
#c_static_001-1730786128041 .e_bannerA-2 .swiper-wrapper,
#c_static_001-1730786128041 .e_bannerA-2 .swiper-slide,
#c_static_001-1730786128041 .e_bannerA-2 .p_img {
  height: 100%;
}

#c_static_001-1730786128041 .e_bannerA-2 .swiper-slide {
  width: 100% !important;
  /* 保证每个 slide 宽度正确 */
}

/* 强制覆盖 Swiper 可能写入的内联高度 */
#c_static_001-1730786128041 .e_bannerA-2 .swiper-wrapper {
  height: 100% !important;
}

/* 图片铺满并保持比例裁剪 */
#c_static_001-1730786128041 .e_bannerA-2 .p_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* 侧边联系栏容器 */
.side-contact {
  position: fixed;
  right: 10px;
  bottom: 15%;
  z-index: 90;
  width: 50px;
  /* 对应原 --os */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* 联系人列表 */
.side-contact__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* 单个联系项 */
.side-contact__item {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: background 0.3s;
  position: relative;
}

.side-contact__item:hover {
  background: rgb(0, 43, 136);
}

.side-contact__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.side-contact__icon svg {
  fill: #666;
  transition: fill 0.3s;
}

.side-contact__item:hover .side-contact__icon svg {
  fill: #fff;
}

/* 提示文字气泡 */
.side-contact__tip {
  position: absolute;
  right: calc(100% + 5px);
  top: 50%;
  transform: translateY(-50%);
  background: rgb(0, 43, 136);
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  white-space: nowrap;
  font-size: 13px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  pointer-events: none;
}

.side-contact__tip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgb(0, 43, 136);
}

.side-contact__item:hover .side-contact__tip {
  opacity: 1;
  visibility: visible;
}

/* 在线客服按钮 */
.side-contact__btn {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.side-contact__btn:hover {
  background: rgb(0, 43, 136);
}

.side-contact__btn svg {
  fill: rgb(0, 43, 136);
  transition: fill 0.3s;
}

.side-contact__btn:hover svg {
  fill: #fff;
}

/* 回到顶部按钮 */
.side-contact__backtop {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.side-contact__backtop:hover {
  background: rgb(0, 43, 136);
}

.side-contact__backtop svg {
  fill: rgb(0, 43, 136);
  transition: fill 0.3s;
}

.side-contact__backtop:hover svg {
  fill: #fff;
}

/* 移动端适配（可选） */
@media (max-width: 768px) {
  #c_static_001-1704250205265{
    padding-bottom: 50px;
  }
  .side-contact {
    width: 100%;
    height: 50px;
    bottom: 0;
    right: 0;
    flex-direction: row;
    background: #fff;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.15);
    padding: 0;
  }

  .side-contact__list {
    flex: 1;
    flex-direction: row;
  }

  .side-contact__item {
    flex: 1;
    height: 50px;
    border-radius: 0;
    box-shadow: none;
    border-right: 1px solid #ddd;
  }

  .side-contact__item:last-child {
    border-right: none;
  }

  .side-contact__btn,
  .side-contact__backtop {
    border-radius: 0;
    box-shadow: none;
    border-left: 1px solid #ddd;
  }

  .side-contact__tip {
    right: auto;
    left: 50%;
    bottom: 100%;
    top: auto;
    transform: translateX(-50%) translateY(-5px);
  }

  .side-contact__tip::after {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border-left-color: transparent;
    border-top-color: rgb(0, 43, 136);
  }
}

/* 全局样式 */
.contact-section {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* 标题区域 */
.contact-header {
  margin-bottom: 60px;
}

.contact-tag {
  display: inline-block;
  background-color: #003366;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  margin-right: 8px;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 15px;
}

.contact-subtitle {
  color: #666666;
  font-size: 1rem;
  /* max-width: 800px; */
  line-height: 1.6;
}

/* 数据/联系信息卡片 */
.contact-item {
  display: flex;
  align-items: flex-start;
  /* margin-bottom: 30px; */
}

.contact-icon {
  color: #003366;
  font-size: 2rem;
  margin-right: 20px;
}

.contact-info h4 {
  font-size: 24px;
  color: #333333;
  margin-bottom: 5px;
  line-height: 1;
}

.contact-info .unit {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 8px;
}

.contact-info .desc {
  font-size: 0.9rem;
  color: #888888;
}

/* 响应式适配 */
@media (max-width: 992px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-info h4 {
    font-size: 1.8rem;
  }

  .contact-section::after {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .contact-header {
    text-align: center;
  }

  .contact-subtitle {
    margin: 0 auto;
    text-align: center;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .contact-section::after {
    display: none;
    /* 移动端隐藏背景纹理，更简洁 */
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 1.8rem;
  }

  .contact-info h4 {
    font-size: 1.5rem;
  }

  .contact-section {
    padding: 60px 0;
  }
}
