.area_main {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  font-size: 36px;
  color: #1c1563;
  font-family: "FZZongYi-M05S", "Microsoft YaHei", sans-serif;
}
.area_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
  -moz-transition-timing-function: linear !important;
  -ms-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.bannerSwiper {
  height: 689px;
}

.bannerSwiper img {
  width: 100%;
  height: 689px;
}

.showcase-section {
  width: 1600px;
  background: linear-gradient(
    to right,
    #0d47a1,
    #1565c0,
    #1976d2,
    #0d47a1
  ); /* 深蓝渐变背景 */
  padding: 40px 30px 20px;
  border-radius: 4px;
  position: relative;
  margin: 0 auto;
}

.showcase-section .swiper {
  width: 100%;
  height: 268px;
  padding-bottom: 40px !important; /* 为分页器留出空间 */
}

.caseSwiper .swiper-wrapper {
  height: 218px;
}

.showcase-section .swiper-slide {
  background-color: #fff;
  /* height: 200px; */
  overflow: hidden;
  border-radius: 2px;
}

.showcase-section .swiper-slide .swiper-pagination-bullet {
  background-color: #ffffff;
}

.showcase-section .caseSwiper .swiper-wrapper .swiper-slide,
.showcase-section .caseSwiper .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 200px; /* 固定高度 */
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-section .caseSwiper .swiper-wrapper .swiper-slide:hover img {
  transform: scale(1.1);
}

/* 自定义分页器样式 (扁平长条) */
.showcase-section .swiper-pagination-bullet {
  width: 30px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s;
}

.showcase-section .swiper-pagination-bullet-active {
  background: #fff;
  width: 40px; /* 选中时变长 */
}

@media (max-width: 768px) {
  .showcase-section .showcase-section {
    padding: 20px;
  }
  .showcase-section .swiper-slide img {
    height: 180px;
  }
}

/* 友情链接 Swiper 容器 */
.links-swiper {
  max-width: 1600px;
  height: 130px;
  margin: 0 auto 50px;
  padding: 10px 5px 50px 5px !important; /* 底部预留分页器位置 */
}

.links-swiper .swiper-wrapper {
  height: 100px;
}

.link-item a {
  background: #fff;
  border: 1px solid #e0e0e0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.link-item a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  border-color: #1a237e;
}

.link-item img {
  width: 100%;
  height: 100%;
  filter: grayscale(10%); /* 微微灰度，hover变彩也可 */
}
.link-item:hover img {
  filter: grayscale(0);
}

/* 友情链接的分页器颜色 (深蓝) */
.swiper-pagination.links-pagination .swiper-pagination-bullet {
  background: #ccc;
  width: 50px; /* 稍微短一点 */
}
.swiper-pagination.links-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #1a237e;
  width: 75px;
}

/* For IE9 and below */
.latest_activity .wrap .area_content .item h1 {
  width: 420px;
}

.con2 .wrap .right .area_content .news-list h1 {
  width: 28em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 1.6em;
  line-height: 1.6em;
}

/* For IE9+ and modern browsers */
@media screen and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE9+ */
  .latest_activity .wrap .area_content .item h1 {
    width: 420px;
  }

  .con2 .wrap .right .area_content .news-list h1 {
    width: 28em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 1.6em;
    line-height: 1.6em;
  }
}

/* For modern browsers (including Chrome) */
@supports (-ms-accelerator: true) {
  .latest_activity .wrap .area_content .item h1,
  .con2 .wrap .right .area_content .news-list h1 {
    width: 420px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 1.6em;
    line-height: 1.6em;
  }
}

.enterprise_performance {
  margin: 0 auto;
  width: 100%;
  max-width: 1600px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: linear-gradient(180deg, #1e5f9e 0%, #2d2d78 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 6px 6px rgba(0, 0, 0, 0.2);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  border-radius: 0.125rem;
  color: white;
  transition: transform 0.3s ease;
  cursor: default;
}

.card:hover {
  transform: scale(1.05);
}

/* 标题样式 */
.card h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.025em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 副标题样式 */
.card p.subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 数字样式 */
.card .number {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}

/* 单位样式 (如：人次+) */
.card .unit {
  font-size: 2.25rem;
  margin-left: 4px;
  font-weight: 700;
}

.contact-container {
  background-color: #9a8769;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-bar {
  max-width: 1600px;
  margin: 0 auto 50px;
  color: #fff;
  display: flex;
  overflow: hidden;
}

/* 左侧竖排文字区域 */
.contact-left {
  flex: 0 0 auto; /* 不放大不缩小 */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 25px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  /* 实现竖排文字 */
  writing-mode: vertical-lr;
  letter-spacing: 6px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* 联系信息主体区域 */
.contact-items-wrapper {
  flex: 1;
  display: flex;
  align-items: center; /* 垂直居中 */
  padding: 15px 0;
}

/* 分隔线 */
.contact-divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  height: 70px; /* 固定高度或根据设计调整 */
  margin: 0 5px;
}

/* 单个信息块 */
.contact-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
}

