/*
*这里的值严格按照UI设计图标注值来进行设置
*/
/*
*颜色
*/
/*
*页面的边距
*/
/*
*字体
*/
/*
*头像
*/
/*
 * 按钮
 */
/*
*对常见的多行样式进行了方法封装，方便调用，加快开发效率
*/
html,
body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background-color: #fff;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
  font-weight: initial !important;
  font-size: 14px !important;
  color: #333 !important;
}
html *,
body * {
  outline: none;
  text-decoration: none !important;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  font-style: normal;
}
ul,
p {
  margin: 0;
  padding: 0;
}
.e {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.f {
  display: flex;
}
.f-c {
  display: flex;
  flex-direction: column;
}
.a-c {
  display: flex;
  align-items: center;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-weight: initial;
  font-size: 12px;
  color: #999;
  resize: none;
}
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
/*定义滚动条轨道 内阴影+圆角*/
*::-webkit-scrollbar-track {
  border-radius: 10px;
  /*滚动条的背景区域的圆角*/
  background-color: transparent;
  /*滚动条的背景颜色*/
}
/*定义滑块 内阴影+圆角*/
*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  /*滚动条的圆角*/
  background-color: #ddd;
  /*滚动条的背景颜色*/
}
.h {
  cursor: pointer;
}
.h:hover {
  color: #DD1111;
  border-color: #DD1111;
}
input {
  -webkit-user-select: auto;
}
.base-banner {
  position: relative;
}
.base-banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: flex;
}
.base-banner div {
  position: absolute;
  top: 56px;
  width: 100%;
  left: 0;
  right: 0;
  width: 1200px;
  margin: 0 auto;
}
.base-banner div h1 {
  font-weight: 800;
  font-weight: initial;
  font-size: 34px;
  color: #fff;
  line-height: 28px;
}
.base-banner div em {
  margin: 21px 0 24px 0;
  display: block;
  width: 61px;
  height: 3px;
  background: #fff;
}
.base-banner div span {
  height: 14px;
  font-size: 14px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #ffffff;
  line-height: 14px;
}
.base-nav {
  width: 1200px;
  margin: 0 auto;
  padding: 22px 0;
  font-weight: initial;
  font-size: 14px;
  color: #999;
}
.base-nav a {
  color: #999;
  cursor: pointer;
}
.base-nav a:hover {
  color: #DD1111;
  border-color: #DD1111;
}
.base-nav .active {
  color: #DD1111;
}
.base-nav em {
  margin: 0 10px;
}
.base-content {
  width: 1200px;
  margin: 0 auto;
}
.base-content .menu {
  vertical-align: top;
  display: inline-block !important;
  width: 280px;
  min-width: 280px;
  border: 1px solid #e6e6e6;
}
.base-content .menu h2 {
  width: 100%;
  background: #DD1111;
  padding: 12px 16px;
  font-weight: bold;
  font-weight: initial;
  font-size: 16px;
  color: #fff;
}
.base-content .menu a {
  display: block !important;
  cursor: pointer;
  font-weight: initial;
  font-size: 14px;
  color: #666;
  font-weight: 400;
  margin: 0 26px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.base-content .menu a:last-child {
  border-bottom: none;
}
.base-content .menu a:hover {
  color: #DD1111;
}
.base-content .menu a:hover i {
  color: #DD1111;
  width: auto;
}
.base-content .menu a i {
  width: 0;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}
.base-content .menu .active {
  color: #DD1111;
}
.base-content .menu .active i {
  vertical-align: text-top;
  color: #DD1111;
  width: initial;
}
.base-page {
  width: 100%;
  display: block !important;
  margin-bottom: 40px;
  padding: 0 320px;
}
.base-page a {
  font-weight: initial;
  font-size: 14px;
  color: #999;
  margin: 0;
  padding: 10px;
  line-height: 1;
  border: 1px solid #ccc;
  cursor: pointer;
}
.base-page a:hover {
  background: #DD1111;
  color: #fff;
  border-color: #DD1111;
}
.base-page a:first-child {
  border-radius: 6px 0 0 6px;
}
.base-page a:last-child {
  border-right: 1px solid #ccc;
  border-radius: 0 6px 6px 0;
}
.fr {
  float: right !important;
}
.center {
  width: 1200px;
  margin: 0 auto;
}
.swiper-pagination {
  position: absolute;
  z-index: 20;
  bottom: 10px;
  width: 100%;
  text-align: center;
}
.swiper-pagination-switch {
  display: inline-block;
  width: 20px;
  height: 4px;
  background: #fff;
  opacity: 1;
  border-radius: 0px;
  cursor: pointer;
  margin: 0 5px;
}
.swiper-active-switch {
  background: #DD1111;
}
.d-h {
  cursor: pointer;
  transition: all 0.3s linear;
}
.d-h:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.el-dropdown-menu__item:focus,
.el-dropdown-menu__item:not(.is-disabled):hover {
  background-color: #ffecec !important;
  color: #DD1111 !important;
}
@media screen and (max-width:1024px) {
  .base-banner img {
    height: 190px !important;
  }
  .base-banner div {
    width: 100% !important;
    top: 20px;
    left: 20px;
  }
  .base-banner div em {
    margin: 20px 0;
  }
  .base-nav {
    padding: 20px;
    width: 100% !important;
  }
  .base-content {
    width: 100% !important;
    flex-direction: column;
  }
  .base-content .menu {
    width: 100%;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .base-content .menu a {
    height: 60px;
    line-height: 20px;
    display: inline-block !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    width: 25%;
    margin: 0;
    padding: 20px 5px;
    border: 1px solid #eee;
    border-bottom: 1px solid #eee !important;
    border-top: none;
    border-left: none;
    float: left;
    text-align: center;
  }
  .base-page {
    padding: 0 !important;
    text-align: center;
    display: inline-block;
  }
}
.ie8-ico {
  display: none !important;
}
.recruitList {
  background: #fff;
  overflow: hidden;
  padding-bottom: 50px;
}
.recruitment_dl {
  margin: 0px auto;
  position: relative;
  z-index: 9;
  overflow: hidden;
  background: #fff;
}
.recruitment_dl dt {
  overflow: hidden;
  background: #d6000f;
}
.recruitment_dl dd span,
.recruitment_dl dt span {
  display: block;
  width: 240px;
  height: 50px;
  overflow: hidden;
  float: left;
  display: inline;
  font-size: 15px;
  color: #fff;
  text-align: left;
  line-height: 50px;
  text-align: center;
}
.recruitment_dl dd span {
  display: block;
  width: 240px;
  height: 50px;
  overflow: hidden;
  float: left;
  display: inline;
  font-size: 15px;
  color: #666;
  text-align: left;
  line-height: 50px;
  text-align: center;
}
.recruitment_dl dd a:hover span {
  color: #d6000f;
}
.recruitment_dl dd {
  overflow: hidden;
  border-bottom: 1px dotted #e1e1e1;
}
.recruitment_dl dd.hover {
  border: none;
}
.recruitment_dl dd span.span_1,
.recruitment_dl dt span.span_1 {
  width: 290px;
  padding-left: 20px;
  text-align: left;
}
.recruitment_dl dd span.span_3,
.recruitment_dl dt span.span_3 {
  width: 260px;
}
.recruitment_dl dd span.span_4,
.recruitment_dl dt span.span_4 {
  width: 500px;
}
.recruitment_dl dd span.span_4 span,
.recruitment_dl dt span.span_4 span {
  width: 420px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.recruitment_dl dd span.span_4 b,
.recruitment_dl dt span.span_4 b {
  margin-left: 20px;
}
/*.recruitment_dl dt span.span_4{
    text-align: center !important;
}*/
.recruitment_dl dd span.span_2,
.recruitment_dl dt span.span_2 {
  width: 150px;
  padding-left: 0px;
  text-align: right;
  padding-right: 20px;
}
#mobileConH {
  display: none;
}
@media screen and (max-width: 1024px) {
  .join-us {
    padding-top: 60px;
  }
  .base-banner,
  .base-nav {
    background: #fff;
  }
  .base-nav {
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
  }
  #footer .record,
  #footer .code,
  #footer .link,
  #footer .logo {
    display: none !important;
  }
  .recruitList {
    display: none;
  }
  body {
    background: #f1f1f1 !important;
  }
  #mobileConH {
    display: block;
  }
  #mobileWrap {
    margin: 0 auto;
  }
  #mobileTop {
    clear: both;
    position: fixed;
    z-index: 5;
    width: 100%;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
  }
  #mobileCon {
    overflow: hidden;
    overflow-y: auto;
    clear: both;
    background: #f1f1f1;
    position: relative;
    z-index: 4;
  }
  #mobileFooter {
    clear: both;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 4;
  }
  #mobileMenu {
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    width: calc(100vw - 2.25rem);
    z-index: 99;
    background: #fff;
    left: calc(2.25rem - 100vw);
    overflow: hidden;
    overflow-y: auto;
  }
  #mobileBg {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.3);
    z-index: 50;
    left: 0;
    top: 0px;
    z-index: 6;
    display: none;
  }
  #mobileConH {
    overflow: hidden;
    /*min-height: calc(100vh - 4.5rem);*/
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #mobileCon.o-h {
    overflow: hidden !important;
  }
  #mobileTop.hide,
  #mobileCon.hide,
  #mobileFooter.hide,
  #mobileMenu.hide {
    -webkit-transform: translateX(calc(100vw - 2.25rem));
    transition: all 770ms cubic-bezier(0.51, 0.04, 0.12, 0.99);
  }
  /*导航展开*/
  #mobileTop.show,
  #mobileCon.show,
  #mobileFooter.show,
  #mobileMenu.show {
    -webkit-transform: translateX(0);
    transition: all 770ms cubic-bezier(0.51, 0.04, 0.12, 0.99);
  }
  /*导航关闭*/
  #mobileTop.rightHide,
  #mobileCon.rightHide,
  #mobileFooter.rightHide,
  #mobileMenu.rightHide {
    -webkit-transform: translateX(-100%);
    transition: all 0.3s linear;
  }
  /*导航展开*/
  #mobileTop.rightShow,
  #mobileCon.rightShow,
  #mobileFooter.rightShow,
  #mobileMenu.rightShow {
    -webkit-transform: translateX(0);
    transition: all 0.3s linear;
  }
  #mobileBg.hide {
    -webkit-transform: translateX(calc(100vw - 2.25rem));
    transition: all 770ms cubic-bezier(0.51, 0.04, 0.12, 0.99);
  }
  #mobileBg.show {
    transition: all 770ms cubic-bezier(0.51, 0.04, 0.12, 0.99);
  }
  .recruit_dl {
    overflow: hidden;
    padding: 0.25rem;
    background: #fff;
  }
  .recruit_dl dd {
    overflow: hidden;
    padding-top: 0.25rem;
  }
  .recruit_dl dt {
    padding: 0.75rem 0.5rem;
    background: #DD1111;
    color: #fff;
    overflow: hidden;
  }
  .recruit_dl dt .span_1 {
    text-align: left;
    width: 30%;
    display: inline-block;
    float: left;
  }
  .recruit_dl dt .span_2 {
    width: 10%;
    display: inline-block;
    float: left;
  }
  .recruit_dl dt .span_3 {
    width: 30%;
    float: left;
    display: inline-block;
    text-align: center;
  }
  .recruit_dl dt .span_4 {
    width: 30%;
    float: left;
    display: inline-block;
    text-align: left;
  }
  .recruit_dl dt .span_5 {
    width: 10%;
    float: left;
    display: inline-block;
  }
  .recruit_a {
    display: block;
    overflow: hidden;
    height: 36px;
    background: #e7ecee;
    padding: 0px 0.5rem;
  }
  .recruit_a .iconfont {
    font-size: 1em;
    color: #FF7E00;
    font-weight: bold;
  }
  .recruit_a span {
    display: block;
    overflow: hidden;
    float: left;
    display: inline;
    font-size: 13px;
    color: #666;
    text-align: left;
    height: 36px;
    line-height: 36px;
    text-align: center;
padding-right:5px;
  }
  .recruit_a span:nth-child(1) {
    text-align: left;
    width: 30%;
  }
  .recruit_a span:nth-child(2) {
    width: 30%;
    text-align: left;
  }
  .recruit_a span:nth-child(3) {
    width: 30%;
  }
  .recruit_a span:nth-child(4) {
    width: 10%;
  }
  .recruit_a span:nth-child(5) {
    width: 10%;
    background: url(../images/rucruitIcon.png) no-repeat right center;
    background-size: 12px 12px;
  }
  .recruit_dl dd.hover .recruit_a span:nth-child(5) {
    background: url(../images/rucruitIcon_h.png) no-repeat right center;
  }
  .recruitCont {
    display: none;
    overflow: hidden;
  }
  .recruitCont .articleBox {
    font-size: 0.6rem;
    line-height: 1rem;
  }
  .goJoin {
    display: block;
    width: 100px;
    height: 1.5rem;
    overflow: hidden;
    font-size: 0.6rem;
    color: #fff !important;
    text-align: center;
    line-height: 1.5rem;
    background: #ff7e00;
    margin-left: 0.5rem;
  }
  .recruitForm_dl {
    overflow: hidden;
    padding: 0.25rem 0.5rem;
  }
  .recruitForm_dl dd {
    padding: 0.25rem 0px;
    overflow: hidden;
    position: relative;
  }
  .recruitForm_dl dd input {
    display: block;
    width: 100%;
    height: 1.75rem;
    overflow: hidden;
    border: 1px solid #d4d4d4;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
    padding: 0px 0.25rem;
    font-size: 0.6rem;
    color: #999;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.75rem;
    outline: none;
  }
  .recruitForm_dl dd select {
    display: block;
    width: 100%;
    height: 1.75rem;
    overflow: hidden;
    border: 1px solid #d4d4d4;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
    padding: 0px 0.25rem;
    font-size: 0.6rem;
    color: #999;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.75rem;
    outline: none;
    background: #fff;
  }
  .recruitForm_dl dd textarea {
    width: 100%;
    height: 4.5rem;
    overflow: hidden;
    border: 1px solid #d4d4d4;
    padding: 0.25rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
    outline: none;
    overflow-y: auto;
    font-size: 0.6rem;
    color: #999;
  }
  .recruitForm_dl dt {
    padding: 0.5rem 0px;
  }
  .code_dd {
    padding: 0.25rem 5rem 0.25rem 0px !important;
    position: relative;
  }
  .code_a {
    display: block;
    width: 4.5rem;
    height: 1.75rem;
    overflow: hidden;
    position: absolute;
    right: 0px;
    top: 0.25rem;
  }
  .recruitBt {
    display: block;
    margin: 0px 0.5rem;
    height: 1.75rem;
    font-size: 0.6rem;
    color: #fff !important;
    text-align: center;
    line-height: 1.75rem;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
    background: #ff7e00;
  }
  #picker {
    float: left;
  }
  .cautiontitle {
    height: 1.3rem;
    line-height: 1.3rem;
    padding-left: 0.5rem;
    float: left;
    font-size: 0.6rem;
  }
  #selectPicture {
    float: left;
  }
  #thelist {
    padding: 0px !important;
  }
  .uploader-file-list dd {
    width: 100% !important;
    overflow: hidden;
    height: auto !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .uploader-file-list dd img {
    width: 1.5rem !important;
    height: 1.5rem !important;
  }
  .uploadifyPic2 {
    width: 100%;
  }
  .downLoadBt {
    position: absolute;
    right: 0px;
    top: 0.5rem;
    font-size: 0.6rem;
  }
  .recruitmentView {
    overflow: hidden;
    background: #fff;
    padding-bottom: 0.5rem;
  }
}
