
    .shcool-box {
      margin-bottom: 60px;
      padding: 30px;
      background: #FFFFFF;
      border-radius: 10px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }
    
    .school-title {
      margin-bottom: 25px;
      padding-left: 50px;
      height: 40px;
      line-height: 40px;
      font-weight: bold;
      font-size: 24px;
      color: #056FE4;
      background: url("/public/images/home/school-icon.png") left center no-repeat;
      background-size: 40px;
    }
    
    .school-img-box {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
    }
    
    .school-img-item {
      position: relative;
      border: 1px dashed #D4D8DF;
      width: 268px;
      height: 110px;
      margin-right: 22px;
      margin-bottom: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
      overflow: hidden;
      border-radius: 6px;
    }
    
    .school-img-item:nth-child(4n) {
      margin-right: 0;
    }
    .school-img{
        width: 100%;
        height: 100%;
    }
    .school-img-item:hover {
      box-shadow: 0 5px 15px rgba(0, 59, 112, 0.2);
      border-color: #fff;
      transform: translateY(-5px);
    }
    
  
    
   