/*
   文件名：common.css
   备注：页面公用css文件
   版本：v2.0
 Created by lc on 2016-01-13.
 Copyright 2016 lc. All rights reserved.
*/

/*页面初始化    #########################################################################################*/

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td,
menu,
nav,
img {
  margin: 0;
  padding: 0;
  font-family: "微软雅黑", "Microsoft Yahei", arial, helvetica, sans-serif;
}
html,
body {
  height: 100%;
  color: #333;
  background: #fff;
  font-size: 14px;
  min-width: 1200px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
em {
  font-style: normal;
}
mark {
  background: none;
}
small {
  font-size: 12px;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
  outline: none;
}
ins {
  text-decoration: none;
}
/*a:hover {
    color: #D22222;
}*/
legend {
  color: #333;
}
fieldset,
img {
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td {
  text-align: left;
}
img {
  border: none;
  -ms-interpolation-mode: bicubic;
}
label,
button {
  cursor: pointer;
}
body,
form {
  position: relative;
  z-index: 0;
}
.white_bg {
  background: #fff !important;
}
.gray_bg {
  background: #ccc !important;
}

/*页面初始化 end#########################################################################################*/

/*公用样式      #########################################################################################*/

.clearfix:after {
  content: "\20";
  display: block;
  height: 0;
  clear: both;
}
.clearfix {
  zoom: 1;
}
.clear {
  clear: both;
  height: 0;
  line-height: 0;
  font-size: 0;
  visibility: hidden;
  overflow: hidden;
}
.hide {
  display: none;
}
.img_box {
  display: block;
  overflow: hidden;
}
.img_box img {
  display: block;
  width: 100%;
}
.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  *z-index: 0;
}
.float_left {
  float: left;
}
.float_right {
  float: right;
}
.error_tips {
  display: none;
  color: #d22222;
  padding-left: 20px;
  background: url(../images/error_ico.png) no-repeat left center;
}

/*表单样式*/

input,
textarea,
select,
input:focus,
textarea:focus,
select:focus,
a:focus {
  outline: none;
}
input[type="button"] {
  border: none;
  outline: none;
}
input[type="button"]:active {
  border: none;
}
.select_box {
  display: inline-block;
  position: relative;
  padding: 0 10px;
  line-height: 35px;
  height: 35px;
  border: 1px solid #ddd;
  padding-right: 15px;
  width: 150px;
}
.select_box i {
  border: 5px solid #fff;
  border-top: 5px solid #ddd;
  width: 0;
  height: 0;
  overflow: hidden;
  display: block;
  position: absolute;
  right: 5px;
  top: 15px;
}
.select_box select {
  display: block;
  height: 35px;
  line-height: 35px;
  width: 175px;
  position: absolute;
  left: 0;
  top: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  opacity: 0;
  z-index: 1;
}

/*按钮样式*/

.btn {
  display: inline-block;
  *display: inline;
  padding: 8px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 14px;
  color: #333333;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: #f2f2f2;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  *zoom: 1;
  border: none;
  border: 1px solid #ddd;
}
.btn:hover,
.btn:focus,
.btn:active,
.btn.active {
  color: #333333;
  background-color: #e6e6e6;
}
.btn:first-child {
  *margin-left: 0;
}
.btn:hover,
.btn:focus {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
  outline: none;
}
.btn.active,
.btn:active {
  background-image: none;
  outline: none;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15),
    0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15),
    0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn.disabled,
