@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: #333;
  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 */
.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 0.3s;
}
.submit-btn {
  background: linear-gradient(to right, #f34244, #ed626f);
  color: #fff;
  border: 1px solid #f34244;
  margin-right: 14px;
}
.submit-btn:hover {
  background: linear-gradient(to right, #ed626f, #f34244);
}
.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?20210709");
  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;
  }

  /*报名成功弹框*/
  .ai2020_pop_sign .layui-layer-title {
    color: #fff;
    position: relative;
    top: 27px;
    left: 51px;
  }
  .ai2021_pop_form_top .succ_icon span {
    display: inline-block !important;
  }
  .ai2021_pop_form_top {
    top: 0px !important;
    color: #fff;
  }
  .ai2021_pop_form_top .succ_icon span {
    display: block;
    text-align: center;
  }
  .ai2021_pop_form_top .enlist-succ-box p {
    font-size: 0.26rem;
  }
  .ai2021_pop_form_top .enlist-succ-box p.text {
    margin-left: 0px;
  }
  .ai2021_pop_form_top .enlist-succ-box .text {
    color: #ccc;
  }
  .ai2021_pop_form_top .enlist-succ-box .qrcode {
    height: 121px;
    width: auto;
    display: block;
    margin: 40px auto 8px;
  }
  .ai2021_pop_form_top .enlist-succ-box .succ_icon {
    margin-top: 50px;
  }
  .ai2021_pop_form_top.layui-layer-page .layui-layer-content {
    overflow: visible !important;
  }
  .ai2021_pop_form_top .back_index_pop {
    width: 80%;
    height: 0.88rem;
    line-height: 0.88rem;
    margin: 0 auto;
    margin-top: 1.4rem;
    text-align: center;
    background: #28225e;
    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: relative;
  width: 100%;
  z-index: 30;
  height: 30px;
  /* background-color: #d00000; */
  background-color: #333147;
  color: #ffcece;
  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-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: #02033d;
  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, 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栏 */

header {
  height: 80px;
}

.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%;
}
.drop-icon {
  *float: left;
  *margin-top: 4px;
  padding-right: 16px;
  /* background: url(https://skin.elecfans.com/images/arrow.png) no-repeat 5px 1px; */
}
.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;
}

/* 联系我们 */

/* 分享 */

.bdsharebuttonbox .share-need-vfy {
  width: 266px;
  height: 38px;
  display: block;
  margin: 0;
  padding: 0;
  background: none;
  position: absolute;
  left: auto;
  right: 0;
  z-index: 1000;
}

.bdshare-button-style0-16::after {
  clear: both;
  content: "";
  display: block;
  height: 0;
  visibility: hidden;
}

.bdsharebuttonbox {
  float: right;
  font-size: 14px;
  color: #333;
  line-height: 38px;
  z-index: 2;
  position: relative;
  top: -70px;
}

.bdshare-button-style0-16 .bds_weixin {
  background-position: 0 -1612px;
}

.bdshare-button-style0-16 .bds_tsina {
  background-position: 0 -104px;
}

.bdshare-button-style0-16 .bds_qzone {
  background-position: 0 -52px;
}

.bdsharebuttonbox .bds_sqq {
  background-attachment: scroll;
  background-clip: border-box;
  background-image: url("/static/img/qq.png");
  background-origin: padding-box;
  background-position: 0 0 !important;
  background-size: auto;
  background-repeat: no-repeat;
  height: 38px;
  margin: 0 0 0 18px;
  padding: 0;
  width: 38px;
}

.bdsharebuttonbox .bds_weixin {
  background-attachment: scroll;
  background-clip: border-box;
  background-image: url("/static/img/weixin.png");
  background-origin: padding-box;
  background-position: 0 0 !important;
  background-size: auto;
  background-repeat: no-repeat;
  height: 38px;
  margin: 0 0 0 18px;
  padding: 0;
  width: 38px;
}

.bdsharebuttonbox .bds_tsina {
  background-attachment: scroll;
  background-clip: border-box;
  background-image: url("/static/img/weibo.png");
  background-origin: padding-box;
  background-position: 0 0 !important;
  background-size: auto;
  background-repeat: no-repeat;
  height: 38px;
  margin: 0 0 0 18px;
  padding: 0;
  width: 38px;
}

.bdsharebuttonbox .bds_qzone {
  background-attachment: scroll;
  background-clip: border-box;
  background-image: url("/static/img/qqkj.png");
  background-origin: padding-box;
  background-position: 0 0 !important;
  background-size: auto;
  background-repeat: no-repeat;
  height: 38px;
  margin: 0 0 0 18px;
  padding: 0;
  width: 38px;
}

