/*
*这里的值严格按照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;
}
.minH {
  min-height: 350px;
  height: auto !important;
}
.pageBox {
  min-height: 300px;
  height: auto !important;
  height: 300px;
  clear: both;
  overflow: hidden;
  padding: 0 0 40px 0;
  background: #fff;
  -webkit-animation: gfadeIn 0.6s 0.6s both;
  -moz-animation: gfadeIn 0.6s 0.6s both;
  animation: gfadeIn 0.6s 0.6s both;
}
.jobInfo {
  clear: both;
  overflow: hidden;
  line-height: 36px;
  font-size: 16px;
  padding: 10px 0 0 0;
}
.jobTitle {
  font-size: 17px;
  color: #333;
  border-bottom: solid 1px #E7E7E7;
  line-height: 30px;
  margin-top: 30px;
  padding-bottom: 10px;
}
.jobTitle i {
  width: 3px;
  background: #666;
  height: 20px;
  display: block;
  float: left;
  position: relative;
  top: 5px;
  margin-right: 10px;
}
.jobBt {
  clear: both;
  width: 180px;
  height: 50px;
  border-radius: 3px;
  text-align: center;
  line-height: 50px;
  color: #fff !important;
  background: #cc0000;
  display: block;
  font-size: 18px;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.jobBt:hover {
  background: #cc0000;
}
.jobField {
  clear: both;
  overflow: hidden;
  line-height: 36px;
  font-size: 16px;
  padding: 15px 0 0 0;
}
.jobField dd {
  width: 33%;
  float: left;
}
.jobName {
  font-weight: bold;
  font-size: 24px;
  clear: both;
  padding: 0 0 10px 0;
}
.jobTime {
  font-size: 14px;
  line-height: 30px;
  padding: 0 0 10px 0;
  color: #999;
  border-bottom: solid 1px #E7E7E7;
}
.subPopBox {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  left: 0px;
  top: 0px;
  background: rgba(0, 0, 0, 0.65);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#65000000', endColorstr='#65000000') \9;
  z-index: 999999;
  display: none;
}
.subPopCont {
  width: 790px;
  height: 555px;
  /*overflow: hidden;*/
  border: 10px solid #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background: #fff;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -395px;
  margin-top: -277px;
}
.joinForm {
  overflow: hidden;
  padding: 20px 40px;
}
.joinFormTit {
  display: block;
  font-size: 24px;
  color: #333;
  text-align: center;
  overflow: hidden;
}
.joinForm_dl {
  overflow: hidden;
}
.joinForm_dl dd {
  clear: both;
  height: 32px;
  line-height: 32px;
  overflow: hidden;
  padding-left: 90px;
  position: relative;
  margin-bottom: 10px;
}
.joinFormName {
  display: block;
  width: 80px;
  height: 32px;
  overflow: hidden;
  line-height: 32px;
  text-align: right;
  font-size: 12px;
  color: #444;
  position: absolute;
  left: 0px;
  top: 0px;
}
.joinFormName i {
  font-style: normal;
  padding-right: 3px;
  color: #cc0000;
}
.joinFormInp {
  display: block;
  float: left;
  width: 100%;
  height: 30px;
  overflow: hidden;
  border: 1px solid #ddd;
  padding: 0px 5px;
  font-size: 12px;
  color: #666;
  font-family: "microsoft yahei";
  line-height: 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.joinForm_dl dd label {
  margin-right: 15px;
}
.joinForm_dl dd label input[type=radio] {
  vertical-align: middle;
}
.joinForm_dl dd label span {
  padding-left: 6px;
}
.joinFormInp[disabled="disabled"] {
  background: #fff;
}
.joinForm_dl dt {
  overflow: hidden;
  position: relative;
  padding-left: 90px;
  margin-bottom: 10px;
}
.joinForm_dl dt textarea {
  width: 100%;
  height: 140px;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #ddd;
  padding: 5px 10px;
  font-size: 12px;
  color: #666;
  line-height: 20px;
  outline: none;
  border-radius: 3px;
}
.joinFile {
  display: block;
  width: 110px;
  height: 30px;
  overflow: hidden;
  background: #535353;
  font-size: 14px;
  color: #fff;
  line-height: 30px;
  text-align: center;
}
input.w_100 {
  width: 100px;
}
.joinCode {
  height: 32px;
  overflow: hidden;
  line-height: 32px;
  margin-left: 10px;
}
.joinCode img {
  margin-left: 10px;
  display: block;
  height: 32px;
  float: left;
}
.joinCode i {
  display: block;
  height: 32px;
  overflow: hidden;
  float: left;
  padding-left: 10px;
  color: #666;
}
.joinCode i:hover {
  color: #d70112;
}
.closeSubPop {
  width: 30px;
  height: 28px;
  font-size: 28px;
  color: #ccc;
  overflow: hidden;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  box-sizing: content-box;
}
.closeSubPop:hover {
  color: #DD1111;
  border-color: #DD1111;
}
.closeSubPop * {
  box-sizing: content-box;
}
.webuploader-pick {
  position: relative;
  display: inline-block;
  cursor: pointer;
  background: #666;
  padding: 0 15px !important;
  color: #fff;
  text-align: center;
  overflow: hidden;
  font-family: "microsoft yahei";
  border-radius: 2px;
}
.webuploader-pick:hover {
  background: #333;
}
.bbsBt {
  border-radius: 3px;
  display: block;
  width: 90px;
  height: 40px;
  overflow: hidden;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  color: #fff !important;
  background: #d6000f;
}
@media screen and (max-width: 1024px) {
  .join-us-show {
    padding-top: 60px;
  }
  .pageBox {
    width: 100% !important;
    padding: 20px 20px 30px 20px;
  }
  .pageBox .jobField dd {
    width: 100%;
  }
  .buttom-but {
    width: 100% !important;
  }
  .buttom-but a {
    width: 45% !important;
  }
  .subPopCont {
    width: 100%;
    height: 100%;
    margin: 0;
    position: initial;
  }
  .subPopCont .joinForm {
    padding: 10px;
  }
}
