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

  /* box1 */
  .Box1 {
    background: #F7F7F7;
    padding: 120px var(--container);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .lt1 {
    width: 50%;
    position: relative;
    z-index: 1;
  }

  .lt1 .img1 {
    position: relative;
    width: 100%;
    z-index: 1;
  }

  .lt1 a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-gap: 5px;
    text-align: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    font-size: 16px;
    line-height: 1;
    color: #333;
    position: absolute;
    z-index: 2;
    left: 75%;
    top: 70%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  }

  .lt1 a img {
    width: 85%;
  }

  .rt1 {
    width: 45%;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
    padding: 45px;
    display: flex;
    flex-direction: column;
  }

  .rt1 h1 {
    font-weight: 700;
    font-size: 36px;
    color: var(--color);
    margin-bottom: 15px;
    text-align: center;
  }

  .rt1 span {
    padding: 15px 0;
    display: block;
    border-top: 1px solid #D9D9D9;
  }

  .rt1 span:nth-child(2) {
    border: 0px;
  }

  .rt1 span h2 {
    font-size: 16px;
    color: var(--color);
    margin-bottom: 10px;
  }

  .rt1 span p {
    font-size: 16px;
    line-height: 1.5;
    color: #131313;
  }


  @media (max-width: 1660px) {
    .rt1 h1 {
      font-size: 28px;
    }

  }

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

    .rt1 {
      padding: 45px 30px;
    }

    .rt1 h1 {
      font-size: 24px;
    }
  }

  @media (max-width: 900px) {
    .Box1 {
      flex-wrap: wrap;
      padding: 60px var(--container);
    }

    .lt1 {
      width: 100%;
    }

    .rt1 {
      margin-top: 30px;
      width: 100%;
      padding: 45px 15px;
    }
  }

  @media (max-width:460px) {
    .lt1 a {
      width: 75px;
      height: 75px;
      font-size: 14px;
    }
  }

  @media (max-width:380px) {
    .rt1 h1 {
      font-size: 20px;
    }

    .rt1 span {
      padding: 15px 0;
    }

    .rt1 span p {
      font-size: 14px;
    }

    /* .rt1 span:nth-child(2) p {
      font-size: 30px;
    }*/
  }



  /* NySection3 */
  .NySection3 {
    position: relative;
    padding: 60px var(--container);
    padding-bottom: 120px;
  }

  .NySection3::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 40%;
    background: #F6F6F6;
  }


  .Box3 {
    width: 100%;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.1), 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
  }

  .lt3 {
    position: relative;
    width: 30%;
    overflow: hidden;
  }

  .lt3 .img3 {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .lt3 h1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 45px;
    font-weight: 800;
    font-size: 42px;

    color: #FFFFFF;
  }

  .Messages {
    width: 70%;
    padding: 100px 80px;
  }

  @media (max-width: 1200px) {
    .NySection3 {
      padding: 60px var(--container);
      padding-bottom: 90px;
    }

    .lt3 {
      display: none;
    }

    .Messages {
      width: 100%;
      padding: 60px 30px;
    }
  }

  @media (max-width: 800px) {
    .NySection3 {
      padding: 60px var(--container);
    }
  }

  /* 表单 */
  form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 30px;
  }

  label {
    display: flex;
    flex-wrap: wrap;
  }

  label h1 {
    width: 100%;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 15px;
    color: #585858;
    display: none;
  }

  label p {
    width: 100%;
    font-size: 14px;
    line-height: 2;
    color: red;
    position: absolute;
    transform: translateY(-100%);
  }


  label input {
    width: 100%;
    height: 60px;
    background: #fff;
    padding-left: 15px;
    border: 1px solid #D9D9D9;
    outline: none;
  }

  label textarea {
    width: 100%;
    height: 100px;
    background: #fff;
    border: 1px solid #D9D9D9;
    padding-top: 15px;
    padding-left: 15px;
    outline: none;
  }

  .input1 {
    width: calc(50% - 15px);
  }

  .input2 {
    width: 100%;
  }

  .input3 {
    width: calc(100% - 300px);
  }

  .input3 input {
    width: calc(100% - 260px);
    margin-right: 30px;
  }

  .input3 img {
    width: 230px;
    height: 60px;
    background: #fff;
  }

  .input4 {
    position: relative;
    z-index: 2;
    width: 210px;
    height: 60px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #000000;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

  @media (max-width: 1440px) {
    .input3 img {
      width: 120px;
    }

    .input3 input {
      width: calc(100% - 150px);
    }
  }

  @media (max-width: 1200px) {
    form {
      grid-gap: 30px 0;
    }

  }

  @media (max-width:720px) {
    label h1 {
      font-size: 16px;
    }

    label input {
      height: 45px;
    }

    .input1 {
      width: 100%;
    }

    form {
      grid-gap: 30px 0;
    }

    label h1 {
      margin-bottom: 5px;
    }

    label textarea {
      height: 100px;
    }

    .input3 {
      width: 100%;
    }

    .input3 img {
      height: 45px;
    }

    .input4 {
      margin: 0 auto;
      width: 180px;
      height: 45px;
      font-size: 16px;
    }
  }

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


  /* NySection5 - NySection5 - NySection5 - NySection5 - NySection5 */
  .NySection5 {
    padding: 120px var(--container);
    width: 100%;
    overflow: hidden;
    background: #F9F9FB;
  }

  .title5 {
    font-weight: 700;
    font-size: 70px;
    color: #000000;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-bottom: 30px;
  }

  .About5 {
    position: relative;
    width: 100%;
  }

  .item5 {
    position: absolute;
    z-index: 2;
    left: 5%;
    bottom: 10%;
    height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .item5 li {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .item5 h1 {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .item5 h1 p {
    font-weight: 400;
    font-size: 44px;
    color: #000000;
  }

  .item5 h1 b {
    font-weight: 400;
    font-size: 44px;
    color: #000000;
  }

  .item5 h2 {
    font-size: 22px;
    text-align: center;
    color: #5E5E5E;
  }

  .img5 {
    position: relative;
    width: 100%;
  }

  @media (max-width: 1600px) {
    .title5 {
      font-size: 48px;
    }
  }

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

    .title5 {
      font-size: 38px;
    }

    .item5 {
      height: 210px;
    }

    .item5 h1 p {
      font-size: 34px;
    }

    .item5 h1 b {
      font-size: 34px;
    }

    .item5 h2 {
      font-size: 16px;
    }
  }

  @media (max-width: 800px) {
    .NySection5 {
      padding: 60px var(--container);
    }

    .title5 {
      font-size: 28px;
    }

    .item5 {
      height: 150px;
    }

    .item5 h1 p {
      font-size: 24px;
    }

    .item5 h1 b {
      font-size: 24px;
    }

    .About5 {
      display: flex;
      flex-direction: column-reverse;
      grid-gap: 30px;
    }

    .item5 {
      position: unset;
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      width: 100%;
      height: auto;
    }
  }

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

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