@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  text-decoration: none !important;
  list-style: none;
  outline: none;
  border: 0;
  font-family: 微软雅黑;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

ul {
  margin-bottom: 0 !important; }

h1, h2, h3, h4, h5, b {
  font-weight: normal; }

body {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 16px; }

body {
  background-color: #f8fafc;
  color: #333;
  font-family: Helvetica, Microsoft YaHei, Arial, sans-serif;
  font-size: 14px;
  padding: 0;
  margin: 0;
  text-align: left;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  body input, body textarea {
    font-size: 14px;
    outline: none;
    -webkit-appearance: none;
    /*去除系统默认的样式*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /* 点击高亮的颜色*/ }
  body input[type=radio] {
    display: inline-block;
    vertical-align: middle;
    /* 当成为行内块元素时它就可以垂直居中了 */
    width: 20px;
    height: 20px;
    -webkit-appearance: none;
    /* 清除原有的样式 */
    background-color: transparent;
    border: 0;
    outline: 0 !important;
    /* 去掉点击后外面可能会出现的蓝框 */
    line-height: 20px;
    color: #d8d8d8; }
  body input[type=radio]:after {
    /* //在input的内容之后插入新内容 */
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 14px;
    font-size: 16px;
    color: #fff;
    border: 1px solid #ddd;
    background-color: #fff;
    box-sizing: border-box;
    /* 规定两个并排的带边框的框 */ }
  body input[type=radio]:checked:after {
    /* 选中之后的样子 */
    content: "L";
    transform: matrix(-0.796044, -0.642788, -0.642788, 0.796044, 0, 0);
    /* 2D变换旋转，还有平移和缩放，平时旋转用rotate，这个写法是比较复杂一点的写法，
    括号里面的六个值来得矩阵，实现2D变换，更详细的大家去百度查。 */
    -webkit-transform: matrix(-0.796044, -0.642788, -0.642788, 0.796044, 0, 0);
    border-color: #4ea1f5;
    background-color: #4ea1f5; }
  body input[type=checkbox] {
    display: inline-block;
    vertical-align: middle;
    /* 当成为行内块元素时它就可以垂直居中了 */
    width: 18px;
    height: 18px;
    -webkit-appearance: none;
    /* 清除原有的样式 */
    background-color: transparent;
    border: 0;
    outline: 0 !important;
    /* 去掉点击后外面可能会出现的蓝框 */
    line-height: 20px;
    color: #d8d8d8; }
  body input[type=checkbox]:after {
    /* //在input的内容之后插入新内容 */
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    line-height: 14px;
    font-size: 16px;
    color: #fff;
    border: 1px solid #ddd;
    background-color: #fff;
    box-sizing: border-box;
    /* 规定两个并排的带边框的框 */ }
  body input[type=checkbox]:checked:after {
    /* 选中之后的样子 */
    content: "L";
    transform: matrix(-0.796044, -0.642788, -0.642788, 0.796044, 0, 0);
    /* 2D变换旋转，还有平移和缩放，平时旋转用rotate，这个写法是比较复杂一点的写法，
    括号里面的六个值来得矩阵，实现2D变换，更详细的大家去百度查。 */
    -webkit-transform: matrix(-0.796044, -0.642788, -0.642788, 0.796044, 0, 0);
    border-color: #4ea1f5;
    background-color: #4ea1f5; }
  body .red {
    color: red; }
  body .black {
    color: #333333; }
  body .blue {
    color: #4ea1f5; }
  body .orange {
    color: #ff951e; }
  body .gold {
    color: #BC7D00; }
  body .sad {
    color: saddlebrown; }
  body .gray {
    color: gray; }
  body .green {
    color: #169c5c; }
  body .hide {
    display: none; }
  body .flex_start {
    display: flex;
    align-items: flex-start !important; }
  body .cursor-point {
    cursor: pointer !important; }
  body .bg-disabled {
    background-image: linear-gradient(-30deg, #6b9aec, #4f87e8) !important;
    color: #fff !important; }

/*动画*/
@-webkit-keyframes swi {
  from {
    -webkit-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0); }
  to {
    -webkit-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg); } }
@keyframes swi {
  from {
    -webkit-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0); }
  to {
    -webkit-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg); } }
.clear {
  clear: both; }

::-webkit-scrollbar {
  width: 5px;
  background-color: #ccc; }

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px;
  background-color: transparent;
  border-radius: 10px; }

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px transparent;
  background-color: #333333; }

.top-banner {
  width: 750px;
  margin: 0 auto; }
  .top-banner img {
    width: 100%;
    display: block; }

.form-box {
  width: 750px;
  padding: 25px;
  background-color: #fff;
  margin: 0px auto 30px;
  box-shadow: 0 0 10px #ebebeb;
  border-radius: 0px 0px 5px 5px; }
  .form-box .title h3 {
    color: #333;
    font-weight: bold; }
  .form-box .title .desc {
    margin-top: 10px;
    line-height: 26px; }
    .form-box .title .desc a {
      color: #333; }
  .form-box #formData .form-group {
    margin-top: 30px; }
    .form-box #formData .form-group .input-group {
      margin-top: 5px;
      display: flex;
      align-items: center;
      border: 1px solid #ebebeb;
      border-radius: 5px;
      overflow: hidden;
      width: 50%; }
      .form-box #formData .form-group .input-group.checkbox {
        display: block;
        border: none;
        width: 100%; }
        .form-box #formData .form-group .input-group.checkbox label {
          margin-right: 20px;
          margin-bottom: 10px; }
          .form-box #formData .form-group .input-group.checkbox label input {
            margin-top: 0px; }
          .form-box #formData .form-group .input-group.checkbox label span {
            margin-left: 5px; }
      .form-box #formData .form-group .input-group .fa {
        font-size: 16px;
        width: 25px;
        text-align: center; }
        .form-box #formData .form-group .input-group .fa.fa-mobile-phone {
          font-size: 20px; }
      .form-box #formData .form-group .input-group input {
        border: none;
        box-shadow: none;
        width: calc(100% - 120px); }
      .form-box #formData .form-group .input-group input:focus {
        box-shadow: none; }
      .form-box #formData .form-group .input-group.phone a {
        width: 120px;
        height: 38px;
        line-height: 38px;
        padding: 0 5px;
        display: block;
        color: #fff;
        text-align: center;
        background-color: #ff4242; }
  .form-box a.submit {
    margin: 60px auto 20px;
    width: 180px;
    background-color: #ff4242;
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    border-radius: 5px; }

.success-box {
  text-align: center;
  padding: 20px 40px; }
  .success-box h4 {
    font-weight: bold; }
  .success-box img {
    display: block;
    margin: 10px auto; }
  .success-box .desc a {
    color: #333; }

@media only screen and (max-width: 750px) {
  .top-banner {
    width: 100%;
    overflow: hidden; }
    .top-banner img {
      width: 100%;
      display: block; }

  .form-box {
    width: 100%;
    padding: 10px;
    overflow-x: hidden; }
    .form-box .title h3 {
      font-size: 18px; }
    .form-box #formData .form-group .input-group {
      width: 100%; }
      .form-box #formData .form-group .input-group.checkbox label {
        margin-bottom: 10px !important; }
    .form-box a.submit {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      margin: 0;
      border-radius: 0;
      z-index: 100; } }

/*# sourceMappingURL=style.css.map */
