  /* box1 */
  .Box1 {
    width: 100%;
    padding: 0 var(--w1600);
    display: flex;
    flex-wrap: wrap;
  }

  .text1 {
    width: 40%;
    padding: 60px;
    background-color: #fff !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .text1 .NyTitle h1 {
    font-weight: 700;
    font-size: 30px;
    color: var(--color);
  }

  .text1 .NyTitle h2 {
    font-size: 20px;
    color: #7EA8CC;
  }

  .text1 .desc1 {
    display: flex;
    flex-direction: column;
  }

  .item1 {
    padding: 30px 0;
    display: flex;
    grid-gap: 15px;
    border-bottom: 2px dashed #ACACAC;
  }

  .item1 img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .item1 h1 {
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    color: #888888;
  }

  .item1 p {
    font-size: 16px;
    line-height: 30px;
    color: #888888;
    max-width: 300px;
  }

  .img1 {
    width: 60%;
  }

  .img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 1440px) {
    .text1 {
      width: 45%;
      padding: 60px 30px;
      grid-gap: 5px;
    }

    .img1 {
      width: 55%;
    }
  }

  @media (max-width:1200px) {
    .text1 {
      width: 100%;
    }

    .img1 {
      width: 100%;
    }
  }

  @media (max-width:720px) {
    .text1 .NyTitle h1 {
      font-size: 24px;
    }

    .text1 .NyTitle h2 {
      font-size: 14px;
      color: #7EA8CC;
    }

    .text1 {
      padding: 30px 20px;
    }

    .item1 {
      padding-bottom: 10px;
      flex-wrap: wrap;
      grid-gap: 5px;
    }

    .item1 p {
      width: 100%;
      max-width: 100%;
    }
  }

  /* box2 */
  .Box2 {
    width: 100%;
    padding: 0 var(--w1600);
  }

  .Box2 .NyTitle h1 {
    text-align: center;
    margin: 60px 0;
  }

  .Box2 .NyTitle h1 b {
    font-weight: bold;
    color: var(--color);
  }

  .Box2 form {
    padding: 75px;
    position: relative;
    z-index: 2;
    background: #FFFFFF;
    box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .Box2 form h1.h1 {
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
    font-weight: 900;
    font-size: 32px;
    line-height: 56px;
    color: #fff;
  }

  .rt2 {
    width: 48%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .Box2 form .input1 {
    width: calc(50% - 15px);
    margin-bottom: 20px;
  }


  .Box2 form label h1 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
  }

  .Box2 form .input1 input {
    width: 100%;
    height: 45px;
    padding-left: 20px;
    background: #F2F5F8;
    border-radius: 6px;
  }

  .Box2 form .input2 {
    width: 48%;
    display: flex;
    flex-direction: column;
  }

  .Box2 form .input2 textarea {
    width: 100%;
    height: 100%;
    padding-top: 15px;
    padding-left: 30px;
    background: #F2F5F8;
    border-radius: 6px;
  }

  .Box2 form .input3 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .Box2 form .input3 h1 {
    width: 100%;
  }

  .Box2 form .input3 input {
    width: calc(100% - 200px);
    height: 45px;
    padding-left: 30px;
    background: #F2F5F8;
    border-radius: 6px;
  }

  .Box2 form .input3 img {
    width: 180px;
    height: 45px;
    margin-left: 20px;
    background: #F2F5F8;
    border-radius: 6px;
  }

  .Box2 form .input4 {
    width: 180px;
    height: 45px;
    background: #fff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color);
    font-weight: bold;
    margin: 0 auto;
    position: relative;
  }

  .Box2 form .input4 i {
    font-size: 26px;
    position: absolute;
    right: 15px;
  }

  @media (max-width: 1200px) {
    .Box2 form {
      margin-top: 45px;
      padding: 30px;
    }

    .Box2 form .input2 {
      width: 37%;
    }

    .rt2 {
      width: 60%;
    }

    .Box2 form .input1 {
      width: calc(50% - 5px);
    }
  }

  @media (max-width: 720px) {
    .Box2 form .input2 {
      width: 100%;
    }

    .rt2 {
      width: 100%;
    }

    .Box2 form .input2 textarea {
      height: 100px;
      margin-bottom: 20px;
    }

    .Box2 {
      padding-top: 60px;
    }
  }

  @media (max-width: 460px) {
    .Box2 form {
      padding: 20px;
    }

    .Box2 form .input1 {
      width: 100%;
    }

    .Box2 form .input3 img {
      width: 120px;
      height: 45px;
    }

    .Box2 form .input3 input {
      width: calc(100% - 120px);
    }
  }

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

  .map {
    width: 100%;
    height: 100%;
    background: #333333;
  }

  .raw-html-embed {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .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;
    }
  }