.index_yycj li{width:24%; height:200px; background:#eee; border-radius:5px; margin-top:20px; position: relative; overflow:hidden;}
.index_yycj li:first-child{width:49.3%;}
.index_yycj li .pic{width:100%; height:100%;}
.index_yycj li .pic img{width:100%; height:100%; object-fit: cover; display:block; transition:0.3s all;}
.index_yycj li:hover .pic img{-webkit-transform:scale(1.1);
  moz-transform:scale(1.1);
  -o-transform:scale(1.1);
  transform:scale(1.1);}
.index_yycj li .txt{ position:absolute; left:0; top:0; right:0; bottom:0; background:rgba(0,0,0,0.3); color:#fff; font-size:.22rem; font-weight:bold; box-sizing:border-box; transition:0.3s all;}
.index_yycj li:hover .txt{background:rgba(0,0,0,0.6);}
.index_yycj {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index_yycj li .txt {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  box-sizing: border-box;
  transition: 0.3s all;
}

/* Banner样式 */
.about-banner {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 81, 182, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-position {
  position: absolute;
  bottom: 30px;
  left: 10%;
  color: #fff;
  font-size: 14px;
}

.banner-position a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

.banner-position a:hover {
  text-decoration: underline;
}

.banner-title {
  text-align: center;
}

.banner-title h1 {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* 企业简介样式 */
.company-overview {
  padding: 80px 0;
  background: #fff;
}

.section-dot {
  width: 10px;
  height: 10px;
  background: #0051B6;
  border-radius: 50%;
  margin-bottom: 20px;
}

.overview-content {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

.overview-image {
  flex: 1;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.overview-image img {
  width: 100%;
  height: auto;
  display: block;
}

.overview-text {
  flex: 1;
  max-width: 50%;
}

/* 关于我们样式 */
.about {
  position: relative;
  padding: 100px 0;
  background: #f8f9fa;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
}

.about-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 500px;
  gap: 0;
}

.about-text {
  /*! flex: 0 0 80%; */
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.74);
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: slideInLeft 1s ease-out forwards;
}

/* 查看更多按钮样式 */
.about-more {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background: #0051B6;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.about-more:hover {
  background: #003a80;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 81, 182, 0.3);
}

/* 内容滑入动画 */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-desc {
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

.about-desc p {
  margin-bottom: 15px;
}

.about-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  /*! min-width: 140px; */
  flex: 1;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: #0051B6;
  margin-bottom: 10px;
  line-height: 1;
  animation: countUp 2s ease-out forwards;
  opacity: 0;
}

/* 数字滚动动画 */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 添加+号 */
.stat-number::after {
  content: '+';
  font-size: 24px;
  vertical-align: top;
  margin-left: 8px;
  color: #0051B6;
}

/* 特殊处理"成立于"数字，不需要+号 */
.stat-item:nth-child(1) .stat-number::after {
  content: '';
}

.stat-label {
  font-size: 16px;
  color: #666;
}

/* 合作伙伴样式 */
.partners {
  padding: 80px 0;
  background: #fff;
}

.partners-list {
  display: flex;
  justify-content: center;
  align-items: center;
  /*! gap: 30px; */
  flex-wrap: wrap;
}

.partner-item {
  flex: 1;
  min-width: 50px;
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
}

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

.partner-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-item:hover img {
  filter: grayscale(0%);
}
.btext{font-size:28px;}

/* 关于我们页面样式 */
.about {
  padding: 60px 0;
  color: #fff;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 81, 182, 0.7);
  z-index: 1;
}

.about .wrap2 {
  position: relative;
  z-index: 2;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  max-width: 800px;
}

.about-desc {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
}

.about-desc p {
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fafafa;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
}

.stat-item {
  text-align: center;
  margin-bottom: 20px;
  flex: 1;
  min-width: 150px;
}




/* 企业文化样式 */
.culture-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.culture-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  text-align: center;
}

.culture-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #0051B6;
}

.culture-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: #e8f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #0051B6;
  transition: all 0.3s ease;
}
.culture-icon .iconfont {font-size:60px;}
.culture-item:hover .culture-icon {
  background-color: #0051B6;
  color: #fff;
  transform: scale(1.1);
}

.culture-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.culture-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 核心团队样式 */
.team-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-photo {
  height: 200px;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.team-position {
  font-size: 14px;
  color: #0051B6;
  margin-bottom: 10px;
  font-weight: bold;
}

.team-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* 发展历程样式 */
.timeline {
  position: relative;
  margin-top: 50px;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #0051B6;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 40px;
}

.timeline-year {
  position: absolute;
  left: -60px;
  top: 0;
  width: 80px;
  height: 40px;
  line-height: 40px;
  background-color: #0051B6;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  font-weight: bold;
  font-size: 16px;
}

.timeline-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 产品架构样式 */
.product-architecture {
  margin-top: 50px;
}

.architecture-tier {
  margin-bottom: 40px;
}

.tier-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.tier-content {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.tier-box {
  background: #fff;
  padding: 20px 40px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  color: #333;
  text-align: center;
  transition: all 0.3s ease;
}

.tier-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.tier-box.primary {
  background: #0051B6;
  color: #fff;
  font-weight: bold;
}

.terminal-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.terminal-item {
  text-align: center;
}

.terminal-item img {
  max-width: 80px;
  height: auto;
  transition: all 0.3s ease;
}

.terminal-item:hover img {
  transform: scale(1.1);
}

/* 响应式设计 */
@media screen and (max-width: 1024px) {
  .culture-container,
  .team-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .about-desc {
    font-size: 14px;
  }
  
  .about-stats {
    /*! flex-direction: column; */
    align-items: center;
  }
  
  .stat-item {
    margin-bottom: 30px;
    width: 38%;
    flex: auto;
    box-sizing: border-box;
  }
  
  .culture-container,
  .team-container {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    padding-left: 20px;
  }
  
  .timeline-year {
    left: -10px;
    width: 60px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .tier-content {
    flex-direction: column;
    align-items: center;
  }
  
  .tier-box {
    width: 100%;
    max-width: 300px;
  }
}
.indexabt  .about-stats{background: none;}
.indexabt .about-text{max-width: 100%;}
/* 解决方案页面样式 */
.solution .solution-list {
  margin-top: 60px;
}

.solution .solution-item {
  margin-bottom: 40px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.solution .solution-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.solution .solution-item a {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.solution .solution-img {
  flex: 0 0 40%;
  overflow: hidden;
  position: relative;
}

.solution .solution-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solution .solution-item:hover .solution-img img {
  transform: scale(1.1);
}

.solution .solution-text {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution .solution-text h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.solution .solution-item:hover .solution-text h2 {
  color: #0051B6;
}

.solution .solution-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
  flex: 1;
}

.solution .view-more {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #0051B6;
  font-weight: bold;
  transition: all 0.3s ease;
}

.solution .view-more:hover {
  transform: translateX(5px);
  color: #003a80;
}

.solution .view-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.solution .view-more:hover i {
  transform: translateX(3px);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-text {
    flex: 1 1 100%;
    padding: 0px 10px;
  }
  
  .about-stats {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0px;
  }
  
  .partners-list {
    justify-content: center;
  }
  
  .partner-item {
    min-width: 120px;
    padding: 15px;
  }
  
  /* 解决方案页面响应式 */
  .solution .solution-item a {
    flex-direction: column;
  }
  
  .solution .solution-img {
    flex: 0 0 auto;
    height: 200px;
  }
  
  .solution .solution-text {
    padding: 20px;
  }
  
  .solution .solution-text h2 {
    font-size: 20px;
  }
}

/* 新闻页面样式 - 时间轴风格 */
.news .news-timeline {
  margin-top: 60px;
  position: relative;
}

/* 时间轴线 */
.news .news-timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
}

.news .news-timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 60px;
}

/* 时间轴日期 */
.news .news-timeline-date {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  text-align: center;
}

.news .news-timeline-date .date {
  display: block;
  font-size: 14px;
  color: #999;
  font-weight: bold;
  background: #fff;
  padding: 10px 0;
}

/* 新的日期样式 - 年月和日分开显示 */
.news .news-timeline-date .date-year {
  display: block;
  font-size: 18px;
  color: #333;
  font-weight: bold;
  background: #f8f9fa;
  padding: 8px 0;
  line-height: 1.2;
  border-radius: 4px 4px 0 0;
  margin-bottom: 2px;
}

.news .news-timeline-date .date-day {
  display: block;
  font-size: 28px;
  color: #0051B6;
  font-weight: bold;
  background: #f8f9fa;
  padding: 10px 0;
  line-height: 1;
  border-radius: 0 0 4px 4px;
}

/* 时间轴内容 */
.news .news-timeline-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 3px solid #fff;
}

.news .news-timeline-item:hover .news-timeline-content {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left-color: #0051B6;
}

/* 标题和描述 */
.news .news-timeline-content a {
  text-decoration: none;
  color: white;
}

.news .news-timeline-content h2 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.news .news-timeline-item:hover .news-timeline-content h2 {
  color: #0051B6;
}

.news .news-timeline-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 元信息 */
.news .news-timeline-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}

.news .news-read {
  font-size: 12px;
  color: white;
  display: flex;
  align-items: center;
}

.news .news-read i {
  margin-right: 5px;
  font-size: 14px;
}

.news .news-more {
  font-size: 16px;
  color: #0051B6;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  background: #0051B6;
  padding: 8px 15px;
  border-radius: 4px;
  color: white;
}

.news .news-more:hover {
  transform: translateX(5px);
  color: #fff;
  background: #0051B6;
}

.news .news-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.news .news-more:hover i {
  transform: translateX(3px);
}

/* 新闻页面响应式 */
@media (max-width: 768px) {
  .news .news-timeline-item {
    padding-left: 90px;
  }
  
  .news .news-timeline::before {
    left: 15px;
  }
  
  .news .news-timeline-date {
    width: 70px;
  }
  
  .news .news-timeline-date .date {
    font-size: 12px;
  }
  
  .news .news-timeline-date .date-year {
    font-size: 16px;
    padding: 6px 0;
  }
  
  .news .news-timeline-date .date-day {
    font-size: 24px;
    padding: 8px 0;
  }
  
  /* 移动端查看详情按钮样式 */
  .news .news-more {
    font-size: 14px;
    padding: 6px 12px;
  }
  
  .news .news-timeline-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .news .news-timeline-content {
    padding: 20px;
  }
  
  .news .news-timeline-content h2 {
    font-size: 18px;
  }
  
  .news .news-timeline-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* 新闻详情页样式 */
.news-detail-banner {
  background: linear-gradient(135deg, #0051B6 0%, #003a80 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 50px;
}

.news-detail-banner .breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.news-detail-banner .breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.news-detail-banner .breadcrumb a:hover {
  opacity: 0.7;
}

.news-detail-banner .breadcrumb span {
  opacity: 0.8;
}

.news-detail-banner .page-title {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}

/* 新闻详情内容 */
.news-detail-wrap {
  max-width: 900px;
  margin: 0 auto 60px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  padding: 50px;
}

/* 新闻详情头部 */
.news-detail-header {
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.news-detail-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.news-detail-meta {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.news-detail-date,
.news-detail-views {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-detail-date i,
.news-detail-views i {
  color: #0051B6;
  font-size: 16px;
}

/* 新闻详情正文 */
.news-detail-body {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}

.news-detail-body p {
  margin-bottom: 20px;
}

.news-detail-body img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

/* 上一篇/下一篇导航 */
.news-detail-nav {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 40px;
  border-top: 2px solid #f0f0f0;
}

.nav-prev,
.nav-next {
  flex: 1;
}

.nav-prev a,
.nav-next a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}

.nav-prev a:hover,
.nav-next a:hover {
  background: #f8f9fa;
  border-color: #0051B6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 81, 182, 0.1);
}

.nav-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  font-weight: bold;
}

.nav-title {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
}

.nav-prev a:hover .nav-title,
.nav-next a:hover .nav-title {
  color: #0051B6;
}

/* 热门资讯推荐 */
.news-recommend {
  max-width: 900px;
  margin: 0 auto 80px;
}

.recommend-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.recommend-line {
  flex: 1;
  height: 2px;
  background: #f0f0f0;
}

.recommend-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.recommend-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.recommend-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.recommend-item a {
  display: block;
  padding: 25px;
  text-decoration: none;
  color: #333;
}

.recommend-item-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}

.recommend-item:hover .recommend-item-title {
  color: #0051B6;
}

/* 新闻详情页响应式设计 */
@media (max-width: 768px) {
  .banner .swiper-button-next,  .banner .swiper-button-prev{
    height: 27px;
  }
  .banner .text{display: block;top:40%;}
  .banner .text h3{font-size:1.2rem}
   .banner .text  .btext{font-size:1rem}
  .news-detail-banner {
    padding: 50px 0;
    margin-bottom: 30px;
  }
  
  .news-detail-banner .page-title {
    font-size: 28px;
  }
  
  .news-detail-wrap {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  
  .news-detail-title {
    font-size: 24px;
  }
  
  .news-detail-meta {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .news-detail-body {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .news-detail-nav {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav-prev a,
  .nav-next a {
    padding: 15px;
  }
  
  .nav-title {
    font-size: 15px;
  }
  
  .recommend-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .recommend-list {
    grid-template-columns: 1fr;
  }
}

/* Job Page Styles */
.job-banner {
  position: relative;
  height: 300px;
  background: linear-gradient(135deg, #0051b6 0%, #0077ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.job-banner .banner-content {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.job-banner .breadcrumb {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.job-banner .breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.job-banner .breadcrumb a:hover {
  text-decoration: underline;
}

.job-banner .page-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.job-wrap {
  padding: 60px 0;
}

.job-intro {
  text-align: center;
  margin-bottom: 60px;
}

.job-intro .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.job-intro .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #0051b6;
}

.job-intro .intro-text {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.job-list {
  max-width: 900px;
  margin: 0 auto;
}

.job-item {
  margin-bottom: 20px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.job-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.job-title {
  padding: 25px 30px;
  background: #f9f9f9;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
  transition: background-color 0.3s ease;
}

.job-title:hover {
  background: #f5f5f5;
}

.job-title h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.job-arrow {
  font-size: 12px;
  color: #666;
  transition: transform 0.3s ease;
}

.job-content {
  display: none;
  padding: 30px;
  background: #fff;
}

.job-info .job-meta {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

.job-info .job-meta span {
  display: inline-block;
  margin-right: 30px;
  font-size: 14px;
  color: #666;
}

.job-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 25px 0 15px;
}

.job-info h4:first-of-type {
  margin-top: 0;
}

.job-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-info li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.job-info li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #0051b6;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .job-banner {
    height: 250px;
  }

  .job-banner .page-title {
    font-size: 28px;
  }

  .job-banner .breadcrumb {
    font-size: 13px;
  }

  .job-wrap {
    padding: 40px 0;
  }

  .job-intro .section-title {
    font-size: 26px;
  }

  .job-intro .intro-text {
    font-size: 15px;
    padding: 0 20px;
  }

  .job-title {
    padding: 20px;
  }

  .job-title h3 {
    font-size: 18px;
  }

  .job-content {
    padding: 20px;
  }

  .job-info .job-meta span {
    display: block;
    margin-right: 0;
    margin-bottom: 8px;
  }

  .job-info h4 {
    font-size: 15px;
  }

  .job-info li {
    font-size: 13px;
    padding-left: 15px;
  }
}

@media (max-width: 480px) {
  .job-banner {
    height: 200px;
  }

  .job-banner .page-title {
    font-size: 24px;
  }

  .job-intro .section-title {
    font-size: 22px;
  }

  .job-title {
    padding: 15px 15px;
  }

  .job-title h3 {
    font-size: 16px;
  }

  .job-content {
    padding: 15px;
  }
}

/* Contact Page Styles */
.contact-banner {
  position: relative;
  height: 350px;
  background: linear-gradient(135deg, #0051b6 0%, #0077ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.contact-banner .banner-content {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.contact-banner .breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-banner .breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.contact-banner .breadcrumb a:hover {
  text-decoration: underline;
}

.contact-banner .page-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
}

.contact-wrap {
  padding: 80px 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 70px;
}

.contact-intro .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.contact-intro .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #0051b6;
}

.contact-intro .intro-text {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-item:hover {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  border-color: #eaeaea;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: #0051b6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 24px;
  flex-shrink: 0;
}
.contact-icon i{font-size:28px;}
/* Icon placeholders - replace with actual icon font */
.icon-phone::before {
  content: '📞';
}

.icon-address::before {
  content: '📍';
}

.icon-email::before {
  content: '📧';
}

.icon-time::before {
  content: '⏰';
}

.contact-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px;
}

.contact-text p {
  font-size: 15px;
  color: #666;
  margin: 5px 0;
  line-height: 1.6;
}

.contact-qrcode {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qrcode-card {
  width: 100%;
  max-width: 300px;
  padding: 40px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #eaeaea;
}

.qrcode-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin: 0 0 25px;
}

.qrcode-image {
  margin-bottom: 25px;
}

.qrcode-placeholder {
  width: 180px;
  height: 180px;
  background: #f5f5f5;
  border: 2px dashed #ccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.qrcode-placeholder img{max-width:100%}
.qrcode-placeholder span {
  font-size: 14px;
  color: #999;
  text-align: center;
}

.qrcode-desc {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.contact-map {
  margin-top: 80px;
}

.map-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0 0 30px;
  text-align: center;
}

.map-container {
  height: 400px;
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #eaeaea;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #eaeaea 100%);
}

.map-placeholder span {
  font-size: 16px;
  color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .qrcode-card {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
.f_bg .h2::after{left:45%;}
  .company-overview,.i_case_bg{padding:40px 0px;}
  .overview-content{gap:inherit;flex-wrap: wrap;margin-top: 0px;}
  .overview-image,.overview-text{flex:auto;max-width: 100%;margin-top:30px;}
  .contact-banner {
    height: 300px;
  }

  .contact-banner .page-title {
    font-size: 34px;
  }

  .contact-wrap {
    padding: 60px 0;
  }

  .contact-intro {
    margin-bottom: 50px;
  }

  .contact-intro .section-title {
    font-size: 28px;
  }

  .contact-intro .intro-text {
    font-size: 16px;
    padding: 0 20px;
  }

  .contact-item {
    padding: 25px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .contact-text h3 {
    font-size: 18px;
  }

  .contact-text p {
    font-size: 14px;
  }

  .qrcode-card {
    padding: 35px 25px;
  }

  .qrcode-title {
    font-size: 20px;
  }

  .qrcode-placeholder {
    width: 160px;
    height: 160px;
  }

  .map-container {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-banner {
    height: 250px;
  }

  .contact-banner .page-title {
    font-size: 28px;
  }

  .contact-banner .breadcrumb {
    font-size: 13px;
  }

  .contact-wrap {
    padding: 40px 0;
  }

  .contact-intro .section-title {
    font-size: 24px;
  }

  .contact-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin: 0 0 20px;
  }

  .qrcode-card {
    padding: 30px 20px;
  }

  .qrcode-placeholder {
    width: 140px;
    height: 140px;
  }

  .map-container {
    height: 300px;
  }
}