  .NyContactBigBox {
    padding: 0;
  }


  /* box1 */
  .box1 {
    overflow: hidden;
    background: #EFF6FD;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
    flex-wrap: wrap;
  }

  .box1 .text1 {
    width: 35%;
    padding-right: 120px;
  }

  .box1 .map {
    overflow: hidden;
    width: 65%;
    height: 550px;
  }

  .box1 .text1 .desc {
    font-size: 16px;
    line-height: 2;
    color: #000000;
    margin-top: 45px;
    padding-bottom: 75px;
  }

  .box1 .text1 h3 {
    font-size: 16px;
    line-height: 1;
    color: #000000;
    margin-bottom: 30px;
  }

  .box1 .text1 .ewm {
    display: flex;
    grid-gap: 30px;
  }

  .box1 .text1 .ewm .item {
    width: 120px;
    line-height: 3;
    font-family: PuHuiTi85;
    font-size: 16px;
    line-height: 3;
    text-align: center;
    color: #00000080;
  }

  .box1 .text1 .ewm .item img {
    width: 100%;
  }

  @media (max-width: 1440px) {
    .box1 .text1 {
      padding-right: 60px;
    }
  }

  @media (max-width: 1200px) {
    .box1 {
      padding-top: 60px;
      padding-bottom: 60px;
    }

    .box1 .text1 {
      width: 40%;
      padding-right: 30px;
    }

    .box1 .map {
      width: 60%;
    }
  }

  @media (max-width: 1000px) {
    .box1 .text1 {
      width: 100%;
      padding-right: 0px;
      margin-bottom: 30px;
    }

    .box1 .map {
      width: 100%;
    }
  }

  @media (max-width: 720px) {
    .box1 .text1 .desc {
      margin-top: 15px;
      padding-bottom: 30px;
    }
  }

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

  /* 地图 */

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



  .map .raw-html-embed {
    width: 1920px;
    height: 960px;
    position: relative;
    left: 50%;
    top: 50%;
    margin-left: -960px;
    margin-top: -480px;
    background: #333333;
  }

  .map .my-map {
    width: 100%;
    height: 100%;
  }

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

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


  /* 留言 */
  .box2 {
    overflow: hidden;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-bottom: 100px;
    position: relative;
  }

  .box2::after {
    content: "";
    display: block;
    width: 100%;
    height: 150px;
    background: #EFF6FD;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .message {
    background: #fff;
    padding: 90px 120px;
    box-shadow: 0px 14px 30px rgba(0, 0, 0, 0.1);
  }

  .message .NyTitle {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
  }

  @media (max-width:1200px) {
    .message {
      padding: 45px 60px;
    }

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

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

  form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  form input,
  form textarea {
    padding: 0 15px;
    background: #fff;
    border: 1px solid #BDBDBD;

  }

  form .input1 {
    width: calc(50% - 20px);
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    height: 60px;
  }

  form textarea {
    width: 100%;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px !important;
    height: 175px;
    padding: 10px 15px;
    outline: none;
  }

  .codeBox {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    grid-gap: 20px;
  }

  .codeBox .input3 {
    width: 300px;
    border-bottom: 1px solid #ccc;
    margin: 0;
    height: 45px;
    padding: 0 15px;
  }

  .codeBox img {
    background: #fff;
    width: 120px;
    height: 45px;
    object-fit: cover;
  }

  .input4 {
    margin: 0 auto;
    margin-top: 30px;
    width: 220px;
    height: 63px;
    background: var(--color);
    color: #fff;
    border: 0px;
    font-size: 18px;
  }

  @media (max-width:1200px) {
    form .input1 {
      width: 48%;
      margin-bottom: 10px;
      height: 45px;
    }

    .input4 {
      width: 160px;
      height: 45px;
      font-size: 14px;
    }
  }

  @media (max-width:720px) {
    .codeBox .input3 {
      width: calc(100% - 140px);
    }

    .codeBox {
      width: 100%;
    }

    form .input1 {
      width: 100%;
    }

    form textarea {
      height: 100px;
    }
  }