.btn[disabled] {
  cursor: default;
  background-image: none;
  filter: alpha(opacity=65);
  -moz-opacity: 0.65;
  opacity: 0.65;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #ededed;
  color: #999;
}
.btn.disabled:hover,
.btn[disabled]:hover {
  background: #ededed;
  color: #999;
}
.btn-large {
  padding: 12px 19px;
}
.btn-large [class^="icon-"],
.btn-large [class*=" icon-"] {
  margin-top: 4px;
}
.btn-small {
  padding: 2px 10px;
}
.btn-small [class^="icon-"],
.btn-small [class*=" icon-"] {
  margin-top: 0;
}
.btn-mini [class^="icon-"],
.btn-mini [class*=" icon-"] {
  margin-top: -1px;
}
.btn-mini {
  padding: 0 6px;
  font-size: 10.5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active,
.btn-inverse.active {
  color: rgba(255, 255, 255, 0.75);
}
.btn-primary {
  color: #ffffff;
  background-color: #006dcc;
  border: 1px solid #006dcc;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
  color: #ffffff;
  background-color: #0044cc;
}
.btn-warning {
  color: #ffffff;
  background-color: #faa732;
  border: 1px solid #faa732;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active {
  color: #ffffff;
  background-color: #f89406;
}
.btn-danger {
  color: #ffffff;
  background-color: #d22222;
  border: 1px solid #d22222;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active {
  color: #ffffff;
  background-color: #bc1e1e;
}
.btn-success {
  color: #ffffff;
  background-color: #5bb75b;
  border: 1px solid #5bb75b;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active {
  color: #ffffff;
  background-color: #51a351;
}
.btn-info {
  color: #ffffff;
  background-color: #00ccce;
  border: 1px solid #00ccce;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active {
  color: #ffffff;
  background-color: #00bdbd;
}
.btn-inverse {
  color: #ffffff;
  background-color: #363636;
  border: 1px solid #363636;
}
.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse:active,
.btn-inverse.active {
  color: #ffffff;
  background-color: #222222;
}
button.btn,
input[type="submit"].btn {
  *padding-top: 5px;
  *padding-bottom: 5px;
}
button.btn::-moz-focus-inner,
input[type="submit"].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button.btn.btn-large,
input[type="submit"].btn.btn-large {
  *padding-top: 8px;
  *padding-bottom: 8px;
}
button.btn.btn-small,
input[type="submit"].btn.btn-small {
  *padding-top: 3px;
  *padding-bottom: 3px;
}
button.btn.btn-mini,
input[type="submit"].btn.btn-mini {
  *padding-top: 1px;
  *padding-bottom: 1px;
}
.btn-link,
.btn-link:active,
.btn-link[disabled] {
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn-link {
  color: #0088cc;
  cursor: pointer;
  border-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.btn-link:hover,
.btn-link:focus {
  color: #005580;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
.btn-link[disabled]:focus {
  color: #333333;
  text-decoration: none;
}
.btn[disabled] {
  border: 1px solid #ddd;
}

/*对齐*/

.text_left {
  text-align: left;
}
.text_right {
  text-align: right;
}
.text_center {
  text-align: center;
}

/*字体颜色*/

.color_red {
  color: #d22222;
}
.color_gray {
  color: #999;
}
.color_cyan {
  color: #00bdbd;
}
.color_blue {
  color: #0088cc;
}
.color_dark_blue {
  color: #004276;
}

/*弹窗口样式*/

.layer {
  background: url(../images/transparent_forIE.png);
  background: rgb(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
}
.pop_window {
  display: block;
  position: fixed;
  width: 800px;
  height: 400px;
  margin-top: -200px;
  margin-left: -400px;
  top: 50%;
  left: 50%;
  z-index: 1001;
  background: #fff;
  border: 1p solid #ddd;
}
.pop_window_header {
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  background: #f2f2f2;
  border-bottom: 1px solid #ddd;
  position: relative;
  font-weight: bold;
}
.pop_window_header a.close_pop_window {
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 20px;
  color: #000;
  font-weight: bold;
  position: absolute;
  right: 10px;
  top: 12px;
}
.pop_window_header a.close_pop_window:hover {
  text-decoration: none;
  color: #f23100;
}
.pop_window_border {
  padding: 20px;
}

/*弹窗样式end*/

/*弹窗登录样式*
.other-login-link {
    display: block;
    cursor: pointer;
    width: 270px;
    margin:0 auto 15px auto;
    height: 36px;
    line-height: 36px;
    text-align: center;
    text-indent: 35px;
    font-size: 16px;
    border-radius: 3px;
    color: #fff;
    background: url(https://www.elecfans.com/skin-2014/images/other-login.png) no-repeat;
}
.other-login-link:hover {
    color: #fff;
    text-decoration: none;
}
.sina-login-link {
    background-color: #FA8C35;
    background-position: 45px 3px;
}
.qq-login-link {
    background-color: #0C95D9;
    background-position: 45px -42px;
}
/*表单*
.login-form {

    border-top: 1px dotted #E5E5E5;
    width: 270px;
    position: relative;
    margin: 0 auto;
    margin-top: 20px;
    padding-top: 5px;
}
.login-line {
    position: absolute;
    left: 110px;
    top: -12px;
    background-color: #fff;
    display: inline-block;
    font-size: 14px;
    color: #ccc;
}
.login-form-item {
    width: auto;
    height: auto;

}
.login-input,.login-form-tip,.forgetPw,#back-login-link {
    background: url(https://www.elecfans.com/skin-2012/images/login-ico1.png) no-repeat;
}
.login-input {
    width: 225px;
    padding: 7px 5px 7px 40px;
    border: 1px solid #D0CECF;
    border-radius: 3px;
    font-family: \5fae\8f6f\96c5\9ed1;
    font-size: 16px;
    line-height: 20px;
    height: 20px;
    margin-top: 15px;
}
.li .red-bor {
    border: 1px solid red;
}
.login-input:focus {
    border-color: #4aabff;
}
.login-input-username {
    background-position: 8px 5px;
}
#password {
    background-position: 8px -33px;
}
/*loading*
.btn-area {
    padding: 15px 0;
    line-height: normal;
}
.btn-area .btn {
    width: 80px;
    height: auto;
    line-height: 21px;
    background-image: none;
    text-align: center;
    float: left;
    padding: 3px 20px;
    background-color: #C80C00;
    border: none;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
}
.btn-area .btn:hover {
    background: #c20;
    color: #fff;
    text-decoration: none;
}
.login-submit,.lostpw-submit {
    padding: 5px 30px;
    font-size: 16px;
    margin: 0;
}
.forgetPw,.regist,.remember{
    color: #1EA3E4;
    padding-right: 48px;
    background-position: right -103px;
    float: left;
    margin-top: 10px;
    margin-left: 20px;
}
.regist{
    padding-right: 0;
}
.forgetPw:hover {
    text-decoration: none;
}
.login-form-tip {
    display: none;
    line-height: 24px;
    width: 243px;
    padding-left: 27px;
    background-position: 0 -73px;
    font-size: 14px;
    margin-top: 10px;
    color: #F22E00;
}
.login-form-tip.tip-show {
    display: block;
}
/*忘记密码*
.lostpw-form {
    width: 270px;
    margin: 0 auto;
}
.login-input-email {
    background-position: 8px -124px;
}
#back-login-link {
    padding-left: 52px;
    background-position: 0 -231px;
}
.btn.btn_loading,.btn.btn_loading:hover{
    background-image: url(https://skin.elecfans.com/images/loading.gif);
    background-repeat: no-repeat;
    background-position: 5px center;
}
.success-tip ,.error-tip{
    padding: 40px 30px 30px 130px;
    background:url(https://skin.elecfans.com/images/tip-ok.jpg) no-repeat 50px 22px;
    font-size: 20px;
}
.error-tip{
    background: url(../images/error.png) no-repeat 31px 0px;
    padding: 9px 30px 15px 112px;
}
*弹窗登录样式 end*/

/**art-dialog.css样式覆盖**/

.ui-dialog {
  border: 8px solid #d8d8d8;
}
.ui-dialog-header {
  background: #f6f6f6;
  color: #555;
  font-size: 20px;
  line-height: 50px;
}
.ui-dialog-title {
  font-weight: normal;
}
.ui-dialog-close {
  font-size: 28px;
  top: 17px;
}

/**art-dialog.css样式覆盖**/

/*图标*/

.icon {
  display: block;
  padding: 0px;
  margin: 0;
  background-image: url(../images/icons.png?t=20181210);
  background-repeat: no-repeat;
}
.icon.icon_arrow_down {
  width: 10px;
  height: 10px;
  overflow: hidden;
  background-position: -519px 0px;
}
.icon.icon_download {
  width: 14px;
  height: 14px;
  overflow: hidden;
  background-position: -38px -9px;
}
.icon.icon_search {
  width: 20px;
  height: 20px;
  overflow: hidden;
  background-position: -10px -5px;
}
.icon.icon_refresh {
  width: 15px;
  height: 16px;
  background-position: -85px -6px;
}
.icon.icon_more {
  width: 15px;
  height: 15px;
  background-position: -119px -7px;
}
.icon.icon_stop {
  width: 20px;
  height: 15px;
  background-position: -211px -7px;
}
.icon.icon_play {
  width: 20px;
  height: 15px;
  background-position: -173px -7px;
}
.icon.icon_play_2 {
  width: 20px;
  height: 15px;
  background-position: -249px -7px;
}
.icon_share {
  width: 15px;
  height: 15px;
  background-position: -320px -7px;
}
.icon_collect {
  width: 15px;
  height: 15px;
  background-position: -384px -7px;
}
.icon_collected {
  width: 15px;
  height: 15px;
  background-position: -361px -7px;
}
.icon_like {
  width: 13px;
  height: 13px;
  background-position: -486px -6px;
}
.icon_like2 {
  width: 15px;
  height: 15px;
  background-position: -429px -7px;
}
.icon_liked2 {
  background-position: -407px -7px;
}
.icon_question,
.icon_answer {
  display: block;
  font-style: normal;
  color: #fff;
  width: 20px;
  height: 20px;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #d22222;
}
.icon_answer {
  background: #00cc99;
}
.icon_close {
  width: 20px;
  height: 20px;
  background-position: -553px 0px;
  position: absolute;
  top: -8px;
  right: -8px;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  opacity: 0.6;
}
.icon_close:hover {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
.icon_setting {
  width: 20px;
  height: 20px;
  background-position: 0 -140px;
}
.icon_vip {
  width: 20px;
  height: 20px;
  background-position: 0 -118px;
}
.icon_user {
  width: 20px;
  height: 20px;
  background-position: 0 -213px;
}
.icon_admin {
  width: 20px;
  height: 20px;
  background-position: 0 -188px;
}
.icon_exit {
  width: 20px;
  height: 20px;
  background-position: 0 -165px;
}
.icon_cart {
  width: 20px;
  height: 20px;
  background-position: 0 -235px;
}

/*公用样式    end########################################################################################*/

/*页头样式     ########################################################################################*/

#page_header {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  background: #fff;
}

/*logo*/

#page_logo {
  display: block;
  width: 220px;
}

/*搜索框*/

.header_search {
  display: block;
  line-height: 32px;
  margin-top: 10px;
  z-index: 9;
  float: right;
}
.search_border {
  height: 32px;
  border: 1px solid #ddd;
}
.search_select {
  border-right: 1px solid #ddd;
  margin: 5px 15px;
  width: 55px;
  height: 22px;
  position: relative;
  z-index: 10;
  font-size: 12px;
  color: #666;
  cursor: pointer;
}
.search_select .icon_arrow_down {
  position: absolute;
  right: 12px;
  top: 6px;
  z-index: 10;
}
.search_select p {
  line-height: 22px;
}
.search_select ul {
  display: none;
  width: 70px;
  position: absolute;
  left: -16px;
  top: 27px;
  z-index: 3;
  border: 1px solid #ddd;
  background: #fff;
}
.search_select li {
  display: block;
  padding: 0 15px;
  cursor: pointer;
}
.search_select li:hover {
  background: #f2f2f2;
}
.hover ul {
  display: block;
}
.search_border input {
  border: none;
  width: 180px;
  height: 32px;
  line-height: 32px;
  font-size: 12px;
  line-height: normal;
  vertical-align: middle;
  float: left;
  display: block;
  outline: none;
}
.btn_search_sumbit {
  display: block;
  background: #d22222;
  border: 1px solid #d22222;
  width: 60px;
  height: 34px;
  text-indent: -1000px;
  overflow: hidden;
}
.btn_search_sumbit:hover {
  background: #bc1e1e;
}
.header_search .icon.icon_search {
  margin: 5px auto;
}

/*用户登录信息*/

.header_login {
  line-height: 30px;
  font-size: 12px;
  color: #333;
  text-align: right;
}
.header_login .user_img_box {
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  background: #ddd;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #efefef;
  margin-right: 10px;
  margin-top: 2px;
}
.header_login img {
  width: 100%;
  vertical-align: top;
}
.login_info {
  float: left;
  margin-left: 10px;
}
.user_name {
  display: block;
  /* max-width: 70px; */
  margin-right: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #d22222;
  text-align: left;
}
.user_name a {
  margin-right: 10px;
}
.user_menue {
  line-height: 30px;
  padding: 0 10px;
  position: relative;
  *z-index: 999;
}
.user_menue p {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 40px;
  text-align: left;
}
.user_menue .icon.icon_arrow_down {
  position: absolute;
  top: 15px;
  right: 0;
  z-index: 2;
}
.user_menue ul {
  display: none;
  border: 1px solid #ddd;
  width: 90px;
  position: absolute;
  z-index: 1;
  background: #fff;
  top: 30px;
  right: -10px;
}
.user_menue:hover ul {
  display: block;
  z-index: 9998;
}
.user_menue a {
  display: inline-block;
  height: 30px;
  margin-right: 10px;
  color: #fff !important;
}
.user_menue li {
  padding: 0 10px 0 30px;
  text-align: left;
  position: relative;
}
.user_menue li:hover {
  background: #f2f2f2;
}
.user_menue li .icon {
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -10px;
}
.user_menue li:hover .icon {
  background-position-x: -26px;
}
/*推荐分类*/
.header-recommend {
  height: 38px;
  line-height: 38px;
}
.header-recommend dt,
.header-recommend dd {
  float: left;
  font-size: 12px;
  color: #666666;
}
.header-recommend dd {
  margin-right: 22px;
  color: #d00000;
}
.header-recommend dt {
  margin-right: 32px;
}
/*推荐分类*/

/*从资料VIP登录注册提取得样式*/
#header_box {
  border-bottom: 1px solid #ccc;
  width: 100%;
  text-align: center;
}
#page_haeder {
  padding: 40px 0 0 0;
  line-height: 40px;
}
.not_vip .icon-vip {
  color: #999;
}
.not_vip {
  display: flex;
  align-items: center;
}
.not_vip img {
  /* width: 30px; */
}
#vip_login {
  margin-top: 10px;
}
/* .page_logo {
  float: left;
  margin-top: -30px;
  margin-left: 50px;
} */

.page_login a {
  margin-left: 20px;
}

.page_logined {
  position: relative;
  /* line-height: 40px */
}

.page_logined .avatar {
  width: 40px;
  height: 40px;
}

.page_logined .user_name {
  padding-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_logined .user_name a:hover {
  color: #d22;
}
.page_logined .renew_btn {
  margin-left: 25px;
}
.renew_btn {
  display: inline-block;
  background: #fbd74f;
  font-size: 16px;
  border-radius: 35px;
  line-height: 35px;
  padding: 0 25px;
}

.renew_btn:hover {
  background: #faca0c;
}

.page_logined .vip_user_info {
  display: none;
  position: absolute;
  right: 0;
  top: 60px;
  border: 1px solid #ddd;
  background: #fff;
  width: 100%;
  text-align: center;
  overflow: hidden;
  line-height: 22px;
  text-align: left;
  z-index: 100;
}

.page_logined .user_avatar_big {
  display: block;
  width: 215px;
  margin: 20px auto;
}
.page_logined .user_avatar_big a:hover {
  color: #d22;
}
.page_logined .user_avatar_big p {
  display: flex;
  align-items: center;
}

.page_logined .user_avatar_big p a {
  margin-right: 7px;
}

.page_logined .avatar_big {
  width: 60px;
  height: 60px;
  float: left;
  margin-right: 30px;
}

.page_logined ul {
  display: block;
  border-top: 1px solid #ddd;
  overflow: hidden;
  padding: 5px 0;
}

.page_logined li {
  text-align: center;
  color: #999;
  font-size: 12px;
  float: left;
  width: 33.33333333%;
  border-left: 1px solid #ddd;
  margin-left: -1px;
  line-height: 25px;
}
.avatar {
  width: 50px;
  height: 50px;
  display: block;
  overflow: hidden;
  background: #ddd;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}

.avatar img {
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
  margin: auto;
  height: 100%;
}

.page_logined big {
  font-size: 18px;
  color: #333;
  display: block;
  line-height: 35px;
}

.page_logined .drop_down_box {
  height: 60px;
}

.page_logined .drop_down_box:hover .vip_user_info {
  display: block;
}

.color_orange {
  color: #ff8913;
}
.color_orange:hover {
  color: #ff8913 !important;
}
/*从资料VIP登录注册提取得样式*/

/*导航*/

#page_nav {
  display: block;
}
.page_nav_li {
  float: left;
  line-height: 50px;
  margin-right: 20px;
}
.page_nav_li a {
  font-size: 16px;
}
#page_nav_ul a.active {
  color: #c00000;
}

/*导航右侧用户中心，购物车*/

.user_cart,
.user_center {
  float: right;
  line-height: 40px;
  padding-right: 20px;
}
.user_cart .icon,
.user_center .icon {
  float: left;
  margin-top: 10px;
}
.user_cart {
  position: relative;
  z-index: 1000;
}
.user_cart ins {
  text-decoration: none;
  color: #fff;
  background: #d22222;
  position: absolute;
  padding: 3px;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  right: 0;
  top: 3px;
}
#page_cart {
  display: none;
  width: 340px;
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 2000;
  border: 1px solid #ddd;
  background: #fff;
  z-index: 1000;
  -webkit-box-shadow: 3px 3px 0 rgba(204, 202, 202, 0.55);
  -moz-box-shadow: 3px 3px 0 rgba(204, 202, 202, 0.55);
  box-shadow: 3px 3px 0 rgba(204, 202, 202, 0.55);
}
#page_cart .icon_tip_arrow {
  left: auto;
  right: 40px;
}
.user_cart:hover #page_cart {
  display: block;
}
.page_cart_title {
  display: block;
  height: 40px;
  line-height: 40px;
  margin: 0 20px;
  border-bottom: 1px solid #ddd;
}
.page_cart_ul {
  display: block;
  margin-bottom: 20px;
  max-height: 295px;
  overflow: auto;
}
.page_cart_ul li {
  display: block;
  padding: 10px 0;
  margin: 0 20px;
  border-bottom: 1px dotted #ddd;
}
#page_cart .page_cart_ul a {
  font-size: 12px;
  display: block;
  float: left;
  padding: 0;
}
.page_cart_ul .img_box {
  width: 55px;
  height: 36px;
  margin-right: 10px;
  overflow: hidden;
}
.page_cart_ul .img_box img {
  width: 100%;
}
#page_cart .page_cart_ul .img_name {
  width: 140px;
  height: 36px;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.page_cart_ul .handle small {
  display: block;
  line-height: 14px;
  text-align: right;
}
.page_cart_ul .remove {
  margin-top: 10px;
  cursor: pointer;
}
.page_cart_ul .remove:hover {
  color: #d22222;
}
.cart_total {
  display: block;
  height: 40px;
  line-height: 40px;
  background: #f2f2f2;
  padding: 10px 20px;
}
.no_goods {
  display: block;
  text-align: center;
  line-height: 120px;
  hanging-punctuation: 120px;
  color: #999999;
  margin-bottom: 20px;
}
.no_goods img {
  vertical-align: middle;
}

