@charset "UTF-8";
/* 集团简介模板 jtjj 样式（about-content-section 主内容区域） */

.about-content-section {
  padding: 3rem 0;
  background: url("images/关于森工/简介.svg") center/100% 100% no-repeat;
  min-height: 60vh;
}

.about-content-section .container {
  width: 90%;
  padding: 0;
}

.about-content-section .about-main-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.about-content-section .about-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.about-content-section .about-left .about-left-slide {
  display: none;
  flex-direction: column;
  gap: 2rem;
}

.about-content-section .about-left .about-left-slide.active {
  display: flex;
}

.about-content-section .about-left .about-left-item {
  padding: 2rem;
  border-radius: 8px;
}

.about-content-section .about-left .about-left-item .left-title {
  font-size: 3rem;
  font-weight: 700;
  color: rgb(15, 89, 146);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 2px;
}

.about-content-section .about-left .about-left-item .left-desc {
  font-size: 1.4rem;
  color: rgb(51, 51, 51);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.about-content-section .about-left .about-left-item .left-sub-title {
  font-size: 3rem;
  font-weight: 600;
  color: rgb(20, 121, 166);
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: 2px;
  text-align: center;
}

.about-content-section .about-left .about-left-item .left-sub-desc {
  font-size: 1.4rem;
  color: rgb(51, 51, 51);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.about-content-section .about-left .about-left-item .left-sub-desc::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgb(41, 132, 211), rgba(255, 255, 255, 0));
}

.about-content-section .about-left .about-left-indicators {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
}

.about-content-section .about-left .about-left-indicators .indicator-dot {
  width: 3rem;
  height: 0.25rem;
  background: rgba(204, 227, 255, 0.5);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-content-section .about-left .about-left-indicators .indicator-dot.active {
  background: linear-gradient(90deg, rgb(41, 132, 211) 0%, rgb(15, 223, 172) 100%);
}

.about-content-section .about-left .about-left-indicators .indicator-dot:hover {
  background: rgba(204, 227, 255, 0.8);
}

.about-content-section .about-right {
  flex: 1;
  border-radius: 8px;
  padding: 3rem;
  letter-spacing: 2px;
}

.about-content-section .about-right .about-right-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  text-align: right;
}

.about-content-section .about-right .about-right-header .right-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2834A8;
  margin-bottom: 0.5rem;
}

.about-content-section .about-right .about-right-header .right-subtitle {
  font-size: 1.5rem;
  color: #999;
  font-weight: 400;
}

.about-content-section .about-right .about-right-content .content-text {
  font-size: 1.5rem;
  line-height: 2;
  color: #333;
  margin-bottom: 2rem;
  text-align: justify;
  text-indent: 2em;
}

.about-content-section .about-right .about-right-content .content-image {
  margin: 3rem auto;
  text-align: center;
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.about-content-section .about-right .about-right-content .content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block;
}

.about-content-section .about-right .about-right-content .content-image .content-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  border-radius: 8px;
  pointer-events: none;
}

/* 新闻中心页面样式 */
/* Banner区域 */
.news-banner {
  height: 75vh;
  background: linear-gradient(135deg, rgba(41, 101, 211, 0.9) 0%, rgba(15, 158, 121, 0.9) 100%), url("../images/新闻中心/banner.png");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
}
.news-banner .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.news-banner .banner-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.news-banner .banner-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}
.news-banner .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}
.news-banner .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-banner .breadcrumb a:hover {
  color: white;
}
.news-banner .breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}
.news-banner .breadcrumb .current {
  color: white;
}

/* Tab导航区域 */
.news-tabs-section {
  background: linear-gradient(to right, rgb(41, 101, 211), rgb(15, 223, 172));
  padding: 0;
}
.news-tabs-section .news-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 0;
}
.news-tabs-section .news-tab {
  flex: 1;
  padding: 2rem 0;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}
.news-tabs-section .news-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}
.news-tabs-section .news-tab.active {
  transform: translateY(-3px);
}
.news-tabs-section .news-tab.active::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background: white;
}

