/* 页面布局样式 */
.page-nav {
  display: flex;
  justify-content: center;
  padding: 0 0 40px 0;
  gap: 10px;
  margin-top: 140px;
}

.nav-item {
  color: #666;
  text-decoration: none;
}

.nav-item.active {
  color: #04397b;
  font-weight: bold;
}

.nav-separator {
  color: #ccc;
}

.content-wrapper {
  margin: 0 auto;

  display: flex;
  flex-direction: column;
}
.content-wrapper .company,
.content-wrapper .production {
  display: flex;
  gap: 30px;
  align-items: flex-start;  /* 添加顶部对齐 */
}
.content-wrapper .company-image-inner {
  flex: 1;  /* 改为 flex: 1 代表占据剩余空间的一半 */
  margin-bottom: 60px;
  width: 50%;  /* 确保宽度为50% */
}
.content-wrapper .company-image-inner img {
  width: 100%;
  max-height: 315px;
  min-width: 549px;
  height: auto;
  object-fit: cover;  /* 确保图片填充容器且不变形 */
}
.content-wrapper .company-intro {
  margin-bottom: 30px;
  font-size: 14px;
  flex: 1;  /* 改为 flex: 1 代表占据剩余空间的一半 */
  margin-bottom: 30px;
  width: 50%;  /* 确保宽度为50% */
}
.content-wrapper .company-intro .intro-text {
  margin-bottom: 10px;
  text-indent: 2em;
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
}
.content-wrapper .production-intro {
  width: 543px;
  text-align: justify;
  width: 50%;  /* 确保宽度为50% */
}
.content-wrapper .production-intro p {
  margin-bottom: 10px;
  text-indent: 2em;
  font-size: 14px;
  line-height: 24px;
}

/* 图片布局 */
.company-image {
  width: 100%;
  margin-bottom: 30px;
}

.company-image img {
  width: 100%;
  height: auto;
}

.production-image {
  width: 100%;
  margin: 30px 0;
  display: flex;
  gap: 30px;
}

/* 合作伙伴图片组 */
.partner-images {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.partner-item {
  flex: 1;
  text-align: center;
}

.partner-item img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  height: 225px;
}

.partner-desc {
  text-align: center;
}

.partner-desc h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.partner-desc p {
  font-size: 14px;
  color: #666;
  text-indent: 2em;
  text-align: left;
  text-align: justify;
}

/* 团队部分样式 */
.team-section {
  padding: 60px 0 0 0;
  background: #fff;
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
}

.header-tag {
  display: inline-block;
  padding: 5px 40px;
  background: #0047cc;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
}

.section-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}
.section-title h2 {
  margin-bottom: 10px;
  color: #fff;
}
.section-title .en-title {
  font-size: 18px;
  opacity: 0.8;
  color: #fff;
  padding-bottom: 40px;
}
.team-desc {
  color: #0000FF;
  font-size: 16px;
}

.team-name {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}

