/* 联系人板块专用容器 */
.contact-container {
    width: 100%;
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  /* 只针对联系人板块的图片项容器 */
  .contact-container .img-items {
    margin: 0 -10px;
  }
  
  /* 只针对联系人板块的列布局 */
  .contact-container .layui-col-md3 {
    width: 25%;
    padding: 0 10px;
    box-sizing: border-box;
    float: left;
  }
  
  /* 只针对联系人板块的项目样式 */
  .contact-container .item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative; /* 新增定位 */
  }
  
  /* 修复悬停效果 - 重点修改部分 */
  .contact-container .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .contact-container .item:hover img {
    transform: scale(1.05); /* 图片放大效果 */
  }
  
  .contact-container .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease; /* 添加图片过渡效果 */
  }
  
  .contact-container .title {
    padding: 8px;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    background: rgba(57, 110, 209, 0.95);
    position: relative; /* 确保标题在图片上方 */
    z-index: 1; /* 确保标题在图片上方 */
  }
  
  /* 只清除联系人板块的浮动 */
  .contact-container .layui-row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* 只针对联系人板块的响应式调整 */
  @media (max-width: 992px) {
    .contact-container .layui-col-md3 {
      width: 50%;
    }
  }
  
  @media (max-width: 576px) {
    .contact-container .layui-col-md3 {
      width: 100%;
    }
  }
  