  /* 基本重置 */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  ol,
  ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  a {
    color: inherit;
    /* 使用父元素的颜色 */
    text-decoration: none;
  }

  body {
    color: #333;
  }

  .page {
    max-width: 1920px;
    margin: 0 auto;
  }


  .main {
    padding-top: 64px;
  }

  .home-wrap {
    position: relative;
    width: 1140px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    box-shadow: 0 1px 10px #eee;
  }

  .home-wrap .title {
    font-size: 18px;
    font-weight: normal;
    color: #333;
    margin-bottom: 20px;
  }

  .home-wrap .content {
    width: 60%;
    margin: 0 auto;
  }

  .module_field {
    overflow: hidden;
    zoom: 1;
    padding: 5px 0;
    clear: both;
  }

  .module_field .c_left {
    float: left;
    width: 120px;
    padding-right: 30px;
    color: #333;
    font-size: 16px;
    line-height: 46px;
    text-align: right;
  }

  .module_field .middle {
    display: block;
    overflow: hidden;
    zoom: 1;
  }

  .module_field .middle .input,
  .module_field .middle textarea {
    border: 1px solid #e5e5e5;
    background: #fff;
    float: none !important;
    width: 100% !important;
    padding: 10px 16px;
    font-size: 14px;
    transition: all 0.3s linear;
    vertical-align: top;
    box-sizing: border-box;
    color: #666;
    line-height: 24px;
    border-radius: 3px;
  }

  .module_field .middle textarea {
    height: auto;
  }

  .module_field::after {
    content: "";
    display: table;
    clear: both;
  }

  .content .btn-area {
    padding: 20px 0;
    padding-left: 100px !important;
  }

  .btn-area .btn-submit,
  .btn-area .reset {
    display: inline-block;
    width: 49%;
    height: 44px;
    border: 0;
    font-size: 16px;
    line-height: 44px;
    transition: all 0.3s linear;
    z-index: 1;
    vertical-align: top;
    cursor: pointer;
    border-radius: 3px;
  }

  .btn-area .btn-submit {
    background: #3778fa;
    color: #fff;
  }

  .btn-area .reset {
    background: #e7e7e7;
    color: #333;
  }

  @media screen and (min-width: 769px) and (max-width: 1500px) {
    .main {
      padding-top: 116px;
    }

  }

  @media (max-width: 960px) {
    .main {
      padding-top: 64px;
    }

    .home-wrap {
      width: 100%;
		margin:0 auto;
      padding: 15px;
      box-shadow: 0;
    }

    .home-wrap .title {
      font-size: 16px;
    }

    .home-wrap .content {
      width: 90%;
    }

    .module_field .c_left {
      width: 75px;
      font-size: 14px;
      text-align: left;
 		padding-right: 0px;
    }

    .module_field .middle .input,
    .module_field .middle textarea {
      font-size: 12px;
    }

    .content .btn-area {
      padding-left: 0px !important;
    }

    .btn-area .btn-submit,
    .btn-area .reset {
      font-size: 14px;
    }
  }