/*页头样式  end########################################################################################*/

/*页脚样式  end########################################################################################*/

#page_footer {
  background: #4a5a68;
  color: #fff;
  padding: 20px;
  line-height: 20px;
  font-size: 12px;
}

/*在线客服*/

#online_services {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 1000;
}
#online_services li {
  position: relative;
}
#online_services .server_icon {
  background-repeat: no-repeat;
  background-color: #686868;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  display: block;
  margin: 0 0 5px;
  width: 40px;
  height: 40px;
}
#online_services li:hover .server_icon {
  background-color: #323232;
  background-color: rgba(0, 0, 0, 0.8);
}
#online_services a {
  display: none;
  position: absolute;
  height: 34px;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 2px 10px;
  background: #fff;
  top: 0;
  right: 45px;
  font-size: 12px;
  width: 110px;
}
#online_services li:hover a {
  display: block;
}
#online_services .icon_server {
  display: block;
  float: left;
  margin-right: 5px;
  width: 30px;
  height: 30px;
}
#online_services .icon_arrow_right {
  position: absolute;
  width: 10px;
  height: 12px;
  right: -9px;
  top: 50%;
  margin-top: -6px;
  background-position: -457px -22px;
}
.QQ_single .server_icon {
  background-position: -122px -354px;
}
.QQ_group .server_icon {
  background-position: -122px -399px;
}
.icon_QQ_singer {
  background-position: -130px -450px;
}
.icon_QQ_group {
  background-position: -130px -495px;
}

