html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  overflow-y: scroll;
}
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
code,
del,
dfn,
em,
img,
q,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}
ol,
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
a:active {
  outline: none;
}
body {
  background-color: #F6F6F6;
}
.w100 {
  display: block;
  width: 100%;
}
.container {
  width: 1438px;
  margin: 0 auto;
  color: #111;
}
header {
  background-color: #FFF;
}
header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 88px;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .container-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 44px;
  width: 1438px;
  margin: 0 auto;
}
header .container-head .image-container {
  position: absolute;
  left: 0;
  top: 44px;
  z-index: 9;
  width: 1438px;
  height: 572px;
  background-color: #fff;
}
header .container-head .image-container img {
  width: 1438px;
  height: 572px;
}
header .header-logo {
  width: 120px;
  height: 80px;
  overflow: hidden;
}
header .header-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
header .header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
header .header-menu li {
  margin-left: 120px;
}
header .header-menu a {
  font-size: 20px;
  color: #333;
}
header .header-menu a:hover {
  color: #FC6202;
}
header .header-menu2 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .header-menu2 li {
  margin-left: 0;
}
.copyright-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 70px 50px;
  background-color: #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.copyright-wrap a {
  color: #999;
}
.copyright-wrap .inner-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 22px;
  color: #999;
}
.copyright-wrap .inner-left p {
  margin-bottom: 20px;
}
.copyright-wrap .inner-right {
  width: 140px;
}
.fixed-btns {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 2;
}
.text-toast {
  position: fixed;
  z-index: 1002;
  left: 0;
  display: block;
  word-break: break-all;
  padding: 10px 20px;
  opacity: 0;
  max-width: 90%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  border-radius: 3px;
  overflow: hidden;
  top: 50%;
  margin-top: -50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-transform: translateZ(0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-transform: translateY(-10000px);
          transform: translateY(-10000px);
}
@-webkit-keyframes text-toast-on {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  98% {
    opacity: 0.1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-10000px);
            transform: translateY(-10000px);
  }
}
@keyframes text-toast-on {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  98% {
    opacity: 0.1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-10000px);
            transform: translateY(-10000px);
  }
}
.text-toast-on {
  -webkit-animation-name: text-toast-on;
          animation-name: text-toast-on;
}
.dialog-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
}
body {
  background: #FFF;
}
.form-wrap {
  width: 990px;
  padding: 80px 0 0;
}
.form-notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 30px 90px;
  font-size: 14px;
  color: #333;
}
.form-notice span {
  color: #F00;
}
.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.form-row .row-label {
  width: 90px;
  font-size: 16px;
  color: #666;
}
.form-row .row-right {
  width: 380px;
}
.form-row .row-right input,
.form-row .row-right select {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #dedede;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
  background-color: #fff;
  font-size: 16px;
}
.form-row .row-right textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #dedede;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
  background-color: #fff;
  font-size: 16px;
}
.submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 46px;
  border-radius: 23px;
  background-color: #F00;
  color: #FFF;
  font-size: 18px;
}
