  .NyContactBigBox {
    padding-top: 0;
    padding-bottom: 0;
  }

  .NySection {
    width: 100%;
    overflow: hidden;
  }

  .NySection {
    padding-left: var(--container);
    padding-right: var(--container);
  }

  /* NySection1 */
  .Box1 {
    width: 100%;
    margin-top: 90px;
    margin-bottom: 45px;
    display: flex;
    grid-gap: 30px;
  }

  .item1 {
    background: #fff;
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
  }

  .item1 span {
    color: #7E7E7E;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .item1 p {
    color: var(--hei);
    font-family: "LINE Seed Sans";
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    height: 100%;
    min-height: 90px;
  }

  .item1 img {
    margin-left: auto;
    margin-right: 0;
  }


  @media (max-width: 1200px) {
    .item1 {
      padding: 30px 20px;
    }

    .item1 span {
      font-size: 14px;
    }

    .item1 p {
      font-size: 16px;
    }
  }

  @media (max-width:720px) {
    .Box1 {
      flex-wrap: wrap;
    }

    .item1 {
      padding: 20px;
    }

    .item1 span {
      margin: 0;
    }

    .item1 p {
      margin: 10px 0;
      min-height: unset;
    }
  }

  /* 地图 */
  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;
    }
  }

  /* NySection2 */
  .NySection2 {
    padding-top: 90px;
    padding-bottom: 150px;
  }

  .Box2 {
    display: flex;
    justify-content: space-between;
  }

  .Box2 .titile {
    width: 35%;
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
  }

  .Box2 .titile h1 {
    color: var(--hei);
    font-family: Fontquan-XinYilogoTi;
    font-size: 60px;
    letter-spacing: -3px;
  }

  .Box2 .titile h2 {
    color: #7E7E7E;
    font-size: 20px;
    line-height: 1.5;
  }

  form {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 75px 40px;
  }

  form label {
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #D9D9D9;
    display: flex;
  }

  form label h1 {
    font-size: 18px;
    color: #585858;
    display: flex;
    align-items: center;
    grid-gap: 5px;
    text-wrap-mode: nowrap;
  }

  form label h1 sup {
    color: var(--hong);
    top: 0;
    font-size: 18px;
  }

  form label input {
    width: 100%;
    height: 100%;
    background: #fff0;
    padding-left: 15px;
    outline: none;
  }

  .input2 {
    grid-column: 1/3;
  }

  .input3 {
    grid-column: 1/3;
  }

  .input3 img {
    width: 230px;
    height: 100%;
    object-fit: cover;
    background: #fff;
  }

  .input4 {
    width: 180px;
    height: 50px;
    background: var(--lan);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
  }

  @media (max-width: 1600px) {
    .Box2 .titile h1 {
      font-size: 50px;
      letter-spacing: 0;
    }

    .Box2 .titile {
      width: 45%;
    }
  }

  @media (max-width: 1200px) {
    .Box2 {
      flex-wrap: wrap;
      grid-gap: 30px;
    }

    .Box2 .titile {
      width: 100%;
    }

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

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

    .Box2 .titile h1 {
      font-size: 28px;
    }

    .Box2 .titile h2 {
      font-size: 16px;
    }

    form {
      grid-gap: 30px 15px;
    }

    form label h1 {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    form {
      grid-template-columns: repeat(1, 1fr);
    }

    .input2 {
      grid-column: unset;
    }

    .input3 {
      grid-column: unset;
    }

    .input3 img {
      width: 120px;
      object-fit: contain;
    }
  }