  body {
    background: #F7F9FC;
  }

  .NyContactBigBox {
    padding: 0;
    background: #fff0;
    overflow: visible;
  }

  /* box1 */
  .Box1 {
    width: 100%;
    padding: 0 var(--w1600);
    margin-top: -100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 45px;
  }

  .item1 {
    background: #FFFFFF;
    border-radius: 20px;
    height: 475px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
  }

  .item1 img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: 0.5s;
  }

  .item1:hover img {
    transform: rotateY(360deg);
  }

  .item1 h1 {
    color: #5C5C5C;
    text-align: center;
    font-size: 16px;
    line-height: 2;
  }

  .item1 p {
    color: #5C5C5C;
    font-size: 24px;
    line-height: 2;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  @media (max-width: 1440px) {
    .Box1 {
      margin-top: -60px;
    }

    .item1 {
      height: 375px;
    }
  }

  @media (max-width:1200px) {
    .Box1 {
      margin-top: 90px;
      grid-gap: 15px;
    }

    .item1 {
      height: 275px;
    }

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

  @media (max-width:720px) {
    .Box1 {
      margin-top: 60px;
      grid-template-columns: repeat(1, 1fr);
    }

    .item1 {
      height: auto;
      padding: 45px 15px;
    }
  }

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

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

  @media (max-width:720px) {
    .Box2 {
      padding: 60px var(--w1600);
    }
  }

  .Box2 .titile h1 {
    color: #000;
    text-align: center;
    font-size: 32px;
    line-height: 2;
    font-weight: 700;
  }

  .Box2 .titile h2 {
    color: #626262;
    text-align: center;
    font-size: 16px;
    line-height: 2;
    text-transform: uppercase;
  }

  form {
    margin-top: 45px;
    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 input {
    width: 100%;
    height: 70px;
    background: #fff;
    padding-left: 15px;
  }

  label textarea {
    width: 100%;
    height: 100px;
    background: #fff;
    padding-top: 15px;
    padding-left: 15px;
  }

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

  .input2 {
    width: 100%;
  }

  .input3 {
    width: 100%;
  }

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

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

  .input4 {
    margin: 0 auto;
    width: 250px;
    height: 70px;
    background: var(--color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #FFFFFF;
  }

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

  }

  @media (max-width:720px) {
    form {
      margin-top: 30px;
    }

    label h1 {
      font-size: 16px;
    }

    label input {
      height: 45px;
    }

    .input1 {
      width: 100%;
    }

    form {
      grid-gap: 15px 0;
    }

    label h1 {
      margin-bottom: 5px;
    }

    label textarea {
      height: 100px;
    }

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

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

    .input4 {
      margin: 0 auto;
      margin-top: 30px;
      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;
    }
  }