/*返回顶部*/

/*
#go_top {
    background: url(../images/go_top.png) no-repeat center center;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 100px;
    right: 0;
    z-index: 100;
    background-color: #7F7F7F;
}
#go_top:hover {
    background-color: #D22222;
    cursor: pointer;
}
*/

/*页脚样式  end########################################################################################*/

/*页身样式     ########################################################################################*/

#page_bodyer {
  padding: 1px 0 20px 0;
}

/*分页条*/

/*.pages_bar{
    padding: 20px;
    text-align: center;
    line-height: 20px;
    clear: both;
}
.pages_li{
    width: 20px;
}
.pages_li:hover{
    background: #D22222;
    color: #fff;
}
.pages_li,.pages_prev,.pages_next{
    border: 1px solid #ddd;
    margin: 0 3px;
    padding: 10px;
    display: inline-block;
}
.pages_li.active{
    border: 1px solid #fff;
}*/

/*分页条*/

.pages_bar {
  padding: 20px;
  text-align: center;
  line-height: 20px;
  clear: both;
}
.pages_bar a,
.pages_bar .current {
  border: 1px solid #ddd;
  margin: 0 3px;
  padding: 8px;
  display: inline-block;
  width: 20px;
  vertical-align: middle;
  background: #fff;
}
.pages_bar a:hover,
.pages_bar .current {
  background: #d22222;
  color: #fff;
  border-color: #d22222;
}

.pages_bar span.pgeBreak {
  font-weight: bold;
  vertical-align: middle;
}

/*左右布局*/

#bodyer_main {
  display: block;
  float: left;
  width: 860px;
}
#bodyer_main img {
  max-width: 100%;
}
#bodyer_aside {
  float: right;
  width: 320px;
}

/*tab选项卡*/

.tab_header {
  display: block;
  border-bottom: 1px solid #ddd;
}
.tab_item_tab {
  display: block;
  float: left;
  height: 48px;
  line-height: 48px;
  cursor: pointer;
  margin: 0 20px;
  font-size: 16px;
}
.tab_item_tab.active {
  border-bottom: 3px solid #f22222;
  color: #f22222;
}
.tab_item_content {
  padding: 20px;
}
.tab_item_content {
  display: none;
}
.tab_item_content.active {
  display: block;
}

/*右侧边栏通用模块样式*/

.aside_module {
  border: 1px solid #ddd;
  margin-bottom: 15px;
}
.aside_module .aside_header {
  background: #f2f2f2;
  line-height: 40px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  font-weight: 400;
  padding: 0 20px;
}
.aside_module .aside_content {
  padding: 20px;
}

/*评分图标*/

.starts {
  display: block;
  width: 104px;
  height: 15px;
  background: url(../images/icons.png) no-repeat -206px -46px;
}
.jq-starts {
  float: left;
}
.total_starts_1 {
  background-position: -206px -75px;
}
.total_starts_2 {
  background-position: -206px -104px;
}
.total_starts_3 {
  background-position: -206px -133px;
}
.total_starts_4 {
  background-position: -206px -162px;
}
.total_starts_5 {
  background-position: -206px -191px;
}
.starts_small {
  display: block;
  width: 73px;
  height: 13px;
  background: url(../images/icons.png?t=20160406) no-repeat -206px -231px;
}
.total_starts_small_1 {
  background-position: -206px -251px;
}
.total_starts_small_2 {
  background-position: -206px -270px;
}
.total_starts_small_3 {
  background-position: -206px -289px;
}
.total_starts_small_4 {
  background-position: -206px -308px;
}
.total_starts_small_5 {
  background-position: -206px -326px;
}
.starts i {
  display: block;
  float: left;
  width: 15px;
  height: 15px;
  margin-right: 7px;
  overflow: hidden;
  cursor: pointer;
}
.starts i:last-child {
  margin-right: 0;
}
.jq-starts_mark {
  color: #d22222;
  margin-left: 10px;
}

/*分享，收藏*/

/*百度分享*/

/* 分享 */
.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 {
  font-size: 14px;
  color: #333;
  line-height: 38px;
  z-index: 999;
}
.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("https://bbs.elecfans.com/template/elecfans_201508/prize/images/qq-ico.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("https://bbs.elecfans.com/template/elecfans_201508/prize/images/weixin-ico.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("https://bbs.elecfans.com/template/elecfans_201508/prize/images/weibo-ico.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("https://bbs.elecfans.com/template/elecfans_201508/prize/images/qzone-ico.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;
}

/*空列表*/

.no_list {
  clear: both;
  padding: 120px 0 100px 0;
  font-size: 24px;
  color: #dddddd;
  text-align: center;
  background: url(../images/no_list.png) no-repeat center 50px;
}

/*页身样式  end########################################################################################*/

/*发烧友学院课程全站弹窗广告*/

.course-popad {
  display: block;
  background: url(/Public/pc/images/course-website-ad.png) no-repeat 0 0;
  width: 600px;
  height: 486px;
  position: fixed;
  z-index: 99999;
  left: 50%;
  top: 50%;
  margin-left: -300px;
  margin-top: -243px;
}
.course-mask {
  position: absolute;
  z-index: 99998;
  background-color: #000;
  opacity: 0.5;
  top: 0;
  left: 0;
}
.course-popad .course-link {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 100000;
}
.course-popad .course-shut {
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: url(/Public/pc/images/course-popad-shut.png) no-repeat;
  position: absolute;
  right: 86px;
  top: 66px;
  z-index: 100001;
}
/*面包屑导航*/
.bread-nav {
  width: 1200px;
  margin: 20px auto 0 auto;
  font-size: 14px;
}
.bread-nav a,
.bread-nav em {
  color: #666;
}
.bread-nav em {
  margin: 0 3px;
}

