  .NyBigBox {
    padding: 0;
  }

  section {
    padding: 120px var(--container);
  }

  @media (max-width: 1200px) {
    section {
      padding: 90px var(--container);
    }
  }

  @media (max-width: 600px) {
    section {
      padding: 60px var(--container);
    }
  }

  /* Box1 */
  .Box1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .Box1 .NyTitle {
    margin-bottom: 30px;
  }

  .lt1 {
    width: calc(35% - 90px);
    display: flex;
    flex-direction: column;
  }

  .rt1 {
    width: 65%;
  }

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

  .input1 {
    width: calc(50% - 15px);
    height: 50px;
    border-radius: 16px;
    background: #F9FAFB;
    outline: none;
    padding-left: 15px;
  }

  .input2 {
    width: 100%;
    height: 120px;
    background: #F9FAFB;
    padding: 15px;
  }

  .captcha {
    width: 100%;
    max-width: 700px;
    position: relative;
    height: 50px;
    display: flex;
  }

  .captcha input {
    width: calc(100% - 160px);
    height: 100%;
    border-radius: 16px;
    padding-left: 15px;
    background: #F9FAFB;
    outline: none;
  }

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

  .input4 {
    width: 100%;
    max-width: 700px;
    height: 60px;
    background: var(--color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 15px;
    color: #FFF;
    font-family: MiSans2;
    font-size: 16px;
  }

  @media (max-width: 600px) {
    .input1 {
      width: 100%;
    }

    .captcha input {
      width: calc(100% - 120px);
    }

    .captcha img {
      width: 120px;
    }
  }

  @media (max-width: 1200px) {
    .lt1 {
      width: calc(40% - 30px);
      display: flex;
      flex-direction: column;
    }

    .rt1 {
      width: 60%;
    }
  }

  @media (max-width: 900px) {
    .Box1 {
      grid-gap: 30px;
    }

    .Box1 .NyTitle {
      margin-bottom: 15px;
    }

    .lt1 {
      width: 100%;
    }

    .rt1 {
      width: 100%;
    }
  }

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

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

  /* box2 */

  /* 地图 */
  body {
    min-width: auto !important;
    min-height: auto !important;
  }

  .map,
  .map,
  .raw-html-embed {
    width: 100%;
    height: 400px;
    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;
    }
  }

  /* Box3 */
  .NySection3 .NyTitle h2 {
    text-align: center;
  }

  .Box3 {
    margin: 0 auto;
    margin-top: 60px;
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 45px 60px;
  }

  .item3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 15px;
  }

  .item3 img {
    width: 80px;
  }

  .item3 h1 {
    color: #000;
    text-align: center;
    font-family: MiSans2;
    font-size: 24px;
  }

  .item3 h2 {
    color: #808080;
    text-align: center;
    font-size: 14px;
  }


  @media (max-width: 1200px) {
    .item3 h1 {
      font-size: 18px;
    }
  }

  @media (max-width: 900px) {
    .Box3 {
      grid-gap: 30px;
      margin-top: 30px;
    }

    .item3 img {
      width: 60px;
    }
  }

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

  }
