  /* 表单留言 */
  .message {
    position: relative;
  }

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

  form input,
  form textarea {
    background: #f5f5f5;
  }

  input.input1 {
    width: 48%;
    /* border-bottom: 1px solid #ccc; */
    margin-bottom: 20px;
    height: 50px;
    padding: 0 15px;
  }

  textarea.input {
    width: 100%;
    /* border-bottom: 1px solid #ccc; */
    margin-bottom: 20px !important;
    height: 100px;
    padding: 10px 15px;
  }

  input.input {
    width: 200px;
    /* border-bottom: 1px solid #ccc; */
    margin: 0;
    height: 50px;
    padding: 0 15px;
  }

  .input4 {
    width: 130px;
    height: 35px;
    background: var(--color);
    color: #fff;
    margin-top: 15px;
  }

  .codeBox a {
    background: #fff;
  }


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

  @media (max-width: 720px) {
    form input {
      height: 35px !important;
      font-size: 14px !important;
    }

    .codeBox a {
      height: 35px;
      background: #fff;
    }

    .codeBox a img {
      object-fit: contain;
      height: 100%;
    }

    input.input {
      width: 150px;
    }

    .input4 {
      margin-top: 0;
    }

  }

  @media (max-width: 460px) {
    .codeBox {
      width: 100%;
    }

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

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