.bread-nav span {
  color: #999;
}
/* .bread-nav a:hover{
    color: #259;
} */
/*170912新侧栏导航*/
.fixed-bar {
  width: 68px;
  border: 1px solid #e4e4e4;
  position: fixed;
  right: 36px;
  bottom: 225px;
  border-radius: 4px;
  background-color: #fff;
  z-index: 6;
}
.fixed-bar li {
  width: 58px;
  padding: 0 5px;
  text-align: center;
  border-bottom: 1px solid #e4e4e4;
  position: relative;
}
.wh {
  width: 100%;
}
.ht {
  height: 100%;
}
.fixed-bar li.no-border {
  border-width: 0px;
}
.fixed-bar li div {
  height: 44px;
  background-position: center center;
  background-repeat: no-repeat;
}
.fixed-bar li p {
  color: #666;
  font-size: 12px;
  padding-bottom: 6px;
}
.fixed-bar li:hover p {
  color: #d00000;
}
.bar-top {
  background-image: url(../images/bar_01.png);
}
.bar-down {
  background-image: url(../images/bar_03.png);
}
.bar-code {
  background-image: url(../images/bar_05.png);
}
.bar-help {
  background-image: url(../images/bar_07.png);
}
.bar-share {
  background-size: 24px 23px;
  background-image: url(../images/bar_15.png);
}
.fixed-bar li:hover .bar-top {
  background-image: url(../images/bar_02.png);
}
.fixed-bar li:hover .bar-down {
  background-image: url(../images/bar_04.png);
}
.fixed-bar li:hover .bar-code {
  background-image: url(../images/bar_06.png);
}
.fixed-bar li:hover .bar-help {
  background-image: url(../images/bar_08.png);
}
.fixed-bar li:hover .bar-share {
  background-image: url(../images/bar_16.png);
}
.fixed-bar li:hover .fix-show {
  display: block;
}
.fixed-bar li .fix-code1,
.fixed-bar li .fix-code2,
.fixed-bar li .fix-code3 {
  position: absolute;
  height: auto;
  right: 78px;
  display: none;
}
.fixed-bar li .fix-code1 {
  right: 70px;
  top: -5px;
  width: 189px;
  height: 235px;
  text-align: center;
  padding: 15px 34px 15px 17px;
  box-sizing: border-box;
  background-size: 181px 235px;
  background-position: top left;
  background-image: url(../images/bar_14.png);
}
.fixed-bar li .fix-code2 {
  top: -72px;
}
.fixed-bar li .fix-code3 {
  top: -139px;
}
.share-media--bar .share-title {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}
.share-media--bar .share-QR-code {
  width: 135px;
  height: 135px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.share-media--bar .share-copy {
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  box-sizing: border-box;
  border-radius: 15px;
  background-color: #d22222;
}
.share-media--bar .share-copy::before,
.share-media--bar .share-copy span {
  display: inline-block;
}
.share-media--bar .share-copy::before {
  content: "";
  position: relative;
  top: 4px;
  width: 15px;
  height: 16px;
  margin-right: 5px;
  background-size: 100% 100%;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAgCAYAAAAFQMh/AAAAAXNSR0IArs4c6QAABPxJREFUWEell3ePFVUYh7kKIiBVqgIuCKjEIGoAlRZAmgqC2BLQP4BE4wfQ74DBxMQQCAkEgpFIDb13BJVqABVWWJQiIEVQqcvlea7vbGYvu+Tu5SRP5u7MmfM7bz2zmVpFjmw2+wCv1oem0BgeCRpwfRCuwV9w0msmk7melsoUqVsLYYUehxJoBY1iIw9zdd1/4DQchWMIn7lvYUS16jnoDb2gLTwEWdATt+ASnIXf4EfYifi5RLxGFod7de0zMAwGwNOxmIteCGt1teJe/4P9sBz2wN9QXlPhZrz0IgyBQdABdKkLu6jxrA1NwLlPQQlchs2wNuZeLlgYa+vwUjd4F96AJ+BP2BoL7uVqHHX5o6D7X4Y+0AbKYA2sgtM1EdaCwTARjKuu1YKloLXniKHuNfEUbwHmQX/oAVaAsf4WSgsSZiHd1x508UhoHoss4boZQUun0ggPmfUvwHAwRGUwGw4UKmwW69ru0BlMmF2wF1GzVyvrcnGDN7h3M+5ZWsb5PRgF52Ea7L6nMIslz3VTy8BY58oEgXLmGD+TzDo2Y4+ma5bnPvsQxsXzL7l+X6VwuMmysSbNWruOu9ei294LURvHq9AT3NBPsJ5nR8JiY90VPoB3wIbyeZXCiFoKXaAj3ICDUKqQiyWDea35PRTeivnHuFqrK5jrb91vgr0GY8GE3A2TYFcli0PUJLBGbRInwATaku61zNPtWvo+2L2uhOg8F2eufyv8CpePwOTSeteaAodywtGRjJF1OgIsG8tnJ8yEdamEMaYDQde5sK7fApbJRuadZ716/DYZja2Y3dvha1gNpzJ5ou7MVlgCWmuNuuB+FmRq9rEQHcO1L1i3G2EhfJdb8P95z/LbLFbUKtD1X8FisOlcc5Zl0A7eBhc0vnYgd2bMfgATTPfaDJynpR4Idi03tskDINYyrm/CeHgefoYVMIs5B7jmhsJa4Q4/AV1oXSq6AEwGG7/u9UBwY7bAtKXbWNBsNWS2SpPI2Jt4rjUL9NzhdJ4orJgJ5Q7NVPvpN7A14mWZ9IMJYOcypjZ8Ld3gHEVD2FgaAjfpWh4ec5lzKJmTXBX+jD/sSGapp4tZtyg5OyPTLZmPocQNuRhUWJoSNhwek4r+C34EWIq5TpYeCs+IyXaYbfAFE3c4KTqXMXNTr8eLxstavRhz7GqeuzYZvWPjMRQeGpVqP1/Y2lPU76b1MJUX9sWidi7LzOcmoIfBLzz/PZ67KcvGRPsDdHvSr71X7dBiTwtftmNZt3NAN+ZejEzVkiz3dJ/3XNzmb6t8Ekwua/iuWFanrPDkeFnxwzAfKpJGdyebSBbhnv13NNhoGoLNYTbzPLEKGgp/mtq9nygrwXLyI+0Si5nFucFcRbTQOjXhOoG1aQNZwlxrtqChsMeVmWipeO76CWMX0nqzskxx5tlrXwKbvl3JDdjdpsMyOM48j8WChsJ2IXdu1trejKMx89NGqxX34LdUrFHr3u8pjz5rfiaCnmA1GgqbmUlnMln8xDGTTSgtsGxMNA8NM9tnutQmswF+TXekQtUV9oTyvwKPQXurzcTysR4VF92cfCNbNutgIYLHCxXKn1dxHkfiaJFlYv92MyZTsgHPWOu3VIsRNQRFj/wPAS3zC1LR5J8y61trdbkt9Uw604tVvuubK85nhRw2iuSfsKsIXi1WqFpXV7VgxD/ZRHl+I7mfTdwBWivi9WrNapEAAAAASUVORK5CYII=");
}

.fixed-bar li .fix-link {
  position: absolute;
  height: 68px;
  top: -1px;
  right: 65px;
  padding-right: 24px;
  display: none;
}
.fixed-bar li .link-main {
  width: 166px;
  height: 96px;
  padding-top: 2px;
  border: 1px solid #e4e4e4;
  background-color: #fff;
  border-radius: 3px;
}
.fix-link .trangle {
  display: block;
  position: absolute;
  top: 25px;
  right: 16px;
  z-index: 2;
  background-image: url(../images/link_angle.png);
  width: 10px;
  height: 16px;
}
.fixed-bar li .link-main p {
  line-height: 30px;
  font-size: 14px;
  text-align: left;
  padding-bottom: 0px;
}
.fixed-bar li .link-main span {
  vertical-align: middle;
}
.fixed-bar li .link-main .isFlex{
    display: flex;
    align-items: center;
    justify-content: flex-start;
} 
.fixed-bar li .link-main .isFlex span{
    display: block;
    flex: 1;
}  
.fixed-bar li.no-border:hover .link-main p {
  color: #666;
}
.fixed-bar li.no-border:hover .fix-link {
  display: block;
}
.fixed-bar li .link-main p:hover span {
  color: #259;
}
.icon-link-qq img,
.icon-link-qun img {
  width: 20px;
  padding-left: 10px;
  margin-top: 3px;
  vertical-align: -5px;
}
.icon-link-qq:hover,
.icon-link-qun:hover {
  color: #259;
}
.relative {
  position: relative;
}
.page_nav_li img {
  vertical-align: middle;
}
.course-cate {
  position: absolute;
  border: 1px solid #f2f2f2;
  padding: 20px 5px 5px;
  width: 200px;
  background-color: #fff;
  z-index: 12;
  left: -20px;
  top: 100%;
}
.course-cate li {
  width: 100px;
  float: left;
  height: 35px;
  text-align: center;
  line-height: 35px;
}
.course-cate li a {
  font-size: 14px;
  color: #666666;
}
.course-cate li:hover a {
  color: #d00000;
}
.course-cate li:hover {
  background-color: #f2f2f2;
}
.cate-arrow {
  position: absolute;
  top: 39px;
  left: 0px;
  z-index: 13;
}
.course-cate,
.cate-arrow {
  display: none;
}
.page_nav_li.relative:hover .course-cate {
  display: block;
}
.page_nav_li.relative:hover .cate-arrow {
  display: block;
}

/* 顶通条 */
.site_top {
  position: relative;
  z-index: 30;
  height: 30px;
  background-color: #d00000;
  color: #ffcece;
  line-height: 30px;
}
.site_top .icon {
  display: inline-block;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  vertical-align: -2px;
  background: url("https://www.elecfans.com/static/main/img/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;
  position: relative;
  top: 2px;
}
.site_top .i8 {
  background-position: 0 -108px;
}
.site_top .site_partner a:hover .icon {
  background-position-x: -19px;
}
.site_top a {
  color: #ffcece;
}
.site_top a:hover {
  color: #fff;
}
.site_partner {
  position: relative;
  float: left;
}
.site_partner:after {
  position: absolute;
  top: 14.5px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e66364;
}
.site_partner a {
  position: relative;
  z-index: 1;
  float: left;
  padding: 0 5px;
  background-color: #d00000;
  margin-left: 20px;
  vertical-align: top;
}
.site_partner a:first-child {
  margin-left: 0;
}
.site_top .user_area {
  float: right;
}
.site_top .login {
  margin-right: 5px;
}
.site_top .user_area .umenu {
  position: relative;
  cursor: pointer;
}
.site_top .user_area .umenu img {
  display: inline-block;
  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: 22px;
  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;
  /* background-color: red; */
}
.site_top .user_area .drop a {
  display: block;
  color: #fff;
}
.site_top .user_area .drop a:hover {
  background-color: #000;
}

/* 顶通条 */

/*2019*/
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex_space_between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex_align_items {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.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_wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.mr20 {
  margin-right: 20px;
}
.ml20 {
  margin-left: 20px;
}
.mt20 {
  margin-top: 20px;
}
.mb20 {
  margin-bottom: 20px;
}
.mr10 {
  margin-right: 10px;
}
.mb10 {
  margin-bottom: 10px;
}
.mt10 {
  margin-top: 10px;
}
.tdlt {
  text-decoration: line-through;
}
.money big {
  font-size: 28px;
}
.money big span {
  font-size: 20px;
}
.money > span {
  color: #d00000;
  width: 98px;
  height: 18px;
  font-size: 12px;
  border: 1px solid #d00000;
  border-radius: 3px;
  display: inline-block;
  text-align: center;
  line-height: 18px;
  margin-left: 20px;
}
.cp {
  cursor: pointer;
}
.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;
}
/* 2019 */

/* 站点底部 */
/* 站点底部 */
.site_footer {
  overflow: hidden;
  background-color: #333;
  line-height: 1;
  color: #ccc;
  font-size: 12px;
}
.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;
}

/* 站点底部 */

/* 分销 */
.pop_price_qr .layui-layer-title {
  background: #fff;
  border: none;
}
.pop_price_qr .layui-layer-content img {
  width: 80%;
  margin: 0 auto;
  display: block;
}
/* 分销 */

/* 顶部原厂入驻链接 */
.site_top .origin-item {
  float: right;
}
.site_top .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: #feff02;
  color: #d00000;
  font-size: 12px;
  font-style: italic;
  font-family: "PingFang SC", "Arial", "Microsoft YaHei", "Helvetica",
    "Helvetica Neue", "Tahoma", "sans-serif";
}
.site_top .origin-item .hot:before {
  position: absolute;
  left: -4px;
  top: 3px;
  content: "";
  width: 0;
  height: 0;
  line-height: 1;
  background-color: #feff02;
  border-style: solid;
  border-width: 4px 4px 4px 0;
  border-color: #d00000 #feff02 #d00000 #d00000;
}
/* 顶部原厂入驻链接 end */

