    /* box1 */
    .Box1 {
      background: linear-gradient(180deg, rgba(0, 62, 152, 0.15) 0%, rgba(0, 62, 152, 0.05) 100%);
      padding: 60px var(--container);
      position: relative;
      z-index: 3;
      display: flex;
      grid-gap: 30px;
    }

    .Box1 .item1 {
      width: 100%;
      background: #fff;
      padding: 30px;
      display: flex;
      flex-direction: column;
    }

    .Box1 .item1 h1 {
      color: #000;
      font-family: MiSans2;
      font-size: 20px;
    }

    .Box1 .item1 p {
      color: #000;
      font-size: 20px;
      line-height: 1.5;
      margin: 15px 0;
    }

    .Box1 .item1 img {
      width: 48px;
      height: 48px;
      object-fit: contain;
      display: block;
      margin-left: auto;
      margin-right: 0;
      margin-bottom: 0;
      margin-top: auto;
    }

    @media (max-width: 1200px) {
      .Box1 .item1 h1 {
        font-size: 16px;
      }

      .Box1 .item1 p {
        font-size: 14px;
      }
    }

    @media (max-width: 900px) {
      .Box1 {
        flex-wrap: wrap;
        grid-gap: 15px;
      }

      .Box1 .item1 {
        padding: 15px;
      }
    }

    /* Box2 */
    .NyBigBox {
      overflow: visible;
    }

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

    .Box2 .lt2 {
      width: 45%;
      max-width: 600px;
      height: 150px;
      position: sticky;
      top: 120px;
    }

    .Box2 .lt2 .desc2 {
      margin-top: 10px;
      color: rgba(0, 0, 0, 0.50);
      font-size: 20px;
    }

    .Box2 form {
      width: 50%;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      grid-gap: 60px 45px;
    }

    .Box2 label {
      display: flex;
      flex-wrap: wrap;
      border-bottom: 1px solid rgba(0, 0, 0, 0.50);
    }

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

    .Box2 label input {
      width: 100%;
      height: 60px;
      background: #fff;
      outline: none;
    }


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

    .Box2 .input2 {
      width: 100%;
    }

    .Box2 .input3 {
      width: 100%;
    }

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

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



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

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

      .Box2 label h1 {
        font-size: 16px;
      }

      .Box2 label input {
        height: 45px;
      }

      .Box2 .input1 {
        width: 100%;
      }

      .Box2 form {
        grid-gap: 15px 0;
      }

      .Box2 label h1 {
        margin-bottom: 5px;
      }

      .Box2 label textarea {
        height: 100px;
      }

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

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

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

    @media (max-width: 600px) {
      .Box2 .lt2 {
        width: 100%;
        position: unset;
      }

      .Box2 form {
        margin: 0;
        width: 100%;
      }
    }

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