body {
  background-image: url('../../images/banner/04.png');
}
#header-container {
  border-bottom: 0px solid rgba(51, 51, 51, 0.1);
}
#main-content {
  background-color: #F6F6F6;
}
.banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.banner-section .banner-slider {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: left -130px;
  background-repeat: no-repeat;
}
.banner-section .banner-slider .banner-item {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-section .banner-slider .banner-item .banner-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1550px;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 15px;
}
.banner-section .banner-slider .banner-item .banner-content-wrapper .banner-text-box {
  width: 870px;
  color: #fff;
  border-radius: 4px;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 33px;
  justify-content: space-between;
  height: 550px;
  font-weight: 400;
  font-size: 22px;
  color: #37373C;
  line-height: 36px;
  padding: 35px 0;
}
.banner-section .banner-slider .banner-item .banner-content-wrapper .banner-text-box p {
  font-size: 21px;
  line-height: 30px;
  text-align: justify;
}
.banner-section .banner-slider .banner-item .banner-content-wrapper .banner-text-box .top-title {
  margin-bottom: 25px;
  padding-bottom: 15px;
  display: inline-block;
  font-weight: bold;
  font-size: 43px;
  color: #0044B5;
}
.banner-section .banner-slider .banner-item .banner-content-wrapper .banner-text-box .button-group {
  display: flex;
  gap: 25px;
  justify-content: flex-start;
}
.banner-section .banner-slider .banner-item .banner-content-wrapper .banner-text-box .button-group a:hover {
  color: #fff;
  background-color: #3E72FF;
}
.banner-section .banner-slider .banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
}
.banner-section .banner-slider .banner-item .active {
  opacity: 1;
  z-index: 10;
}
/* 核心业务/产品展示 - 修改为三列卡片 */
.services-section {
  background: #f9f9f9;
}
.services-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.service-card {
  flex: 1;
  background: #fff;
  border-radius: 0;
  /* 直角 */
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
  /* 左对齐 */
  padding-bottom: 0;
  position: relative;
  height: 300px;
  /* 固定高度 */
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover img {
  transform: scale(1.05);
}
.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  color: #fff;
}
.service-overlay h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #fff;
}
.service-overlay p {
  font-size: 12px;
  color: #ddd;
  padding: 0;
}
/* 合作伙伴 - 调整样式 */
.partners-section {
  padding: 40px 0;
  background: #fff;
}
.partners-section .section-title {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  color: #333333;
}
.partners-grid {
  gap: 30px;
  display: flex;
  justify-content: space-between;
}
.partner-logo {
  width: 331px;
  height: 57px;
  filter: none;
  /* 取消灰度，按设计图来 */
  opacity: 1;
}
/* 产品与解决方案 */
.news-section {
  background: #F6F6F6;
}
.news-section .section-title {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  color: #333333;
}
.news-section .news-card {
  flex: 1;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  width: 470px;
  height: 438px;
}
.news-section .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.news-section .news-card img {
  width: 470px;
  height: 270px;
  object-fit: cover;
}
.news-section .news-content {
  padding: 15px;
}
.news-section .news-content h3 {
  font-size: 16px;
  font-weight: bold;
  height: 44px;
  /* 两行高度 */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: center;
  font-size: 26px;
  color: #333333;
  text-align: left;
}
.news-section .news-content .news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #999;
  margin-top: 35px;
  font-weight: 400;
  font-size: 18px;
  color: #3E72FF;
  line-height: 31px;
}
.news-section .news-content .news-meta .news-link {
  color: #3E72FF;
  text-decoration: none;
}
.bottom-section {
  background: #F6F6F6;
}
.bottom-section .section-title {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  color: #333333;
  background-color: #F6F6F6;
}
.bottom-section .button-group {
  display: flex;
  justify-content: space-between;
}
.bottom-section .button-group a {
  padding: 10px 20px;
  font-weight: bold;
  color: #333333;
}
.bottom-section .button-group a:hover {
  color: #fff;
  background: #297FFF;
}
.bottom-section .button-group .swiper-item-active {
  color: #fff;
  background: #297FFF;
  border-radius: 6px;
}
.bottom-section .button-group .news-card {
  flex: 1;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  width: 422px;
  height: 320px;
}
.bottom-section .button-group .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.bottom-section .button-group .news-card img {
  width: 422px;
  height: 243px;
  object-fit: cover;
}
.bottom-section .button-group .news-content {
  padding: 15px;
}
.bottom-section .button-group .news-content h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.4;
  height: 44px;
  /* 两行高度 */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: center;
  font-weight: 400;
  font-size: 26px;
  color: #333333;
  line-height: 31px;
}
.bottom-section .bottom-swiper .swiper-slide {
  width: 1550px;
  display: flex;
  height: 381px;
  justify-content: space-between;
}
.bottom-section .bottom-swiper .swiper-slide .left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 30px 0;
}
.bottom-section .bottom-swiper .swiper-slide .left .title {
  font-weight: bold;
  font-size: 39px;
  color: #333333;
  line-height: 46px;
}
.bottom-section .bottom-swiper .swiper-slide .left .detail {
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  line-height: 30px;
}
.bottom-section .bottom-swiper .swiper-slide .left .bottom-button {
  width: 150px;
  height: 56px;
  background: #297FFF;
  border-radius: 6px;
  font-size: 21px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.bottom-section .bottom-swiper .swiper-slide .right img {
  width: 778px;
  height: 381px;
}
/* 顶部按钮 Swiper */
.tab-swiper {
  overflow: hidden;
}
.tab-swiper .swiper-slide {
  display: flex;
  justify-content: space-between;
}
.tab-swiper .swiper-slide .swiper-item {
  padding: 10px 20px;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
}
.tab-swiper .swiper-slide .swiper-item:hover {
  color: #fff;
  background: #297FFF;
  border-radius: 6px;
}
.tab-swiper .swiper-slide .swiper-item-active {
  color: #fff;
  background: #297FFF;
  border-radius: 6px;
}
/* 下方产品 Tab 内容区域 */
.product-tab-content {
  position: relative;
  z-index: 1;
}
.product-tab-content .product-panel {
  display: none;
  justify-content: space-between;
}
.product-tab-content .product-panel.active {
  display: flex;
}
.product-tab-content .product-panel .left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 30px 0;
  width: 680px;
}
.product-tab-content .product-panel .left .title {
  font-weight: bold;
  font-size: 39px;
  color: #333333;
  line-height: 46px;
}
.product-tab-content .product-panel .left .detail {
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  line-height: 30px;
}
.product-tab-content .product-panel .left .bottom-button {
  width: 150px;
  height: 56px;
  background: #297FFF;
  border-radius: 6px;
  font-size: 21px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}