.contact-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  white-space: nowrap; /* 防止电话号码换行 */
}

.contact-info div {
  margin-bottom: 2px;
}

/* SVG 图标样式 */
.icon-svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* 响应式调整：联系栏 */
@media (max-width: 992px) {
  .contact-items-wrapper {
    flex-wrap: wrap;
  }
  .contact-item {
    flex: 1 1 40%; /* 平板两列 */
    margin-bottom: 15px;
  }
  .contact-divider {
    display: none; /* 小屏隐藏竖线 */
  }
  .contact-left {
    /* 平板模式下仍保持竖排或稍微调整 */
  }
}

@media (max-width: 768px) {
  .contact-bar {
    flex-direction: column;
  }
  .contact-left {
    writing-mode: horizontal-tb; /* 手机改横排 */
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
  }
  .contact-items-wrapper {
    flex-direction: column;
    padding: 20px 0;
    gap: 20px;
  }
  .contact-item {
    width: 100%;
    flex: auto;
  }

  /* 这里的现有样式 */
  .news-grid {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 20px;
  }
}

/* 容器 */
.news-container {
  max-width: 1600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
}

/* 网格布局：两列 */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* 响应式：小屏幕变单列 */
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-container {
    padding: 20px;
  }
}

/* --- 版块头部样式 --- */
.section-header {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
  border-bottom: 2px solid transparent; /* 预留边框位置 */
}

.section-title-zh {
  font-size: 28px;
  font-weight: 900; /* 极粗字体 */
  color: #1a237e; /* 深蓝色 */
  margin-right: 12px;
  letter-spacing: 1px;
  font-family: "FZZongYi-M05S", "Microsoft YaHei", sans-serif;
}

.section-title-en {
  font-size: 16px;
  color: #666;
  font-weight: 400;
  text-transform: uppercase; /* 英文大写 */
}

/* --- 图片区域 --- */
.featured-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin-bottom: 25px;
  position: relative;
}

.featured-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.featured-image:hover img {
  transform: scale(1.05);
}

/* 模拟图片上的文字覆盖层 (仅为了还原视觉效果，如果有真图可移除) */
.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  font-weight: bold;
  pointer-events: none;
}

/* --- 新闻列表 --- */
.news-list {
  list-style: none;
}

.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 两端对齐 */
  padding: 12px 0;
  border-bottom: 1px dashed #eee; /* 可选的分隔线 */
  cursor: pointer;
}

.news-item:hover .news-text {
  color: #1a237e;
}

/* 左侧：图标与标题 */
.news-left {
  display: flex;
  align-items: center;
  flex: 1; /* 占据剩余空间 */
  overflow: hidden; /* 防止文字溢出撑开 */
  padding-right: 10px;
}

/* 三角箭头图标 */
.arrow-icon {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #2c3e50; /* 深色箭头 */
  margin-right: 12px;
  flex-shrink: 0; /* 防止图标被压缩 */
}

.news-text {
  font-size: 18px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; /* 文字过长显示省略号 */
  transition: color 0.2s;
}

/* 右侧：日期 */
.news-date {
  font-size: 16px;
  color: #1a237e; /* 深蓝色日期 */
  font-weight: 500;
  flex-shrink: 0; /* 防止日期换行 */
  font-family: Arial, sans-serif; /* 数字用Arial更好看 */
}

/* --- 底部链接 --- */
.read-more-container {
  margin-top: 20px;
  text-align: right;
}

.read-more {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

.read-more:hover {
  color: #1a237e;
}

/* 长箭头 CSS 绘制 */
.long-arrow {
  display: inline-block;
  margin-left: 8px;
  position: relative;
  width: 30px;
  height: 1px;
  background-color: #1565c0; /* 箭头颜色 */
}

.long-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #1565c0;
  border-right: 1px solid #1565c0;
  transform: rotate(45deg);
}
