  /* Box1 */
  .Box1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }


  .lt1 {
    width: 500px;
    padding-right: 90px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .lt1 .title h1 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .lt1 .title h2 {
    color: #000;
    font-size: 14px;
  }

  .text1 {
    display: flex;
    flex-direction: column;
    grid-gap: 45px;
  }

  .text1 .item {
    border-left: 4px solid var(--color);
    padding-left: 20px;
  }

  .text1 .item h1 {
    color: var(--color);
    font-size: 18px;
    margin-bottom: 5px;
  }

  .text1 .item h2 {
    color: #000;
    font-size: 14px;
  }

  .text1 .desc1 table {
    width: 100%;
  }

  .text1 .desc1 img {
    max-width: 120px;
  }

  .rt1 {
    width: calc(100% - 500px);
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
    padding: 60px;
  }

  .rt1 .titile {
    margin-bottom: 30px;
  }

  .rt1 .titile h1 {
    color: #141414;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .rt1 .titile h2 {
    color: #676767;
    font-size: 14px;
  }

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

    .lt1 {
      width: 100%;
      padding: 0;
    }

    .text1 {
      margin-top: 30px;
    }

    .rt1 {
      width: 100%;
    }
  }

  @media (max-width: 900px) {
    .rt1 {
      padding: 60px 30px;
    }
  }

  @media (max-width: 600px) {
    .text1 .desc1 img {
      max-width: 80px;
    }
  }


  /* Box2 */
  form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 30px;
  }

  label {
    display: flex;
    flex-wrap: wrap;
  }

  label h1 {
    width: 100%;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 10px;
    color: #585858;
  }

  label input {
    width: 100%;
    height: 50px;
    background: #fff;
    border: 1px solid #D1D5DC;
    padding-left: 15px;
  }

  label textarea {
    width: 100%;
    height: 150px;
    background: #fff;
    border: 1px solid #D1D5DC;
    padding-top: 15px;
    padding-left: 15px;
  }

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

  .input2 {
    width: 100%;
  }

  .input3 {
    width: 100%;
  }

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

  .input3 img {
    width: 210px;
    height: 50px;
    background: #fff;
  }

  .input4 {
    width: 120px;
    height: 45px;
    background: var(--color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
  }

  @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% - 100px);
    }

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

  }

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