/* 优惠券领取成功 */
.receive_success {
  border: 10px solid #797979;
}
.receive_success .layui-layer-content {
  padding: 0 30px 0 30px;
  box-sizing: border-box;
}
.receive_success .layui-layer-title {
  background: #fff;
  border: none;
  color: #fff;
}
.receive_success h4 {
  font-size: 18px;
  margin: 10px 0;
}
.receive_success h4 b {
  color: #ff9900;
}
.receive_success p {
  margin: 10px 0;
}
.receive_success a {
  color: #0066cc;
}
.receive_success .layui-layer-btn {
  text-align: left;
  margin-left: 25px;
  padding: 0 0 12px;
  position: relative;
  top: -18px;
}
.receive_success .layui-layer-btn .layui-layer-btn0 {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  height: 23px;
  line-height: 23px;
  padding: 0 20px;
}

.public-footer__ft {
  font-size: 0;
  padding: 15px 0;
  border-top: 1px solid #494949;
}
.public-footer__ft-inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.public-footer__ft-logo {
  margin-right: 32px;
}
.public-footer__ft-logo img {
  width: 134px;
  height: 58px;
}
.public-footer__ft-logo img.is-hover {
  display: none;
}
.public-footer__ft-logo:hover .is-hover {
  display: block;
}
.public-footer__ft-logo:hover .is-default {
  display: none;
}

.public-footer__ft-right {
  display: flex;
  align-items: center;
}
.public-footer__ft-item {
  height: 70px;
  margin-right: 8px;
  text-align: center;
}
.public-footer__ft-item .hd {
  border: none;
}
.public-footer__ft-item:last-child {
  margin-right: 0;
}
.public-footer__ft-item .hd img.is-hover {
  display: none;
}
.public-footer__ft-item a:hover .is-hover {
  display: block;
}
.public-footer__ft-item a:hover .is-default {
  display: none;
}

.public-footer__ft-text {
  width: 200px;
  margin: 0 0 -14px 30px;
}
.public-footer__ft-text li {
  width: 33.33%;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  margin-bottom: 14px;
}
.public-footer__ft-text li a {
  color: #fff;
  opacity: 0.5;
}
.public-footer__ft-text li a:hover {
  opacity: 1;
}
/*用户实名弹窗Star */
.checkPopWrap.pop_verification {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
  text-align: left;
}
.checkPopContent {
  position: absolute;
  left: 50%;
  top: 200px;
  z-index: 299;
  width: 410px;
  margin-left: -205px;
  border-radius: 4px;
  padding: 20px 30px;
  box-sizing: border-box;
  background-color: #fff;
}
.checkPopContent h3 {
  text-align: left;
  color: #fff;
  font-size: 20px;
  font-size: 600;
  color: #303133;
  font-weight: 400;
}
.checkPopContent .closeCheckPop {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 25px;
  right: 30px;
  background: url(../images/icon-close.png);
  background-size: 100% 100%;
  cursor: pointer;
}
.checkPopDesc {
  margin: 20px 0;
  text-align: left;
  line-height: 25px;
  font-size: 14px;
  color: #63676d;
}
.checkPopFlex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.checkPopFlex .text_phone {
  flex: 1;
  padding: 0 10px;
  height: 38px;
  line-height: 38px;
  border: 1px solid #dcdee2;
  vertical-align: middle;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 12px;
  border-left: none;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.checkPopContent #post_form_phone select {
  outline: none;
  padding: 0 10px;
  height: 38px;
  line-height: 38px;
  border: 1px solid #dcdee2;
  border-right: none;
  font-size: 12px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  vertical-align: middle;
}
.checkPopContent .ui-err {
  display: block;
}
.checkPopContent #post_form_phone .ui-err {
  font-size: 14px;
  color: #e86868;
  background-color: #fff;
}
.smscode {
  flex: 1;
  padding: 0 10px;
  height: 38px;
  line-height: 38px;
  border: 1px solid #dcdee2;
  vertical-align: middle;
  box-sizing: border-box;
  border-radius: 3px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 12px;
  border-right: none;
}
.checkPopContent .getcode_btn {
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  background-color: transparent;
  color: #e86868;
  font-size: 12px;
  border: 1px solid #dcdee2;
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-right: 10px;
  outline: none;
}
.checkPopContent .sub_btn {
  width: 100px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  background-color: #c00;
  border: 0;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
}
.checkPopFlexRight {
  justify-content: flex-end;
}
.checkPopContent dl {
  margin-bottom: 20px;
}
.checkPopWrap .checkPopContent .nc_wrapper {
  width: 100% !important;
  margin-left: 0px;
}
.checkPopWrap .checkPopContent .nc_wrapper .nc_scale {
  width: 100%;
  margin-left: 0px;
}
/*用户实名弹窗end */

