  /* 地图 */

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



  /* 新加 */
  .NyBigBox {
    background: #F8F8F8;
    padding-top: 60px;
  }

  .aaspan {
    width: 100%;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1;
    color: #000000;
  }

  .aaspan a {
    font-size: 20px;
    line-height: 1;
    color: #000000;
  }

  @media (max-width: 640px) {
    .aaspan {
      font-size: 14px;
      line-height: 2;
      margin-bottom: 15px;
    }

    .aaspan a {
      font-size: 14px;
      line-height: 2;
    }

    .NyBigBox {
      padding-top: 30px;
    }
  }

  .bbTop {
    background: linear-gradient(90deg, #5ABE22 0%, #73D9A3 100%);
    margin-bottom: 45px;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .bbTop h1 {
    font-weight: bold;
    font-size: 30px;
    line-height: 1;
    color: #FFFFFF;
  }

  .bbTop img {
    height: 100%;
  }

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

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

    .bbTop img {
      height: 45px;
    }

  }



  /* box1 */
  .box1 {
    margin: 45px 0;
    display: flex;
    flex-wrap: wrap;
  }

  .box1 .text {
    width: 45%;
    padding: 60px;
    background: #fff;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .box1 .text h1 {
    font-weight: bold;
    font-size: 32px;
    line-height: 1;
    color: #474747;
    margin-bottom: 15px;
  }

  .box1 .text p {
    font-size: 24px;
    line-height: 2;
    color: #474747;
  }

  @media (max-width:1440px) {
    .box1 .text {
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
    }

    .box1 .text p {
      font-size: 18px;
    }
  }

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

  @media (max-width:992px) {
    .box1 .text {
      width: 100%;
      padding: 45px 30px;
    }
  }

  @media (max-width:640px) {
    .box1 .text h1 {
      font-size: 24px;
    }

    .box1 .text p {
      font-size: 16px;
    }
  }

  /* 地图 */
  .map {
    width: 55%;
    height: 520px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #EDEDED;
  }

  .map .my-map {
    width: 1920px;
    height: 960px;
    position: relative;
    left: 50%;
    top: 50%;
    margin-left: -960px;
    margin-top: -480px;
  }


  @media (max-width: 992px) {
    .map {
      width: 100%;
    }
  }

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

  /* 表单 */
  input,
  textarea {
    outline: none;
  }

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

  input.input1 {
    width: 48%;
    margin-bottom: 20px;
    height: 50px;
    padding: 0 15px;
  }

  textarea.input {
    width: 100%;
    margin-bottom: 20px !important;
    height: 100px;
    padding: 10px 15px;
  }

  input.input {
    width: 160px;
    margin: 0;
    height: 50px;
    padding: 0 15px;
  }

  .input4 {
    width: 175px;
    height: 50px;
    background: var(--color);
    color: #fff;
  }

  .box2 h1 {
    margin: 120px 0 90px;
    font-weight: 700;
    font-size: 42px;
    line-height: 1;
    color: #000000;
    text-align: center;
  }

  .message {
    background: #F3F3F3;
    padding: 60px;
  }

  .codeBox img {
    width: 130px;
    height: 50px;
    object-fit: contain;
  }

  form input,
  form textarea {
    background: #fff;
    border: 1px solid #C5C5C5;
  }

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

    input.input1 {
      width: 100%;
    }

    .codeBox {
      width: 100%;
    }

    .codeBox input.input {
      width: calc(100% - 130px);
    }

    .input4 {
      margin: 0 auto;
      margin-top: 30px;
    }
  }