  .zwfw {
    width: 100%;
    max-width: 1300px;
    margin: 3% auto;
    overflow: hidden;
  }

  .zwfw_layout {
    display: flex;
    flex-direction: column;
  }

  .zwfw_left {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 460px; 
  }

  .zwfw_right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 3%;
  }

  .zwfw_item1,
  .zwfw_item2,
  .zwfw_item3 {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 140px; 
  }

  .zwfw_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
  }

  .zwfw_img:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  
  @media (min-width: 768px) {
    .zwfw_left {
      width: calc(700 / (1300 - 30) * 100%); 
    }
    .zwfw_right {
        width: calc(429 / (1300 - 30) * 100%); 
        margin-top: 0;
      }
      .zwfw_layout {
        flex-direction: row;
        gap: 30px; 
      }
  }