/*消息提示 start*/
.public-header__top-notice {
  position: relative;
  height: 20px;
  margin-top: 5px;
  padding: 0px 22px 0 24px;
  line-height: 1.2;
  font-family: "微软雅黑";
  text-align: left;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: left top;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAWZJREFUOE/tlLFLQlEUh73o4NDQ0JDgEjQ0JDTYEDgktLTXFIVLREM0CS0iImFbo0VDQQWCc9SW4BQ0CA3a5JCbDv4Bwes7dBWf3vuug6MXfqD3/M53zzv3vaNCM15qxrxQINDzvAMOzKAN9Is+0Y1S6sVWiBEIKEJCFcVRToNkL4WKqAb01AS1AUuY19A+iVLZcHFYlD/v6IHY7Th0AqgTuhhXSOiZqsCzyn6deGwaYBJTGfNm0IUB/SG+ha8z6jNVuI0hjzHtAMpjF/DV5kB/p2j2OTvr9ObY0cNX4k/4nq09BLZE8AvtYmw4gHJ5jyiBtz/w+m4Z4B2BPoZsEGwQw3/N7wj+MxuwSeAQg3yzzgVQ3tl7/Akb8ITAlVTppP0bFtHF6CdoerHFJAqjDyQT51sfIANCXugj1Nbt8R3uGl97JElf33TVMm0qVHRpewLngKVPyyTvoAUkY6sV1A4ncMpeDm1/6kSOFT/Xu2AAAAAASUVORK5CYII=");
}

.public-header__top-notice:hover::before {
  display: block;
}
.public-header__top-notice .text-link {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.public-header__top-notice .text-num {
  position: absolute;
  display: none;
  left: 50px;
  top: -4px;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  padding: 0 3px;
  color: #d00000;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  border-radius: 8px 8px 8px 0px;
  background-color: #fff;
}
.public-header__top-notice::after {
  content: '消息';
  font-size: 12px;
  color: #fff;
  line-height: 20px;
}

.public-header__top-notice .text-num.is-active {
  display: block;
}

.public-header__top-notice::before {
  cursor: pointer;
  content: "";
  display: none;
  position: absolute;
  width: 100%;
  height: 40px;
  left: 0;
  top: 0;
}

.public-header__top-message {
  display: none;
  z-index: 399;
  position: absolute;
  left: 50%;
  top: 28px;
  margin-left: -210px;
  width: 420px;
  border-radius: 4px;
  padding: 12px 24px 24px;
  box-sizing: border-box;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.public-header__top-message .message-tabs {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 15px;
  border-bottom: #e4e7ed solid 1px;
}

.public-header__top-message .message-tabs > li {
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #303133;
}

.public-header__top-message .message-tabs > li.is-active::after {
  content: "";
  display: block;
  position: relative;
  left: 0;
  bottom: 2px;
  height: 2px;
  width: 100%;
  background-color: #d00000;
}

.public-header__top-message .message-tabs > li:hover,
.public-header__top-message .message-tabs > li.is-active {
  color: #d00000;
}

.public-header__top-message .message-tabs > li:hover .icon-chat,
.public-header__top-message .message-tabs > li.is-active .icon-chat {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAWxJREFUOE+tkrFKA1EQRe9KCosU+gVGsFzIiqB2IqQUbCwsDWqnZbBIIUECSgQ/QVJrYRErhbWIIIhGLcTCQtAinQoWUaPxTOCJiGFjdGHZNzszZ+bdGU9/fLxzaaQhrcJJtMGqEXN0Ly2OS08W751Jt+9SxsMRBXiTumNSltjrpJRzgEYAKCrZ+SvSDMFj5KT/F3AhTdJifVDaNTKVss9ScVS6C2m9R1rBl2nZAWIuW6K7G9qEiJsj6YCkBG2HtN3fEnAs+V1SbQiBDHQqpR6lMmqb8jqRJvCVDIBpQpYpsG1T6ETEWZKLQAqdAppTsOIeLb0+SL1uMaLGyVUWuGoSbeYdYIukwJbjBeqwVLWJsFxz/I//AAxoPw1gpwlgRDFG5APYxLHPN2VJANY4VznuUdFgzacuHZrQl1IfBa8+N5AxbpDkE5O30X3ZvAJBU86mSBy7hD3Nu972CjsAGgzQ0RL2DYXyvwZ81+QDAVp2ceRF528AAAAASUVORK5CYII=");
}

.public-header__top-message .message-tabs > li:hover .icon-system,
.public-header__top-message .message-tabs > li.is-active .icon-system {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAVlJREFUOE+1k88rhFEUhp9hhJoVGwuKPUVjSjFJFigLoigpO1lPdso/YKGoyY6yoFgo1rOUEMnCgp2FhWShzGL8eD75ZDRTM02+Op3vnvve97zn3HMjVPhFKjxPUYIM1DXC0DtMmiT2BotxuA0Tuh8bgJc8AoPRBuj/gDmBo/oz/a6+qQp6O2HkCuKSLhnvdN32Q3ABMwZXDdxoe6+w3wP3QUb3Wo1lVLEg0Zq2/gQbKshGLmE+C0e14gQkuyX425eQIMj4dy8gyChxywzLhQC/FVRMoNJkPQyGKkz8VULJCnI2sRpSqo1+kzyURVCwhKD7XsuJnT1+hpags2U1MQRbStr/YW1bmZsdcBfuhbdgzePKT2srXuOByXJ5g3QOPRY3JTCYvkf9nusdfbMqVy2hS7IxD6WC4RKTKDrKjmBfDUwInBZY54zMOsqHoapTaE/A9f89plJf6Sc1nmlucaKQlwAAAABJRU5ErkJggg==");
}

.public-header__top-message .message-tabs > li:hover .icon-reply,
.public-header__top-message .message-tabs > li.is-active .icon-reply {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAUJJREFUOE+lk69LQ1EcxT9TMVnshtkMggoGDYYhRsGwPlGbwgSLNsEgBoNFBasmtQnGFUEEcTMbNOwPENPw9+c+Nhjz+jbYgwv33XvO+Z7zvt+XocsnE/iPMPsD226HWvU8//RsbgJexC37vtgHa6MJDRKBCtx6cen2ImaoTi6K2XTtSyrWYHoKqg2BZy9yARgTsFTxG3YFl7+g0Asl8fPiK20FAjlUNkdO6+sWWJG0MQYHzRGiDprJOnjtt7Lk4wY5VSCNXIKBQVgdh71ohHaVy5CVWFJg+I/AA+R74Fx7S+9wHbOdKmBLdcidq+B6s8Jhc+aQ+1+BegufJJ2GNulkp5WcKvABNS2fCLpxUM7CoMTmIjVCJ79GTCDkvrJ6dJRbRf24ec8W7MJM0oV7GHHKjtxmO3Egpupkbk0aNRHo5vkF3BaPEdbboVQAAAAASUVORK5CYII=");
}

.public-header__top-message .message-tabs [class*="icon-"] {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: -3px;
  margin-right: 8px;
  background-size: 100% 100%;
}

.public-header__top-message .message-tabs [class*="icon-"].news::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #d00000;
}

.public-header__top-message .message-tabs .icon-chat {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAXtJREFUOE+tkr9LQlEUx3ua4uDSX5BBbkJtjTk4Bi0NjU/eD5capcEhJITCoF3fI5tfQ4NNBTYY+Cc0OAQ1uOnQIL6er895+CIi0awLl8u595zPvd/vucrSH4dimuaW7/uniqKkZrHIG5LTGQwGh47jvEm+AF44KLqu25kF4DwRj8dLrN1arVYOAT6BMkdxkGIYhsqyXa/X8/8L0HV9NxKJvPOaWyEjrTQej68sy3pVVTURi8VOuLU49QUUHEthqI3EFt6UATwASKG9xdnaVICmaRnqh7ZtdydacxjbbjQa4rxo3+EFzQlAjGzTuWvpwiImaiIPydVFAUEX5HIBuP1+fyX8GLPaSf4BORv4YQQANDlsbKKnOxqN8mjuSUeIdfaTPwAlNw/gJgBks9nldDotBl4y75m5SdEZXeih845YYMHwPO9RjMb0Vc6ePn8gtAsKMsyKtC4sKBQKVfb2vrwkSdwk3meez/2FQwA3r0ej0SPiZ2RUfg347skHD0zUF+Vit2sAAAAASUVORK5CYII=");
}

.public-header__top-message .message-tabs .icon-system {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAW9JREFUOE9jZKAQMFKonwGnAQkJCRwsLCzuTExMIUBLeP7+/Vs6d+7cOzALQ0NDeVavXv0FxQAHBwcWdXV1+////ycAsQ8jI+MZoIaVQLYEkG09a9Ysz5SUFGOgoTVAcQMgXxFuQGpqajRQ0QSgxA2ghjVAvHbOnDlPQDYCXaPAxsa2H+iKTKDmyUChKb9//565YMGCH4xpaWnp//792wqUOP/r1y9boOAN9HCBGQCyEV2OEWjzfqDgQqDt9dgUILuAYgOALrUFutQZ5gog/wdJLgBq9ATiYmD4sIAMAbr6BUkG4PJCNNApJ5mZmY8DA1EWFLIkBSJMMTAwpwOd5AF03hIgvQBo212YHCwWgHKBQLHpQNxz+/btjQcOHPiDkpCAicQCGEjhQAUhQMVvgAatAbJXANkyQHrC7NmzDZOTkwOArgWFgwQwLZjiTMrA9GED1BQMxBFAxRxAOhZowBaYq4AG6QCT9hXaZSZicykAx7m8fWbDzBMAAAAASUVORK5CYII=");
}

.public-header__top-message .message-tabs .icon-reply {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAVNJREFUOE9jZKAQMIL0JycnOzMxMTUwMjLKoJv3////P79//3ZdsGDBg5SUlGSgmgSg2pyZM2deBKkFG5CamnocSK0FKlyDzUEgzUA1+UDNFUADe4Fq8oG05Zw5c56ADUhLS7v/69cvR5BCbAZANbcDNZ3/9+9fPNAF+4HqfGfPnn2BoAEwm4EaHIG4AGhICpAuBmqeCPcCLhcgawa68AMbG9t+oAEzYJrxGoBPc2hoKI+AgEA20KBOrF4gZHNCQoICyDWzZs1SxDAAGFUhwEBaDQyspD9//mzH5my8BgBtB4XwSWCUxQP9+wnInobsZ5C/cRoAkgTaeBuocQnQAF8g3YyumZABP1hZWWcDFR0Bal4KSijY0gVeLxCTNTAMAPkb6OQtf//+xZqU0Q1lZmYOAYoFAGPBFhYLGkAnTwcaokCMC4BqngBjqHLevHlHwAZQAgCMHAwgm8dofgAAAABJRU5ErkJggg==");
}

.public-header__top-message .message-panel {
  display: none;
}

.public-header__top-message .message-panel.is-active {
  display: block;
}

.public-header__top-message .message-body {
  max-height: 300px;
  min-height: 300px;
  overflow-y: auto;
  padding-right: 24px;
  margin-right: -24px;
}

.public-header__top-message .message-body::-webkit-scrollbar {
  width: 5px;
}

.public-header__top-message .message-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}