.bdsharebuttonbox a,
.bdsharebuttonbox .bds_more {
  cursor: pointer;
  float: left;
  font-size: 12px;
  line-height: 16px;
}

/* 分享 */

/* 侧边栏 */
.sideBar {
  position: fixed;
  right: 50px;
  top: 45%;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: #fff;
}
.sideBar li {
  border-top: 1px solid #ccc;
  position: relative;
}
.side_icon {
  display: inline-block;
  background: url("/static/pc/images/side_bar.png") no-repeat;
  width: 55px;
  height: 55px;
}
.side_icon1 {
  background-position: -58% -16%;
}
.side_icon2 {
  background-position: -58% 28%;
}
.side_icon3 {
  background-position: -66% 70%;
}
.side_icon4 {
  background-position: -58% 110%;
}
.side_icon1:hover {
  background-position: 159% -16%;
}
.side_icon2:hover {
  background-position: 159% 28%;
}
.side_icon3:hover {
  background-position: 159% 70%;
}
.side_icon4:hover {
  background-position: 159% 110%;
}
.side_icon1:hover .side_bar_qrcode {
  display: block;
}
.side_icon2:hover + .side_bar_qrcode {
  display: block;
}
.side_icon3:hover + .side_bar_qrcode {
  display: block;
}
.side_icon4:hover + .side_bar_qrcode {
  display: block;
}
/* .side_icon1 .side_bar_qrcode{
    right: 71px;
} */
.side_bar_qrcode {
  position: absolute;
  right: 120px;
  top: 104px;
  text-align: center;
  background: rgba(228, 228, 228, 1);
  padding: 15px 15px 5px 15px;
  box-sizing: border-box;
  color: #333;
  line-height: 28px;
  display: none;
}
.right_arrow {
  width: 0px;
  display: inline-block;
  height: 0px;
  position: absolute;
  padding: 0px;
  border: 7px;
  top: 40px;
  left: 120px;
  right: 0;
  margin: auto;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid rgba(228, 228, 228, 1);
  transform: rotate(30deg);
  -ms-transform: rotate(30deg); /* IE 9 */
  -webkit-transform: rotate(30deg); /* Safari 和 Chrome */
  -moz-transform: rotate(30deg); /* Firefox */
  -o-transform: rotate(30deg); /* Opera */
}
.sideBar .bdsharebuttonbox {
  width: 100px;
  top: auto;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
}
.sideBar .bdsharebuttonbox a {
  display: inline-block;
  background-size: 100% 100%;
  width: 30px;
  height: 30px;
  margin: 0 5px 0 5px;
}

/* 侧边栏 */
/* 站点底部 */

.site_footer {
  overflow: hidden;
  background-color: #333;
  line-height: 1;
  color: #ccc;
}

.site_footer a {
  color: #ccc;
}

.site_footer a:hover {
  color: #fff;
}

.footer_hd {
  overflow: hidden;
  line-height: 39px;
  border-bottom: 1px solid #494949;
}

.footer_hd a {
  float: left;
}

.footer_hd .fl b {
  float: left;
}

.footer_hd .fl a {
  margin-right: 10px;
}

.footer_hd .fr a {
  margin-left: 20px;
}

.footer_bd {
  padding-top: 18px;
  overflow: hidden;
}

.footer_bd .text_list {
  float: left;
}

.footer_bd .text_list li {
  float: left;
  margin-right: 60px;
}

.footer_bd .text_list dt {
  font-weight: 700;
  margin-bottom: 9px;
  color: #fff;
}

.footer_bd .text_list dd {
  line-height: 22px;
}

.footer_hd b,
.footer_bd .text_list .small_tit {
  color: #fff;
}

.footer_bd .text_list .split_25 {
  margin-top: 25px;
}

.footer_bd .text_list .split_10 {
  margin-top: 10px;
}

.footer_bd .text_list .split_30 {
  margin-top: 30px;
}

.site_qrcode {
  float: right;
  color: #fff;
}

.site_qrcode .word {
  margin: 18px 0 10px;
}

.site_qrcode .item:first-child .word {
  margin-top: 0;
}

.site_qrcode img {
  display: block;
}

.site_about {
  margin-top: 20px;
  padding: 15px 0;
  border-top: 1px solid #494949;
  text-align: center;
}

.site_about .s_link a {
  font-size: 14px;
  margin: 0 8px;
}

.copy_right {
  margin-top: 20px;
  color: #999;
}

.copy_right a {
  color: #999;
}

.copy_right img {
  height: 16px;
  vertical-align: -2px;
  margin: 0 3px 0 8px;
}

.copy_right .split {
  margin-top: 5px;
}
