/* 内部小芬兰 */
.layui-tab-brief>.layui-tab-title.incontext{
    width:99.65%;
   border: 1px solid #ddd;
   border-radius: 5px;
    border-top: 3px solid #0e3db1;
     flex-wrap: wrap; /*允许换行 */
    white-space: normal; /* 取消不换行 */
    height: auto;
    /* height: 70px; */
  }
  
  .layui-tab-brief>.layui-tab-title.incontext li{
    margin: 0px !important;
         padding: 15px 0 !important;  
        width: 275px;
  }
  /* 隐藏默认的底部横条 */
  .layui-tab-brief .layui-tab-title.incontext .incon.layui-this:after {
          border-bottom:none;
      }
      .layui-tab-brief>.layui-tab-title.incontext .layui-this {
              font-size: 20px;
              color: #fff;
              background-color: #0e3cb1e8;
          }
         
           /* 修改鼠标悬停时标题的文字颜色 */
           .layui-tab-brief .layui-tab-title.incontext li:hover {
              color: #fff; /* 鼠标悬停时文字颜色变为蓝色，可按需修改 */
              background-color: #0e3cb1e8;
          }
          
          .lobal {
          display: flex; /* 设置为 Flexbox 布局 */
          justify-content: flex-start; /* 将子元素对齐到最左边 */
          align-items: center; /* 垂直居中对齐 */
          min-width: 1400px; /* 可选：设置宽度 */
          padding: 10px; /* 可选：添加内边距 */
      }
  
  
  
          .zoujin {
              font-size: 27px;
              font-weight: bold;
              margin: 10px 20px;
          }
          .zoujin1 {
              font-size: 18px;
              margin: 10px ;
              color: #757575;
              text-align: justify;
              text-indent: 2em; /* 首行缩进两个文字的长度 */
          }
          .zoujin2 {
              font-size: 20px;
              margin: 10px 0px;
              color: #757575;
              text-align: center;
              
          }
          
          
          /*多排图片展示*/
          .image-container {
    /* 容器基础样式 */
    max-height: 800px; /* 最大高度，超过3排显示滚动条 */
    overflow-y: auto; /* 垂直滚动条 */
    padding: 30px;
    box-sizing: border-box;
  
    /* Flex 布局核心设置 */
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
    justify-content: flex-start; /* 左对齐 */
    gap: 20px; /* 图片间距 */
  }
  
  /* 单张图片样式（固定大小） */
  .image-container img {
   width: 100%;
   height: 88%;
   transition: transform 0.8s; /* 添加过渡效果 */     
  }
  .image-container #image2box {
    width: calc((100% - 60px) / 3); /* 单图宽度 = (容器宽度-间距*2)/3 */
    height: 320px; /* 固定高度 */
    object-fit: cover; /* 图片裁剪方式，保持比例 */
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    will-change: transform, box-shadow;
     transition: transform 0.8s ease; /* 平滑过渡效果 */
     overflow: hidden;
         
  }
  
  .image-container :hover img{
              transform: scale(1.03) translate(-2px) ; /* 放大并上浮 */
          }
  
  /* 滚动条样式（可选） */
  .image-container::-webkit-scrollbar {
    width: 8px;
  }
  
  .image-container::-webkit-scrollbar-track {
    background: #f0f0f0;
  }
  
  .image-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }
  
  /* 遮罩层基础样式 */
  .image3box::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%; /* 初始隐藏在底部外 */
    width: 100%;
    height: 100%;
    background: rgba(30, 64, 175, 0.9); /* 遮罩颜色（深蓝半透明） */
    transition: bottom 0.5s ease; /* 弹出动画 */
    z-index: 1;
  }
  
  /* 悬停时显示遮罩 */
  .image3box:hover::after {
    bottom: 0; /* 从底部弹出 */
  }
  
  /* 文字容器样式 */
  .image3box .zoujin3 {
    position: absolute;
    left: 30px;      /* 距离左侧20px */
    right: 30px;     /* 距离右侧20px */
    top: 30px;       /* 距离顶部20px */
    bottom: 30px;    /* 距离底部20px */
    width: auto;     /* 自动计算宽度 */
    height: auto;    /* 自动计算高度 */
    padding: 0;      /* 移除内边距，使用定位控制边缘 */
    color: white;
    line-height: 1.6;
    z-index: 2;
    overflow-y: auto; /* 超出高度显示垂直滚动条 */
    opacity: 0;      /* 初始隐藏 */
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(20px); /* 初始下移20px */
    font-size: 16px;
    text-indent: 2em; /* 首行缩进两个文字的长度 */
    text-align: justify;
    padding-right: 10px; /* 关键：添加右侧内边距，为滚动条留出空间 */
  }
  
  /* 悬停时显示文字 */
  .image3box:hover .zoujin3 {
    opacity: 1;
    transform: translateY(0); /* 文字上移到位 */
  }
  
  /* 滚动条样式（可选） */
  .image3box .zoujin3::-webkit-scrollbar {
    width: 6px; /* 滚动条宽度 */
  }
  
  .image3box .zoujin3::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1); /* 轨道背景 */
  }
  
  .image3box .zoujin3::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3); /* 滑块颜色 */
    border-radius: 3px;
  }
 
 