  .NyContactBigBox {
    padding-bottom: 0;
    background: #F9F9F9;
  }

  /* NySection1 */
  .NySection1 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .Box1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }

  .item1 {
    padding: 60px 30px;
    border: 1px solid #E6E7E8;
    background: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
  }

  .item1 img {
    display: block;
    max-width: 120px;
  }


  .item1 h1 {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
  }

  .item1 p {
    color: #000;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
  }

  @media (max-width: 1200px) {
    .item1 {
      justify-content: flex-start;
    }

    .item1 h1 {
      font-size: 18px;
    }

    .Box1 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 10px;
    }

    .Box1 .item1:nth-child(3) {
      grid-column: 1/3;
    }
  }

  @media (max-width: 600px) {
    .Box1 {
      grid-template-columns: repeat(1, 1fr);
    }

    .item1 {
      padding: 20px 15px;
    }

    .Box1 .item1:nth-child(3) {
      grid-column: 1/2;
    }
  }

  @media (max-width:460px) {}

  @media (max-width:380px) {}

  /* box2 */
  .NySection2 {
    position: relative;
    z-index: 2;
  }

  .NySection2 .titile {
    color: #000;
    text-align: center;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 45px;
  }

  form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 30px 20px;
  }

  .input1 {
    width: calc(50% - 10px);
    height: 50px;
    background: #FFF;
    outline: none;
    padding-left: 15px;
  }

  .input2 {
    width: 100%;
    height: 200px;
    background: #FFF;
    padding: 15px;
  }

  .captcha {
    width: calc(50% - 10px);
    position: relative;
    height: 50px;
    display: flex;
    grid-gap: 20px;
  }

  .captcha input {
    width: calc(100% - 180px);
    height: 100%;
    padding-left: 15px;
    background: #FFF;
    outline: none;
  }

  .captcha img {
    background: #FFF;
    width: 160px;
    height: 100%;
  }

  .input4 {
    width: 15%;
    min-width: 180px;
    height: 50px;
    background: var(--color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 15px;
    color: #FFF;
    font-family: "Playfair Display";
    text-align: center;
    font-size: 20px;
  }

  @media (max-width: 1200px) {
    .NySection2 .titile {
      font-size: 38px;
    }
  }

  @media (max-width: 900px) {
    .NySection2 .titile {
      font-size: 28px;
      margin-bottom: 30px;
    }

    .captcha {
      width: 60%;
    }

  }

  @media (max-width: 600px) {
    .NySection2 .titile {
      font-size: 18px;
      margin-bottom: 30px;
    }

    .captcha {
      width: 100%;
    }

    .input1 {
      width: 100%;
    }

  }

  /* 地图 */
  .map {
    position: relative;
    z-index: 1;
    margin-top: -270px;
  }

  body {
    min-width: auto !important;
    min-height: auto !important;
  }

  .map,
  .map .raw-html-embed {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #333333;
  }

  .map .my-map {
    width: 1920px;
    height: 960px;
    position: relative;
    left: 50%;
    top: 50%;
    margin-left: -960px;
    margin-top: -480px;
  }

  @media (max-width: 992px) {
    .map {
      height: 400px;
    }
  }