.public-header__top-message .message-body.is-chat .text-tips {
  max-width: 100%;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.public-header__top-message .message-body.is-system .text-tips {
  max-width: 100%;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.public-header__top-message .message-body.is-reply .message-content {
  align-items: flex-end;
}

.public-header__top-message .message-body.is-reply .text-tips {
  max-width: 100%;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.public-header__top-message .message-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.public-header__top-message .message-avatar {
  width: 40px;
  height: 40px;
  margin-right: 16px;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
}

.public-header__top-message .message-inner {
  flex: 1;
  min-width: 0;
}

.public-header__top-message .message-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  line-height: 20px;
  position: relative;
}

.public-header__top-message .message-content .text-right {
  display: none;
  color: #d00000;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
}

.public-header__top-message .message-content .text-right::before {
  content: '...';
  padding-right: 5px;
  color: #666;
}

.public-header__top-message .message-content .text-tips {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  color: #666;
}

.public-header__top-message .message-content .text-tips span,
.public-header__top-message .message-content .text-tips b {
  font-weight: 600;
  color: #333;
}

.public-header__top-message .message-content .text-tips b,
.public-header__top-message .message-content .text-tips a {
  color: #d00000;
}

.public-header__top-message .message-content .text-tips a:hover {
  color: #c40000;
}

.public-header__top-message .message-content .text-only {
  max-width: 100%;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.public-header__top-message .message-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

.public-header__top-message .message-title h4 {
  font-size: 14px;
  color: #333;
  font-weight: normal;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.public-header__top-message .text-date {
  font-size: 12px;
  color: #999;
  padding-left: 10px;
}

.public-header__top-message .message-foot {
  text-align: center;
  padding-top: 16px;
  border-top: solid 1px #e6e6e6;
}

.public-header__top-message .message-foot a {
  font-size: 12px;
  color: #666;
}

.public-header__top-message .message-foot a:hover {
  color: #c40000;
}
/*消息提示 end*/

.public-footer__ft-item{
    background: #2a2a2a;
    text-align: center;
}

.public-footer__ft-item .site_foot_img{
    height: 43px;
    line-height: 43px;
    vertical-align: middle;
    border-bottom: 1px solid #929292;
    overflow: hidden;
}
.public-footer__ft-item .site_foot_img img{
    vertical-align: middle;
    height: 25px;
}
.public-footer__ft-item:hover .site_foot_img img{
    transform: translateX(-160px);
    filter: drop-shadow(#fff 160px 0);
}   
.public-footer__ft-item .site_foot_text{
    font-size: 12px;
    height: 26px;
    line-height: 26px;
    color: #929292;
}
.public-footer__ft-item:hover .site_foot_text{
    color: #fff;
}
.public-footer__ft-elecfans .site_foot_img img{
    height: 32px;
    margin-top: -4px;
}
.public-footer__ft-elecfans{
    width: 124px;
}
.public-footer__ft-hqpcb {
    width: 163px;
}
.public-footer__ft-hqchip {
    width: 201px;
}
.public-footer__ft-smt{
    width: 138px;
}
.public-footer__ft-nextpcb{
    width: 160px;
}