.investment_detail-title{
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}
/* 新增按钮样式 */
.investment_detail-title ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}
  .investment_detail-title li {
    flex: 0 0 calc(33.333% - 13.333px);
    margin: 0 auto; /* 新增自动外边距实现智能对齐 */
    text-align: center;
    padding: 12px 15px; /* 调整内边距 */
    border-radius: 5px;
    margin-right: auto; /* 新增左对齐关键属性 */
    cursor: pointer;
    transition: all 0.3s ease;
    background: #eeebeb;
    font-weight: 500;
    list-style: none;
  }
  .investment_detail-title li a{ 
    color: #070707!important;
  }
  .investment_detail-title li:hover {
    background: #4775f5;
    color: #fff;
  }
  
  .investment_detail-title li.active {
    background: #4775f5;
    color: #fff;
  }
  .investment_detail-title li.active a{ 
    color: #fff!important;
  }
  .investment_detail-content img{ 
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease; /* 新增过渡效果 */
  }
/* 新增悬停放大效果 */
.investment_detail-content .col-lg-5:hover img {
    transform: scale(1.05);
  }
  
  /* 确保容器溢出隐藏 */
  .investment_detail-content .col-lg-5 {
    overflow: hidden;
    border-radius: 10px; /* 保持与图片一致的圆角 */
  }
/* 移动端适配优化 */
@media (max-width: 768px) {
  .investment_detail-title ul {
    gap: 10px 15px;
  }
  
  .investment_detail-title li {
    flex: 0 0 calc(50% - 8px);
  }
}

/* 小屏幕手机适配 */
@media (max-width: 480px) {
  .investment_detail-title li {
    flex: 0 0 100%; /* 单列布局 */
  }
}

/* 智能对齐规则 */
.investment_detail-title li:only-child {
  flex: 0 0 auto; /* 单个按钮时取消宽度限制 */
}

.investment_detail-title li:nth-last-child(2):nth-child(2),
.investment_detail-title li:nth-last-child(1):nth-child(1) {
  margin-left: auto;
  margin-right: auto;
}
/* 荣誉轮播样式 */
.investment_detail-honor .swiper {
    padding: 20px 0;
  }
  .investment_detail-honor .swiper-slide {
    border: 1px solid #e3e3e3;
    background: #f2f4f7;
    padding: 0.35rem 0.3rem;
    cursor: pointer;
    padding: 20px;
    overflow: hidden; /* 新增溢出隐藏 */
  }
  .investment_detail-honor .swiper-slide img {
    height: 250px;
    width: 100%;
    margin: 0 auto;
    display: block; /* 新增块级显示 */
    transition: transform 0.3s ease-in-out; /* 添加过渡效果 */
  }
  /* 新增悬停放大效果 */
  .investment_detail-honor .swiper-slide:hover img {
    transform: scale(1.05);
    filter: brightness(1.05); /* 可选：同时增加亮度 */
  }
  .investment_detail-honor .swiper-slide p{
    text-align: center;
  }
  /* 导航按钮样式 */
  .swiper-button-prev, .swiper-button-next {
    color: var(--accent-color);
    width: 40px;
    height: 40px; /* 恢复正方形比例 */
    background: rgba(255,255,255,0.95); /* 更通透的背景 */
    border-radius: 50%; /* 完美圆形 */
    box-shadow: 0 3px 8px rgba(0,0,0,0.15); /* 加强投影 */
    transition: all 0.3s ease;
    top: 50%;
    margin-top: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* 修复图标位置 */
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 24px; /* 调整箭头大小 */
  }
  
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    transform: scale(1.1) translateY(-2px); /* 添加垂直位移 */
    background: #909092; /* 使用更亮的主题色 */
    box-shadow: 0 5px 15px rgba(58,92,214,0.3); /* 悬停投影 */
  }
  
  /* 添加点击反馈 */
  .swiper-button-prev:active,
  .swiper-button-next:active {
    transform: scale(0.95);
  }
  
  
  /* 移动端隐藏导航按钮 */
  @media (max-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next {
      display: none;
    }
  }