@charset "UTF-8";
.main > .section-1 {
  width: 100%;
  min-width: 1440px;
  height: 900px;
  position: relative;
  overflow: hidden;
}

/* Swiper 容器占满父容器 */
.section-1 .swiper-container {
  width: 100%;
  height: 100%;
}

/* 每个 slide 居中显示，图片铺满 */
.section-1 .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #fafafa;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.section-1 .swiper-slide .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* 立即查看按钮 */
.view-now-btn {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 16px 45px;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.view-now-btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) scale(1.03);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

.view-now-btn2 {
  position: absolute;
  top: 62%;
  left: 13%;
  transform: translate(-50%, -50%);
  padding: 16px 45px;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.view-now-btn2:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) scale(1.03);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}
.view-now-btn3 {
  position: absolute;
  top: 62%;
  left: 16%;
  transform: translate(-50%, -50%);
  padding: 16px 45px;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.view-now-btn3:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) scale(1.03);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}
.view-now-btn4 {
  position: absolute;
  top: 72%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 16px 45px;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.view-now-btn4:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) scale(1.03);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

/* Swiper 分页与导航样式 */
.section-1 .swiper-pagination-bullet {
  background: rgba(255,255,255,0.6);
  opacity: 1;
}
.section-1 .swiper-pagination-bullet-active {
  background: #b53434;
}