/* 团队特点样式 */
.team-features {
  display: flex;
  gap: 20px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
  width: 33%;
}
.feature-item h3 {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.feature-item p {
  font-size: 14px;
  line-height: 24px;
  /* text-align: justify;
  text-align-last: justify; */
}

.feature-icon {
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  margin-top: -70px;
}

.feature-icon img {
  text-align: center;
  margin-left: 25px;
}

/* 管理团队样式 */
.management-section {
  padding: 60px 0 100px 0;
  background: #f8f9fa;
}

.management-content {
  margin: 0 auto;
}

.company-info {
  margin-bottom: 30px;
}

.company-info h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.management-list {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.management-group {
  text-align: center;
  padding: 20px;
}

.management-group h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #333;
}

.management-group p {
  font-size: 18px;
  color: #666;
  margin: 0;
}

/* 企业荣誉 */
.corporate-honors {
  margin: 50px auto;
}

.honors-title {
  font-size: 24px;
  margin-bottom: 30px;
}

.honors-gallery {
  display: flex;
  gap: 30px;
}

/* 左侧大图 */
.honor-main {
  flex: 0 0 30%;
}

.honor-item.large img {
  width: 100%;
  height: auto;
}

/* 右侧小图网格 */
.honor-grid {
  flex: 0 0 66%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.honor-item:hover {
  transform: translateY(-5px);
}

.honor-item img {
  width: 100%;
  height: 100%;
}

.honor-item.small {
}

/* 响应式设计 */
@media (max-width: 768px) {
  .honors-gallery {
    flex-direction: column;
  }

  .honor-main,
  .honor-grid {
    flex: 0 0 100%;
  }

  .honor-grid {
    grid-template-columns: 1fr;
  }
}

/* 部门职能标题 */

/* 部门职能部分样式 */
.organization-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.department-wrapper {
  position: relative;
  display: flex;
  min-height: 390px;
}

.department-image {
  flex: 0 0 55%;
  position: relative;
  overflow: hidden;
  height: 390px;
}

.department-image img {
  width: 660px;
  height: 390px;
  object-fit: cover;
}

.department-title {
  position: absolute;
  left: 40px;
  bottom: 40px;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.department-overlay {
  position: absolute;
  top: 24px;
  left: 420px;
  right: 0;
  bottom: 25px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}

.department-overlay p {
  color: #333;
  font-size: 14px;
}

.department-overlay strong {
  color: #04397b;
  font-weight: 600;
  margin-right: 5px;
}

/* 响应式布局 */
@media (max-width: 768px) {
  .department-wrapper {
    flex-direction: column;
  }

  .department-image,
  .department-content {
    flex: 0 0 100%;
  }

  .department-image {
    height: 300px;
  }

  .department-title {
    left: 20px;
    bottom: 20px;
    font-size: 28px;
  }

  .department-overlay {
    padding: 20px;
  }
}

/* 组织架构图部分 */
.org-chart {
}

.chart-title {
  text-align: center;
  font-size: 20px;
  color: #333;
  margin-bottom: 30px;
}

.chart-containers {
  width:  900px;
  margin: 0 auto;
  padding-top: 60px;
}
.chart-container img {
  width: 100%;
  height: auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .organization-section {
    padding: 15px;
  }

  .department-functions {
    padding: 20px;
  }

  .chart-container {
    min-height: 400px;
  }
}

/* 发展历程部分样式 */
.development-section {
  position: relative;
  padding: 40px 0 80px 0;
  background-size: cover;
}

.development-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 51, 102, 0.8);
  background-image: url("../images/tmp1665889424_2203623_s.png");
  background-size: cover;
}

.section-title {
  position: relative;
  text-align: center;
}

.development-section .section-title h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.timeline-container {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline-item {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.2) none no-repeat left top;
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.timeline-date {
  margin: 0 40px 0 400px;
}

.timeline-date .date {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-right: 15px;
}

.timeline-date .year {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.timeline-content {
  flex: 1;
  font-size: 18px;
  color: #fff;
  padding-left: 30px;
}

/* 响应式布局 */
@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }

  .timeline-date {
    justify-content: center;
    margin-bottom: 15px;
  }

  .timeline-date .date {
    font-size: 36px;
  }

  .timeline-date .year {
    font-size: 20px;
  }

  .timeline-content {
    padding-left: 0;
    font-size: 16px;
  }
}

.honor-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.honor-item:hover {
  transform: scale(1.02);
}

.honor-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.honor-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.honor-caption {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.honor-item:hover .honor-caption {
  opacity: 1;
}
/* css动画过渡效果 */
.company-image-inner img,
.partner-item img,
.honor-item img {
    transition: transform 0.3s ease;
}

.company-image-inner img:hover,
.partner-item img:hover,
.honor-item img:hover {
    transform: scale(1.05);
}

.timeline-item {
    transition: all 0.3s ease;
}

.management-group {
    transition: all 0.3s ease;
}

.management-group:hover {
    transform: translateY(-3px);
}