.product-tab-content .product-panel .right {
  position: relative;
  top: -40px;
}
.product-tab-content .product-panel .right img {
  width: 765px;
  height: 424px;
  object-fit: contain;
  max-width: 765px;
  max-height: 424px;
}
/* 顶部按钮 Swiper 样式 */
.tab-swiper {
  overflow: hidden;
}
.tab-swiper .swiper-slide {
  display: flex;
  justify-content: space-between;
}
.tab-swiper .swiper-slide .swiper-item {
  padding: 10px 20px;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
}
.tab-swiper .swiper-slide .swiper-item:hover {
  color: #fff;
  background: #297FFF;
}
.tab-swiper .swiper-slide .swiper-item-active {
  color: #fff;
  background: #297FFF;
}
/* 下方产品Tab内容区域 */
.product-tab-content {
  position: relative;
  z-index: 1;
}
.product-tab-content .product-panel {
  display: none;
  width: 1550px;
  height: 381px;
  justify-content: space-between;
}
.product-tab-content .product-panel.active {
  display: flex;
}
.product-tab-content .product-panel .left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 30px 0;
}
.product-tab-content .product-panel .left .title {
  font-weight: bold;
  font-size: 39px;
  color: #333333;
  line-height: 46px;
}
.product-tab-content .product-panel .left .detail {
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  line-height: 30px;
}
.product-tab-content .product-panel .left .bottom-button {
  width: 150px;
  height: 56px;
  background: #297FFF;
  border-radius: 6px;
  font-size: 21px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}
.product-tab-content .product-panel .right {
  position: relative;
  top: -20px;
}
.product-tab-content .product-panel .right img {
  width: 765px;
  height: 424px;
  object-fit: cover;
}
/* 产品介绍轮播按钮：与媒体页解决方案按钮保持一致 */
.bottom-section .tab-swiper .swiper-slide {
  align-items: center;
  overflow: hidden;
}
.bottom-section .tab-swiper .swiper-slide .swiper-item {
  flex: 0 0 19%;
  width: 19%;
  min-width: 150px;
  max-width: 19%;
  height: 56px;
  padding: 10px 12px;
  box-sizing: border-box;
  display: block;
  line-height: 36px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  background: #fff;
  border-radius: 6px;
  text-decoration: none;
}
.bottom-section .tab-swiper .swiper-slide .swiper-item:hover,
.bottom-section .tab-swiper .swiper-slide .swiper-item.swiper-item-active {
  color: #fff;
  background: #297FFF;
}