.section-1 .swiper-button-next,
.section-1 .swiper-button-prev {
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.section-1 .swiper-button-next:after,
.section-1 .swiper-button-prev:after {
  font-size: 18px;
  color: #fff;
}

/* Section 2: 团队介绍 */
.main > .section-2 {
  width: 100%;
  min-width: 1440px;
  background-color: #fff;
  margin-bottom: 64px;
}
.main > .section-2 > .content {
  width: 1420px;
  margin: 0 auto;
  overflow: hidden;
}
.main > .section-2 > .content > .title {
  text-align: center;
  margin-top: 64px;
  margin-bottom: 16px;
  height: 54px;
  font-weight: bold;
  font-size: 36px;
  color: #333333;
  line-height: 54px;
}
.main > .section-2 > .content > .tips {
  text-align: center;
  height: 30px;
  font-weight: 500;
  font-size: 20px;
  color: #666666;
  line-height: 30px;
  margin-bottom: 37px;
}
.main > .section-2 > .content > .about {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.main > .section-2 > .content > .about > .left-content {
  width: 845px;
}
.main > .section-2 > .content > .about > .left-content > .text {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  text-align: left;
  font-style: normal;
}
.main > .section-2 > .content > .about > .left-content > .icon-text {
  display: flex;
  justify-content: space-between;
  width: 752px;
  margin: 28px auto 0 auto;
}
.main
  > .section-2
  > .content
  > .about
  > .left-content
  > .icon-text
  > .stat-items {
  display: flex;
  justify-content: space-between;
  width: 752px;
}
.main
  > .section-2
  > .content
  > .about
  > .left-content
  > .icon-text
  > .stat-items
  > .stat-item {
  display: flex;
  justify-content: space-between;
  width: 314px;
}
.main
  > .section-2
  > .content
  > .about
  > .left-content
  > .icon-text
  > .stat-items
  > .stat-item
  > .stat-icon {
  padding-top: 13px;
  width: 28px;
}
.main
  > .section-2
  > .content
  > .about
  > .left-content
  > .icon-text
  > .stat-items
  > .stat-item
  > .stat-icon
  > img {
  width: 28px;
  height: 28px;
}

.main
  > .section-2
  > .content
  > .about
  > .left-content
  > .icon-text
  > .stat-items
  > .stat-item
  > .stat-left
  > .stat-title {
  line-height: 20px;
  height: 54px;
  font-weight: 500;
  font-size: 24px;
  color: #666666;
  line-height: 54px;
  text-align: left;
}
.main
  > .section-2
  > .content
  > .about
  > .left-content
  > .icon-text
  > .stat-items
  > .stat-item
  > .stat-left
  > .stat-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.main
  > .section-2
  > .content
  > .about
  > .left-content
  > .icon-text
  > .stat-items
  > .stat-item
  > .stat-left
  > .stat-value
  > .number {
  line-height: 1;
  height: 75px;
  font-weight: bold;
  font-size: 42px;
  color: #333333;
  text-align: left;
}
.main
  > .section-2
  > .content
  > .about
  > .left-content
  > .icon-text
  > .stat-items
  > .stat-item
  > .stat-left
  > .stat-value
  > .unit {
  height: 54px;
  font-weight: bold;
  font-size: 20px;
  color: #333333;
  line-height: 54px;
  text-align: left;
}
.main > .section-2 > .content > .about > .right-content {
  width: 516px;
}
.main > .section-2 > .content > .about > .right-content > .imgs {
  width: 516px;
  height: 309px;
}
.main > .section-2 > .content > .about > .right-content > .imgs-tips {
  width: 504px;
  height: 281px;
  margin-top: 19px;
  margin-left: 12px;
}

/* Section 3: 树生动态/企业新闻 */
.main > .section-3 {
  width: 100%;
  min-width: 1440px;
  background: #fafafa;
}
.main > .section-3 .content {
  width: 100%;
  overflow: hidden;
  padding-bottom: 64px;
}
.section-3 .content .title {
  text-align: center;
  height: 54px;
  font-weight: bold;
  font-size: 36px;
  color: #1a1a1a;
  line-height: 54px;
  margin-bottom: 16px;
  margin-top: 64px;
}
.section-3 .content .subtitle {
  text-align: center;
  height: 30px;
  font-weight: 500;
  font-size: 20px;
  color: #666666;
  line-height: 30px;
  margin-bottom: 40px;
}
.main > .section-3 .content .container {
  width: 1440px;
  margin: 0 auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: white;
}
.main > .section-3 .content .latest-news-container {
  display: flex;
  gap: 24px;
  justify-content: center;
}
/* 最新新闻卡片 - 固定尺寸464px × 600px */
.main > .section-3 .content .latest-news-container .news-card {
  width: 464px;
  height: 506px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(186, 52, 52, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.main > .section-3 .content .latest-news-container .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(186, 52, 52, 0.2);
  cursor: pointer;
}

/* 卡片图片区域 */
.main > .section-3 .content .latest-news-container .news-card .news-card-image {
  width: 464px;
  height: 311px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.main
  > .section-3
  .content
  .latest-news-container
  .news-card
  .news-card-image
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main
  > .section-3
  .content
  .latest-news-container
  .news-card
  .news-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: white;
}

/* 新闻标签 - 灰色 #666666，18px */
.main > .section-3 .content .latest-news-container .news-card-tag {
  display: inline-block;
  color: #666666;
  font-size: 18px;
  margin-bottom: 20px;
  align-self: flex-start;
  font-weight: 500;
  line-height: 27px;
}

/* 新闻标题 */
.news-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 20px;
  line-height: 28px;
  text-align: left;
  min-height: 56px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 卡片底部 */
.news-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-top: auto;
}

.news-card-date {
  font-weight: 500;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  text-align: left;
}

/* 查看详情 - 颜色#1A1A1A，字号16px */
.news-card-link {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.news-card-link:hover {
  color: #ba3434;
}

.news-card-link:after {
  content: '>';
  margin-left: 5px;
  font-weight: bold;
}

/* Section 4: 案例 */
.main > .section-4 {
  width: 100%;
  min-width: 1440px;
  background-color: #fff;
}
.main > .section-4 > .content {
  width: 1440px;
  margin: 0 auto;
}
.main > .section-4 > .content > .title {
  padding-top: 64px;
  padding-bottom: 16px;
  font-weight: bold;
  font-size: 36px;
  color: #333333;
  line-height: 54px;
  text-align: center;
}
.main > .section-4 > .content > .tips {
  height: 30px;
  font-weight: 500;
  font-size: 20px;
  color: #666666;
  line-height: 30px;
  text-align: center;
  margin-bottom: 40px;
}
.case-content {
  display: flex;
  width: 100%;
  height: 432px;
  background: white;
  overflow: hidden;
  margin-bottom: 70px;
}
.case-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.school-badge {
  width: 87px;
  height: 87px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.school-badge i {
  font-size: 50px;
  color: #b53434;
}

.school-name {
  margin-top: 30px;
  margin-bottom: 24px;
  height: 42px;
  font-weight: 500;
  font-size: 28px;
  color: #333333;
  line-height: 42px;
  text-align: left;
}
.case-description {
  width: 510px;
}

.case-description p {
  margin-bottom: 18px;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  text-align: left;
}

.case-right {
  width: 895px;
  position: relative;
}

.campus-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 案例列表 */
.case-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.case-list > .case {
  margin-bottom: 30px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.case-list > .case:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.case-list > .case > .icon {
  display: block;
  width: 455px;
  height: 104px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.case-list > .case > .icon.ai-school-1 {
  background-image: url('../../../img/index/ai-school-1.png');
}
.case-list > .case > .icon.ai-school-13 {
  background-image: url('../../../img/index/ai-school-13.png');
}
.case-list > .case > .icon.ai-school-12 {
  background-image: url('../../../img/index/ai-school-12.png');
}
.case-list > .case > .icon.ai-school-4 {
  background-image: url('../../../img/index/ai-school-4.png');
}
.case-list > .case > .icon.ai-school-14 {
  background-image: url('../../../img/index/ai-school-14.png');
}
.case-list > .case > .icon.ai-school-15 {
  background-image: url('../../../img/index/ai-school-15.png');
}
.case-list > .case > .icon.ai-school-6 {
  background-image: url('../../../img/index/ai-school-6.png');
}
.case-list > .case > .icon.ai-school-7 {
  background-image: url('../../../img/index/ai-school-7.png');
}
.case-list > .case > .icon.ai-school-8 {
  background-image: url('../../../img/index/ai-school-8.png');
}
.case-list > .case > .icon.ai-school-16 {
  background-image: url('../../../img/index/ai-school-16.png');
}
.case-list > .case > .icon.ai-school-17 {
  background-image: url('../../../img/index/ai-school-17.png');
}
.case-list > .case > .icon.ai-school-18 {
  background-image: url('../../../img/index/ai-school-18.png');
}
.case-list > .case > .icon.ai-school-19 {
  background-image: url('../../../img/index/ai-school-19.png');
}
.case-list > .case > .icon.ai-school-20 {
  background-image: url('../../../img/index/ai-school-20.png');
}

/* 案例轮播容器 */
.case-carousel-container {
  width: 100%;
  margin-bottom: 70px;
  position: relative;
}

/* 案例轮播容器 */
.case-swiper {
  width: 100%;
  height: 432px;
  position: relative;
  overflow: hidden;
}

/* 轮播幻灯片 */
.case-swiper .swiper-slide {
  display: flex;
  width: 100%;
  height: 100%;
  background: white;
}

/* 案例轮播导航按钮样式 */
.case-button-next,
.case-button-prev {
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.case-button-next:after,
.case-button-prev:after {
  font-size: 18px;
  color: #fff;
}

.case-button-next {
  right: 20px;
}

.case-button-prev {
  left: 20px;
}

/* 案例轮播分页器样式（调整为左对齐小长条） */
.case-pagination {
  position: absolute;
  bottom: 20px;
  /* 靠左显示，距离左侧可根据需要微调 */
  left: 40px;
  width: auto;
  text-align: left;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-right: 20px;
  box-sizing: border-box;
}

.case-pagination .swiper-pagination-bullet {
  display: inline-block;
  width: 40px;           /* 非激活宽度 */
  height: 3px;           /* 高度 4px */
  background: #BA3434;   /* 基础颜色 */
  opacity: 0.3;          /* 非激活透明度 30% */
  border-radius: 2px;    /* 小圆角 */
  margin: 0;             /* 间距由 gap 控制 */
  transition: width 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
  box-sizing: border-box;
}

.case-pagination .swiper-pagination-bullet-active {
  width: 62px;           /* 激活宽度 */
  height: 4px;
  opacity: 1;            /* 激活不透明 */
  background: #BA3434;   /* 激活颜色（无透明） */
}

/* Section 5: 解决方案 */
.main > .section-5 {
  width: 100%;
  min-width: 1440px;
  padding: 0px 0 60px 0;
  background-color: #fff;
}
.main > .section-5 > .content {
  width: 1440px;
  margin: 0 auto;
}
.main > .section-5 > .content > .title {
  text-align: center;
  margin-top: 64px;
  margin-bottom: 16px;
  height: 54px;
  font-weight: bold;
  font-size: 36px;
  color: #1a1a1a;
  line-height: 54px;
}
.main > .section-5 > .content > .tips {
  text-align: center;
  margin-bottom: 43px;
  height: 30px;
  font-weight: 500;
  font-size: 20px;
  color: #666666;
  line-height: 30px;
}
/* 解决方案卡片容器 - 改为网格布局 */
.main > .section-5 > .content > .education-cards {
  display: grid;
  grid-template-columns: repeat(2, 708px);
  grid-template-rows: repeat(2, 452px);
  gap: 24px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
/* 卡片样式 */
.main > .section-5 > .content > .education-cards > .education-card {
  width: 708px;
  height: 452px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.main > .section-5 > .content > .education-cards > .education-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
/* 卡片背景图 */
.main > .section-5 > .content > .education-cards > .education-card > .card-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
/* 卡片内容样式 */
.main > .section-5 > .content > .education-cards > .education-card > .card-bg > .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  z-index: 2;
  box-sizing: border-box;
}
.main > .section-5 > .content > .education-cards > .education-card > .card-bg > .card-content > h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.main > .section-5 > .content > .education-cards > .education-card > .card-bg > .card-content > p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 32px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}
/* 了解更多按钮样式 */
.main > .section-5 > .content > .education-cards > .education-card > .card-bg > .card-content > .learn-more {
  position: absolute;
  left: 40px;
  bottom: 30px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.main > .section-5 > .content > .education-cards > .education-card > .card-bg > .card-content > .learn-more:hover {
  transform: translateX(5px);
  color: #ba3434;
}
.main > .section-5 > .content > .education-cards > .education-card > .card-bg > .card-content > .learn-more::after {
  content: '>';
  margin-left: 8px;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.main > .section-5 > .content > .education-cards > .education-card > .card-bg > .card-content > .learn-more:hover::after {
  transform: translateX(5px);
}

/* Section 6: 技术实力展示 */
.main > .section-6 {
  width: 100%;
  height: 680px;
  background: #fafafa;
}
.main > .section-6 > .content {
  width: 1440px;
  margin: 0 auto;
  overflow: auto;
}
.section-6 .content .section-title {
  text-align: center;
  margin-top: 64px;
  margin-bottom: 16px;
  height: 54px;
  font-weight: bold;
  font-size: 36px;
  color: #1a1a1a;
  line-height: 54px;
}
.section-6 .content .section-tips {
  text-align: center;
  margin-bottom: 43px;
  height: 30px;
  font-weight: 500;
  font-size: 20px;
  color: #1a1a1a;
  line-height: 30px;
}
.section-6 .content .solution-container {
  width: 842px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
}
.section-6 .content .solution-container .solution-menu-item {
  width: 238px;
  height: 78px;
  text-align: center;
  color: #666666;
  border-radius: 56px;
}
.section-6 .content .solution-container .solution-menu-item:hover {
  background: linear-gradient(to right, #ba3434, #942626);
  color: #fff;
  cursor: pointer;
}
.section-6 .content .solution-container .solution-menu-item.active {
  background: linear-gradient(to right, #ba3434, #942626);
  color: #fff;
  cursor: pointer;
}
.section-6 .content .solution-container .solution-menu-item .text {
  font-weight: bold;
  font-size: 36px;
  line-height: 76px;
}
.section-6 .content .solution-container .solution-menu-item .pointer {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}
/* 解决方案内容切换容器 */
.section-6 .content .solution-content-wrapper {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.section-6 .content .solution-content-panel {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.35s ease, max-height 0.4s ease, visibility 0.35s ease;
}
.section-6 .content .solution-content-panel.active {
  opacity: 1;
  visibility: visible;
  max-height: 600px;
  animation: solutionPanelFadeIn 0.4s ease forwards;
}
@keyframes solutionPanelFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-6 .content .content-container1 {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.section-6 .content .content-container1 .content-item {
  width: 708px;
  height: 255px;
  background: #ffffff;
  box-shadow: 0px 4px 8px 0px rgba(34, 5, 5, 0.1);
  border-radius: 8px;
  padding-top: 72px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-6 .content .content-container1 .content-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(34, 5, 5, 0.12), 0 0 0 1px rgba(186, 52, 52, 0.15);
}
.section-6 .content .content-container1 .content-item .name {
  height: 39px;
  font-weight: bold;
  font-size: 26px;
  color: #1a1a1a;
  text-align: center;
  line-height: 39px;
}
.section-6 .content .content-container1 .content-item .val {
  margin: 24px auto 0 auto;
  width: 428px;
  height: 48px;
  font-weight: 400;
  font-size: 16px;
  color: #1a1a1a;
  line-height: 24px;
  text-align: center;
}
.section-6 .content .content-container2 {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.section-6 .content .content-container2 .content-item {
  width: 342px;
  padding-top: 20px;
  cursor: pointer;
  height: 316px;
  background: #ffffff;
  box-shadow: 0px 4px 8px 0px rgba(34, 5, 5, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-6 .content .content-container2 .content-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(34, 5, 5, 0.12), 0 0 0 1px rgba(186, 52, 52, 0.15);
}
.section-6 .content .content-container2 .content-item .name {
  height: 30px;
  font-weight: bold;
  font-size: 26px;
  color: #1a1a1a;
  text-align: center;
  line-height: 39px;
}
.section-6 .content .content-container2 .content-item .val {
  margin: 24px auto 0 auto;
  width: 278px;
  height: 48px;
  font-weight: 400;
  font-size: 15px;
  color: #1a1a1a;
  line-height: 24px;
  text-align: center;
}
.section-6 .content .content-container3 {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.section-6 .content .content-container3 .content-item {
  width: 464px;
  height: 115px;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0px 4px 8px 0px rgba(34, 5, 5, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-6 .content .content-container3 .content-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(34, 5, 5, 0.12), 0 0 0 1px rgba(186, 52, 52, 0.15);
}
.section-6 .content .content-container3 .content-item .name {
  font-weight: bold;
  font-size: 26px;
  color: #1a1a1a;
  text-align: center;
  line-height: 115px;
}

.learn-more-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  width: 100%;
}
/* 了解更多按钮样式 */
.learn-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #b53434; /* 红色背景 */
  color: white; /* 白色文字 */
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(181, 52, 52, 0.25);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
/* 按钮悬停效果 */
.learn-more-btn:hover {
  background-color: #9c2b2b; /* 悬停时稍深的红色 */
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(181, 52, 52, 0.35);
  color: white;
}

/* 按钮点击效果 */
.learn-more-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(181, 52, 52, 0.3);
}

/* 按钮箭头样式 */
.learn-more-btn .arrow {
  margin-left: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* 悬停时箭头动画 */
.learn-more-btn:hover .arrow {
  transform: translateX(5px);
}

/* 按钮波纹效果 */
.learn-more-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.learn-more-btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
      transform: scale(0, 0);
      opacity: 0.5;
  }
  20% {
      transform: scale(25, 25);
      opacity: 0.3;
  }
  100% {
      transform: scale(50, 50);
      opacity: 0;
  }
}
