@charset "utf-8";

/* 样式重置 */
body, html {
  min-height: 100%;
  height: auto !important;
}

/* 使用此样式防止滚动条出现时页面抖动，这会影响到使用fixed居中出现误差，可js计算html与body直接的宽度差补回 */
:root {
  overflow-y: auto;
  overflow-x: hidden;
}

:root body {
  position: absolute;
}

html {
  overflow-y: scroll;
}

body {
  width: 100vw;
  overflow: hidden;
}

/* 使用此样式防止滚动条出现时页面抖动，这会影响到使用fixed居中出现误差，可js计算html与body直接的宽度差补回 */

body {
  background-color: #fff;
  color: var(--default-color);
  font-family: "PingFang SC", "Arial", "Microsoft YaHei", "Helvetica", "Helvetica Neue", "Tahoma", "sans-serif";
  line-height: 1.5;
  font-size: 12px;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

ol, ul {
  list-style: none;
}

address, caption, cite, code, dfn, em, strong, th, var, optgroup {
  font-style: normal;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  *font-size: 100%;
}

fieldset, img, a img, :link img, :visited img {
  border: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* a:visited {
    color: inherit;
} */

/* a:hover,
a:active {
    color: #d00000;
} */

:focus {
  outline: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

/* 通用样式 */
.wrap {
  width: 1200px;
  margin: 0 auto;
}

.none {
  display: none;
}

.fl {
  display: inline;
  float: left;
}

.fr {
  display: inline;
  float: right;
}

.clearfix {
  _zoom: 1;
}

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

.ovh {
  overflow: hidden;
  display: block;
}

.lh1 {
  line-height: 1;
}

.tov,
.tovm {
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tovm {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.tc {
  text-align: center;
}

.tr {
  text-align: right;
}

.fc9 {
  color: #999;
}

.fc6 {
  color: #666;
}

.fc3 {
  color: #333;
}

.fcred {
  color: #d00000;
}

.fs12 {
  font-size: 12px;
}

.fs14 {
  font-size: 14px;
}

.fblod {
  font-weight: 700;
}

.ml10 {
  margin-left: 10px;
}

.ml5 {
  margin-left: 5px;
}

.mt30 {
  margin-top: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.mr30 {
  margin-right: 30px;
}

/* 向下三角形 */
.delta_down {
  display: inline-block;
  width: 0;
  height: 0;
  border-width: 5px 4px;
  border-style: solid;
  vertical-align: -2px;
  border-color: #999 transparent transparent;
}

.not_select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


/* pc */
.w12 {
  width: 1200px;
  margin: 0 auto;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex_center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex_align_items {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex_space_around {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-around;
  -ms-flex-pack: justify;
  justify-content: space-around;
}

.flex_start {
  -webkit-box-pack: justify;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: justify;
  justify-content: flex-start;
}

.flex_wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex_1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex_space_between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex_last_end {
  -webkit-box-pack: justify;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: justify;
  justify-content: flex-end;
}

.limit {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.limit2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.limit3 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.dib {
  display: inline-block
}

.mr20 {
  margin-right: 20px;
}

.mr40 {
  margin-right: 40px;
}

.ml20 {
  margin-left: 20px;
}

.mt20 {
  margin-top: 20px
}

.mb20 {
  margin-bottom: 20px;
}

.wh {
  width: 100%;
}

.pr {
  position: relative
}

.hide {
  display: none;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb30 {
  margin-bottom: 30px
}

.ai2020_pop {
  color: #333;
}

.ai2020_pop .layui-layer-title {
  position: relative;
  z-index: 1;
  background-color: transparent;
  margin: 0 50px -20px 0;
  border-bottom: none;
  font-size: 18px;
  overflow: visible;
  padding-top: 15px;
  padding-left: 20px;
}

.ai2020_pop_sign .enlist-succ-box .succ_icon {

  padding-top: 54px;
  margin-bottom: 16px;

}

.ai2020_pop .layui-layer-content {
  padding: 0 40px;
}

.apply_form_pop {
  background-color: #fff;
  box-sizing: border-box;
}

.form_pop_box>h1 {
  font-weight: bold;
  font-size: 30px;
}

.form_pop_box>h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.form_pop_box>h2 {
  color: #656565;
  font-size: 14px;
  margin: 20px 0 16px;
  font-weight: 400;
}

.form_pop_box>h2.sec_tit {
  font-size: 16px;
}

.form-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-title {
  line-height: 32px;
  font-size: 14px;
  width: 48px;
  text-align: left;
}

.form-input {
  text-indent: 10px;
  height: 32px;
  width: 280px;
  border-radius: 3px;
  border: 1px solid RGB(230, 230, 230);
}

.address-box {
  display: flex;
  height: 32px;
}

.address-box>select {
  border-radius: 3px;
  border: 1px solid RGB(230, 230, 230);
  width: 136px;
  color: #656565;
}

.ai2021_pop_form select[name="vocational"], .ai2021_pop_form select[name="industry"] {
  text-indent: 10px;
  height: 32px;
  width: 280px;
  border-radius: 3px;
  border: 1px solid RGB(230, 230, 230);
  margin-left: 0px;
  background: #fff;
  color: #333;
}

.ai2021_pop_form select[name="province"] {
  background: #fff;
  color: #333;
  margin-left: 0px;
}

.address-box>select:nth-child(1) {
  margin-right: 10px;
}

.form-check {
  display: flex;
  align-items: center;
}

.form-check:nth-child(2) {
  margin-right: 10px;
  margin-left: 10px;
}

.btn-box {
  display: flex;
  padding: 10px 0 50px;
}

.btn-box>div,
.btn-box>button {
  width: 116px;
  height: 34px;
  border-radius: 3px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  transition: all .3s;
}

.cancel-btn {
  border: 1px solid RGB(230, 230, 230);
}

.cancel-btn:hover {
  background-color:
}

.enlist-succ-box {
  padding-bottom: 30px;
  font-size: 14px;
}

.enlist-succ-box .succ_icon {
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  font-weight: 700;
}

.margin_left_text {
  margin-left: 20px;
}

.enlist-succ-box .succ_icon img {
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
  top: -5px;
}

.enlist-succ-box .qrcode {
  height: 121px;
  display: block;
  margin: 20px auto 8px;
}

.enlist-succ-box .text {
  text-align: center;
  color: #666;
  padding-top: 5px;
}

.aside_awards_index {
  position: fixed;
  right: 20px;
  top: 45%;
  width: 182px;
  height: 182px;
  background-image: url('../images/aside_awards_index.png?v=20230718');
  background-repeat: no-repeat;
  z-index: 99;
  cursor: pointer;
}

.aside_t_p_index {
  position: fixed;
  right: 0;
  top: 45%;
  width: 122px;
  height: 113px;
  background-image: url('../images/aside_t_p.png?v3');
  background-repeat: no-repeat;
  z-index: 99;
  cursor: pointer;
}

.aside_awards_link, .aside_t_p_link {
  width: 100%;
  height: 100%;
  display: block;
}

.aside_delete {
  position: absolute;
  top: -20px;
  right: -3px;
  width: 23px;
  height: 24px;
  font-style: normal;
  font-size: 20px;
  text-align: center;
}

@media (max-width: 750px) {
  .aside_awards_index {
    width: 1.73rem;
    height: 1.73rem;
    background-size: 1.73rem 1.73rem;
  }

  /*表格样式*/
  .ai2021_pop_form {
    background: #00016a !important;
  }

  .ai2021_pop_form .layui-layer-ico {
    background: url(../images/m_form_back.png) no-repeat !important;
    width: 0.28rem !important;
    height: 0.48rem !important;
    background-size: 0.28rem 0.48rem !important;
  }

  .ai2021_pop_form .layui-layer-setwin .layui-layer-close1 {
    background-position: 0 0px !important;
  }

  .ai2021_pop_form .apply_form_pop {
    background-color: #00016A;
    box-sizing: border-box;
    color: #fff;
  }

  .ai2021_pop_form .form_title_icon {
    color: #F15DAB;
    margin-right: 5px;
  }

  .ai2021_pop_form .form-input, .ai2021_pop_form .address-box>select {

    background: #1e1f7a;
    border: none;
    color: #ccc;
  }

  .ai2021_pop_form select[name="vocational"], .ai2021_pop_form select[name="industry"] {
    background: #1e1f7a;
    border: none;
    color: #ccc;
  }

  .ai2020_pop .layui-layer-content {
    padding: 0 0.4rem;
  }

  .ai2021_pop_form .address-box>select {
    width: 51%;
    padding-left: 10px;
    font-size: 12px;
  }

  .ai2021_pop_form .form_pop_box>h2.sec_tit {
    display: block;
    color: #fff;
  }

  .ai2021_pop_form_go_sign .layui-layer-title {
    display: none;
  }

  .ai2021_pop_form_go_sign, .ai2020_pop_sign {

    height: 100vh !important;
  }

  .ai2021_pop_form_go_sign .apply_form_pop {
    padding-left: 0.2rem;
    height: 75vh;
    overflow: auto;
  }

  .ai2021_pop_form_go_sign .layui-layer-setwin a {

    position: relative;
    left: -5px;
  }

  .ai2021_pop_form_go_sign.layui-layer-page .layui-layer-content {
    overflow: hidden;
  }

  .ai2021_pop_form_go_sign .apply_form_pop>h2 {

    margin-top: 50px;
    color: #c6c6f3;

  }

  .ai2021_pop_form_go_sign .form_pop_box>h2.sec_tit {
    position: relative;
    left: 39px;
    top: 17px;
    margin-top: 20px;
  }

  .ai2021_pop_form_go_sign .form_pop_box>h2.sec_tit span {
    display: block;
    font-size: 12px;
    color: #9292c9;
  }

  .ai2021_pop_form .layui-layer-setwin {
    right: 89%;
    top: 47px;
  }

  .ai2021_pop_form .sec_tit img {
    visibility: hidden;
  }

  .ai2021_pop_form .cancel-btn {
    display: none !important;
  }

  .ai2021_pop_form .btn-box>div, .ai2021_pop_form .btn-box>button {
    width: 80%;
    display: block;
    margin: 0 auto;
    line-height: 0.88rem;
    height: 0.88rem;
    border: none;
    background: linear-gradient(90deg, #f34244, #ed626f);
    border-radius: 44px;
  }

  /*报名成功弹框*/
  .address-box {
    width: calc(100% - 48px);
  }
}



.ht {
  height: 100%;
}

.mb {
  margin-bottom: 5px;
}

.clear {
  _zoom: 1;
}

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

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.border0 {
  border: none
}

.vat {
  vertical-align: top;
}

.mt5 {
  margin-top: 5px;
}

.mr5 {
  margin-right: 5px
}

.mb5 {
  margin-bottom: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.pt70 {
  padding-top: 70px;
}

/* 顶通条 */

.site_top {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
  height: 30px;
  color: #ffcece;
  background: #343536;
  line-height: 30px;
}

.site_top .icon {
  display: inline-block;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  vertical-align: -2px;
  background: url('../images/site-top-icon.png') no-repeat;
}

.site_top .i2 {
  background-position: 0 -18px;
}

.site_top .i3 {
  background-position: 0 -36px;
}

.site_top .i4 {
  background-position: 0 -54px;
}

.site_top .i5 {
  background-position: 0 -71px;
}

.site_top .i6 {
  background: url(../images/people.png) left top no-repeat;
  background-size: 100% 100%;
  /* background-position: 0 -125px; */
}

.site_top .i7 {
  background-position: 0 -91px;
}

.site_top .i8 {
  background-position: 0 -108px;
}

.site_top .site_partner a:hover .icon {
  background-position-x: -19px;
}

.site_top a {
  color: #999999;
}

.site_top a:hover {
  color: #d22222;
}

.site_partner {
  position: relative;
  float: left;
}

.site_partner:after {
  position: absolute;
  top: 14.5px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  /* background-color: #e66364; */
  background-color: #ccc;
}

.site_partner a {
  position: relative;
  z-index: 1;
  float: left;
  padding: 0 5px;
  color: #999999;
  background: rgb(43, 48, 59);
  margin-left: 20px;
  vertical-align: top;
}

.site_partner a:first-child {
  margin-left: 0;
}

.site_top .user_area {
  position: relative;
  float: right;
  height: 30px;
  /* display: none; */
}

.site_top .login {
  margin-right: 5px;
}

.site_top .user_area .umenu {
  cursor: pointer;
}

.site_top .user_area .umenu img {
  display: inline-block;
  margin-left: 20px;
  vertical-align: -8px;
  width: 24px;
  height: 24px;
  border-radius: 24px;
}

.site_top .user_area .umenu:hover .drop {
  display: block;
}

.site_top .user_area .drop {
  display: none;
  position: absolute;
  right: 0;
  top: 30px;
  z-index: 10;
  width: 110px;
  text-align: center;
  background-color: #666;
  background-color: rgba(0, 0, 0, .6);
}

.site_top .user_area .drop:before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  width: 50px;
  height: 20px;
}

.site_top .user_area .drop a {
  display: block;
  color: #fff;
}

.site_top .user_area .drop a:hover {
  background-color: #000;
}

#siteTop .origin-item .hot {
  position: relative;
  margin: -15px 0 0 10px;
  padding: 1px 2px;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  border-radius: 3px;
  background-color: #d00000;
  color: #fff;
  font-size: 12px;
  font-style: italic;
  font-family: "PingFang SC", "Arial", "Microsoft YaHei", "Helvetica", "Helvetica Neue", "Tahoma", "sans-serif";
}

#siteTop .origin-item {
  float: right;
  margin-right: 20px;
}

/* header栏 */
.btn {
  width: 130px;
  height: 35px;
  border-radius: 3px;
  display: inline-block;
  text-align: center;
  line-height: 35px;
  color: #fff;
  cursor: pointer;
}

.bg_red {
  background: #D00000;
}

.bg_red:hover {
  background: #BC1E1E;
  color: #fff;
}

.bg_yellow {
  background: #FF9900;
}

.bg_yellow:hover {
  background: #F09100;
  color: #fff;
}

.loading_more {
  margin: 25px auto;
  display: block;
  width: 150px;
  height: 35px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
}

/* 登录注册 */
#top {
  background-color: #3e3e3e;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
}

#top a {
  display: inline-block;
  color: #fff;
  padding: 0 8px;
}

#top a:hover {
  color: #CCC;
  text-decoration: none;
  background-color: #6F6F6F;
}

.quick-menu {
  padding: 0 15px;
}

.quick-menu {
  float: left;
}

.quick-menu li {
  float: left;
}

.quick-menu a:hover {
  background: none;
}

.notice {
  float: right;
  padding-left: 24px;
  margin-right: 20px;
  color: #fff;
  /* background: url(https://skin.elecfans.com/images/notice.png) no-repeat 0 3px; */
}

.my-info {
  float: right;
  position: relative;
  z-index: 100;
}

.u-info {
  float: left;
}

.u-info img {
  float: left;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  margin-top: 5px;
  border-radius: 50%;
}

.login-info {
  float: right;
  margin-right: 15px;
}

.top-dropdown:hover .drop-icon {
  background-position: 5px -43px;
}

.top-dropdown-menu {
  position: absolute;
  right: 0;
  top: -9999px;
  width: 100px;
  padding: 9px 0;
  z-index: 100;
  text-align: center;
  background: #fff;
  box-shadow: 2px 2px 3px #999;
}

.top-dropdown-menu a {
  font-size: 13px;
  display: block;
  padding: 3px 0px;
  clear: both;
  font-weight: normal;
  line-height: 20px;
  width: 100%;
  white-space: nowrap;
}

.top-dropdown-menu a:hover {
  color: #d22222;
  text-decoration: none;
}

.u-name {
  font-weight: normal !important;
}

/* 登录注册 */
/* 联系我们 */
.tit_sub {
  color: #333333;
  font-size: 28px;
  padding-left: 10px;
  box-sizing: border-box;
  border-left: 4px solid #d22222;
  line-height: 24px;
  margin-bottom: 15px;
  margin-top: 30px;
}

.footer_concat {
  background: url('/static/pc/images/bg2.png')no-repeat;
  background-size: 100% 100%;
}

.footer_concat h2 {
  margin-bottom: 0
}

.footer_concat>div {
  box-sizing: border-box;
  padding: 35px 0;
}

.qr_code {
  width: 170px;
  height: 170px;
}

.concat_us {
  font-size: 14px;
  line-height: 26px;
}

