audio,
b,
body,
body div,
dd,
dl,
dt,
em,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
i,
iframe,
img,
input,
label,
li,
mark,
menu,
nav,
ol,
p,
section,
span,
strong,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  word-wrap: break-word;
  word-break: break-all;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  outline: none
}

body,
button,
input,
option,
select,
td,
textarea {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none
}

body,
html {
  height: 100%;
  background-color: #fff
}

b,
em,
i,
var {
  font-style: normal;
  font-weight: 400
}

li,
ol,
ul {
  list-style: none
}

a,
a:active,
a:hover,
a:link {
  text-decoration: none;
  color: #666
}

a img,
img {
  border: none
}

body {
  font: normal 400 16px Microsoft Yahei, Arial;
  color: #666
}

.clearfix {
  zoom: 1
}

.clearfix:after,
.clearfix:before {
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  content: ""
}

.fl {
  float: left !important
}

.fr {
  float: right !important
}

img {
  width: 100%;
  height: 100%
}

h2 {
  font-size: 30px
}

h2,
h3 {
  font-weight: 400;
  color: #333
}

h3 {
  font-size: 20px
}

.slantBar {
  display: inline-block;
  width: 26px;
  height: 16px;
  overflow: hidden;
  background: url(../img/slant.png) no-repeat 50%
}

.more {
  padding-right: 12px;
  font-size: 14px;
  font-weight: 400;
  color: #548ef8;
  background: url(../img/more.png) no-repeat 100%
}

.section {
  width: 1120px;
  margin: 0 auto
}

.bannner {
  width: 100%;
  height: 400px;
  margin-top: 88px;
  text-align: center
}

.header {
  z-index: 1000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 88px;
  background-color: #fff;
  transition: height .15s linear
}

.header .logo {
  float: left;
  display: block;
  width: 140px;
  height: 88px;
  line-height: 88px;
  /* background: url(../img/redCF.png) no-repeat 50%; */
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  text-align: left;
  color: #333;
}

.header .nav {
  float: right;
  height: 100%;
  cursor: pointer
}

.header .one-nav-li {
  position: relative;
  float: left;
  height: 88px;
  line-height: 88px;
  padding-left: 56px;
  text-align: center
}

.header .one-nav-a {
  position: relative;
  display: block;
  color: #333
}

.header .one-nav-a:after {
  display: block;
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 19px;
  left: 0;
  background: #194ac3;
  opacity: 0;
  transition: transform .2s ease-out, opacity .2s ease-out;
  transform-origin: 50% 0;
  transform: scaleX(.01)
}

.header .two-nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 20px;
  width: 120px;
  line-height: 30px;
  -webkit-animation: two_nav_hide .2s ease-out both;
  animation: two_nav_hide .2s ease-out both
}

.header .two-nav .two-nav-li {
  width: 100px;
  padding: 5px 0 5px 20px
}

.header .two-nav .two-nav-li a {
  display: block;
  color: #999;
  opacity: .8
}

.header .two-nav .two-nav-li a:hover {
  display: block;
  color: #999;
  opacity: 1
}

.header.twoNavShow {
  height: 240px;
  background-color: #fff
}

.header.twoNavShow .logo {
  background: url(../img/redCF.png) no-repeat 50%
}

.header.twoNavShow .one-nav-li a {
  color: #333
}
.header .one-nav-li:hover .one-nav-a:after {
  transform: scale(1);
  opacity: 1
}
.header .twoNavCurr .one-nav-a:after {
  transform: scale(1);
  opacity: 1
}

.header .twoNavCurr .two-nav {
  display: block;
  -webkit-animation: two_nav_show .2s ease-out both;
  animation: two_nav_show .2s ease-out both
}

.footer {
  width: 100%;
  padding: 60px 0 30px;
  background-color: #f5f5f5
}

.footer .links {
  height: 220px;
  background: url(../img/fotterCF.png) no-repeat 100% 0
}

.footer .links dl {
  float: left;
  width: 120px;
  margin-right: 80px;
  text-align: left;
  line-height: 40px
}

.footer .links dt a {
  font-size: 20px;
  color: #333
}

.footer .remark {
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  color: #999
}

.footer .remark img {
  width: 18px;
  height: 18px;
  vertical-align: text-bottom;
  margin-right: 5px
}

.footer .remark a {
  color: #999
}

@-webkit-keyframes two_nav_show {
  0% {
    transform: translateY(-30px);
    opacity: 0
  }

  to {
    transform: translate(0);
    opacity: 1
  }
}

@keyframes two_nav_show {
  0% {
    transform: translateY(-30px);
    opacity: 0
  }

  to {
    transform: translate(0);
    opacity: 1
  }
}

@-webkit-keyframes two_nav_hide {
  0% {
    transform: translate(0);
    opacity: 1
  }

  to {
    transform: translateY(-30px);
    opacity: 0
  }
}

@keyframes two_nav_hide {
  0% {
    transform: translate(0);
    opacity: 1
  }

  to {
    transform: translateY(-30px);
    opacity: 0
  }
}

.tabs {
  margin-top: 88px;
  width: 100%;
  height: 88px;
  background-color: #fff
}

.tabs a {
  float: left;
  height: 66px;
  margin-top: 20px;
  font-size: 26px;
  line-height: 66px
}

.tabs a.curr {
  border-bottom: 2px solid #548ef8;
  color: #333
}

.tabs span {
  float: left;
  width: 1px;
  height: 16px;
  margin: 48px 30px 0;
  background-color: #e6e6e6
}

.main {
  padding: 60px 0;
  background-color: #f9f9f9
}

.sideNav {
  float: left;
  width: 208px;
  padding: 30px;
  background-color: #fff;
  border: 1px solid #e6e6e6
}

.sideNav h2 {
  margin-bottom: 20px
}

.sideNav li {
  line-height: 40px;
  font-size: 20px
}

.sideNav .check {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: -2px;
  margin-right: 10px;
  vertical-align: middle;
  cursor: pointer;
  background: url(../img/check.png) no-repeat 50%
}

.sideNav .checked {
  background-image: url(../img/checked.png)
}

.sideNav label {
  display: inline-block;
  cursor: pointer
}

.recruits {
  float: right;
  width: 820px
}

.recruit {
  width: 740px;
  min-height: 360px;
  margin-bottom: 20px;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(4, 0, 0, .1)
}

.recruit .desc {
  font-size: 20px;
  font-weight: 300;
  line-height: 40px
}

.recruit .descNo {
  padding-bottom: 300px
}

.recruit dl {
  padding: 20px 0;
  line-height: 40px
}

.recruit .email,
.recruit dt {
  font-size: 20px;
  color: #333
}

.recruit .email em {
  color: #078de5
}

.recruit-no {
  margin-top: 10px;
  height: 670px;
  text-align: center;
  background: #f9f9f9 url(../img/noRecruit.jpg) no-repeat 50%;
  background-size: cover
}

.recruit-no i {
  display: none
}