/* 企业简介板块样式 */
.company-intro {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  background: url(../img/about/bg2.png);
  background-size: cover;
}

.company-intro-section{
  width: 70%;
  margin: 0 auto;
}

.company-intro h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
}

.company-intro p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.intro-content {
  display: flex;
  flex-wrap: wrap; /* 响应式换行 */
  justify-content: center;
  align-items: center;
  gap: 40px; /* 列之间的间距 */
  max-width: 1200px;
  margin: 0 auto;
}

.intro-text {
  flex: 1;
  min-width: 300px; /* 响应式最小宽度 */
  text-align: left;
}

.intro-text h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.intro-text p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.intro-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
  min-width: 100px;
}

.stat-item span {
  font-size: 24px;
  font-weight: bold;
  color: #2f5496; /* 蓝色数值可调整 */
  display: block;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.intro-image {
  flex: 0 0 300px; /* 固定图片宽度，不缩放 */
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* 可选：添加图片圆角 */
}




.honor-show-content{
    width: 100%;
    background-color: #0f172a;
}

.honor-section {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  color: #fff;
  margin-bottom: 10px;
}

.section-desc {
  font-size: 14px;
  color: #cbd5e1;
}

/* 轮播容器 */
.honor-carousel {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 图片容器：居中布局 */
.honor-images {
  position: relative;
  width: 800px;
  height: 100%;
}

.honor-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 350px;
  object-fit: contain;
  transition: all 0.5s ease;
  opacity: 1; /* 模态基础透明度 */
  filter: blur(0px); /* 模态模糊效果 */
  z-index: 1;
  display: none;
}

/* 中间完全显示的图片 */
.honor-image.center {
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 350px;
  opacity: 1; /* 完全显示 */
  filter: blur(0); /* 无模糊 */
  z-index: 10;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  display: inline-block;
}

/* 左侧第一张模态图（左1） */
.honor-image.left-1 {
  left: calc(50% - 450px);
  z-index: 5;
  width: 400px;
  height: 290px;
  opacity: 0.8;
  display: inline-block;
}

/* 左侧第二张模态图（左2） */
.honor-image.left-2 {
  left: calc(50% - 550px);
  opacity: 0.2; /* 更弱的显示 */
  z-index: 3;
  width: 310px;  
  height: 220px; 
  display: inline-block;
}

/* 右侧第一张模态图（右1） */
.honor-image.right-1 {
  left: calc(50% + 50px);
  z-index: 5;
  width: 400px;
  height: 290px;
  display: inline-block;
}

/* 右侧第二张模态图（右2） */
.honor-image.right-2 {
  left: calc(50% + 250px);
  opacity: 0.2; /* 更弱的显示 */
  z-index: 3;
  width: 310px;  
  height: 220px; 
  display: inline-block;
}

/* 箭头按钮 */
.carousel-arrow {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.carousel-arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}
.carousel-arrow.honor-prev {
  left: 50px;
}
.carousel-arrow.next {
  right: 50px;
}

.image-caption {
  margin-top: 30px;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}





.ip-section {
  background-color: #fff;
  color: #333;
  padding: 60px 20px;
  text-align: center;
}

.ip-section h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.ip-section p {
  font-size: 16px;
  color: #666;
}

.case-carousel-other {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.carousel-btn-other {
    background-color: #f0f0f0;
    color: #666;
    border: none;
    width: 50px;
    height: 100px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 15px;
    z-index: 10;
}

.carousel-btn-other:hover {
    background-color: #e0e0e0;
}
.other-case-container {
    width: 100%;
    overflow: hidden;
}

.other-case-group {
    display: none;
    width: 100%;
}

.other-case-group.active {
    display: block;
}

.other-case-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    grid-template-rows: repeat(3, auto);
    gap: 40px; 
    padding-top: 20px;
}

.other-case-item {
    text-align: center;
}

.other-case-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.other-case-item img:hover {
    transform: translateY(-5px);
}

.other-case-item p {
    font-size: 14px;
    color: #333;
}