/* reset */

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

header, footer, section, article, aside, nav, hgroup, address, figure, figcaption, menu, details {
    display: block;
}

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

caption, th {
    text-align: left;
    font-weight: normal;
}

html, body, fieldset, img, iframe, abbr {
    border: 0;
}


[hidefocus], summary {
    outline: 0;
}

sup, sub {
    font-size: 83%;
}

pre, code, kbd, samp,p {
    font-family: inherit;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}

q:before, q:after {
    content: none;
}

textarea {
    overflow: auto;
    resize: none;
}

label, summary {
    cursor: default;
}

a, button {
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
 em, strong, b {
    /* font-weight: inherit; */
}
a:hover {
    text-decoration: none;
}

/*移动端去掉点击框*/
body, textarea, input, button, select, keygen {
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    font-family: "微软雅黑";
    font-size: 14px;
}

legend,.hide {
    display: none;
}

img .vam{
    vertical-align: middle;
}
.vab{
    vertical-align: bottom
}
.vas{
    vertical-align: sub;
}
body {
    background: #f2f2f2;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

a {
    color: #2897C5;
}

a:hover {
    color: #d00000;
}

ul li {
    list-style: none;
}
.container{
    background: #f5f5f5;
}

.dib{
    display: inline-block;
}
.cp{
    cursor: pointer;
}
/*
 * 清除浮动
 * .clearfix,header,footer
 */
.top:before, .column:before, .main-wrap:before, .col-sub:before, .col-extra:before, .hd:before, .bd:before {
    content: " ";
    display: block;
    height: 0;
    visibility: hidden;
    font-size: 0;
}

.top:after, .header:after, .column:after, .main-wrap:after, .col-sub:after, .col-extra:after, .hd:after, .bd:after {
    content: " ";
    display: block;
    height: 0;
    visibility: hidden;
    font-size: 0;
    clear: both;
}

.top, .header, .column, .main-wrap, .col-sub, .col-extra, .hd, .bd {
    *zoom: 1;
}

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

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

.clearfix:before,.section:before, footer:before {
    content: " ";
    display: block;
    height: 0;
    visibility: hidden;
    font-size: 0;
}

.clearfix:after, .header:after, .section:after, footer:after {
    content: " ";
    display: block;
    height: 0;
    visibility: hidden;
    font-size: 0;
    clear: both;
}

/* 表格 */
table {
    border-collapse: collapse;
    border-spacing: 0;
    text-align: left;
}

td, th {
    display: table-cell;
    vertical-align: inherit;
    font-weight: normal;
}

table {
    width: 100%;
}

table td, table th {
    border: 1px solid #d8d8d8;
    padding: 10px;
    line-height: 24px;
}

table th {
    font-weight: bold;
}
.wrap{
    width: 1200px;
    margin: 0 auto;
}

.mr5{
    margin-right: 5px;
}
.ml5{
    margin-left: 5px;
}
.mt5{
    margin-top: 5px
}
.mb5{
    margin-bottom: 5px;
}
.mr10{
    margin-right: 10px;
}
.ml10{
    margin-left: 10px;
}
.mt10{
    margin-top: 10px
}
.mb10{
    margin-bottom: 10px;
}
.mr20{
    margin-right: 20px;
}
.ml20{
    margin-left: 20px;
}
.mt20{
    margin-top: 20px
}
.mb20{
    margin-bottom: 20px;
}
.mr30{
    margin-right: 30px;
}
.ml30{
    margin-left: 30px;
}
.mt30{
    margin-top: 30px
}
.mb30{
    margin-bottom: 30px;
}
.wh{
    width: 100%;
}
.pr{
    position: relative
}
.tc{
    text-align: center;
}
.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
}
.red{
    color: #D00000
}
.ht{
    height: 100%;
}

/* flex布局 */
.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;
}

/*
 * 表单公用样式
 *
 */
.textbox {
    padding-left: 11px;
    padding-right: 11px;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 2px;
}
.textbox input {
    display: block;
    width: 100%;
    height: 30px;
    border: 0;
    line-height: normal;
    font-size: 100%;
}

::-webkit-input-placeholder {
    color: #aaa;
}

::-moz-placeholder {
    color: #999;
}

.textarea {
    padding: 8px 11px 6px;
    min-height: 1.5em;
    overflow: auto;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 2px;
}

.textarea textarea {
    border: 0;
    background: none;
    width: 100%;
    min-height: 80px;
    font-size: 13px;
    line-height: 1.5;
}

/* div可输入 */
.editable {
    min-height: 1.5em;
    padding: 8px 10px 9px;
    border: 1px solid #e4e4e4;
    text-align: left;
    border-radius: 2px;
    background: #fff;
}

.editable:focus {
    border-color: #82cddb;
    outline: none;
    text-align: left;
}

/* 按钮 */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #333;
    border: 0;
    border-radius: 2px;
    cursor: pointer;
    color: #fff;
    font-size: 12px;
    line-height: 1.0;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    background: #d00000;
}

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

.btn.color {
    background: #8ecfdb;
    color: #fff;
}
.btn.color:hover {
    background: #333;
}



/* 搜索 */
.search {
    float: right;
    position: relative;
    width: 250px;
    margin: 12px 25px 0 0;
    background: #8ecfdb;
}

.search .textbox {
    border: 0;
}

.search .textbox input {
    height: 31px;
    color: #333;
    line-height: 31px;
}

.search button {
    position: absolute;
    top: 1px;
    right: 1px;
    display: block;
    width: 30px;
    height: 29px;
    border: 0;
    border-radius: 0 2px 2px 0;
    background: none;
    font-size: 14px;
    color: #8FDBC1;
    cursor: pointer;
    text-align: center;
    line-height: 30px;
}

.search button:hover {
    background: #f6f6f6;
}



/* 顶部导航 */
#top {
    position: relative;
    z-index: 1001;
    height: 35px;
    line-height: 25px;
    background: #111;
    color: #ccc;
}

#top .nav {
    background: #c00;
}

#top .nav-a {
    border-right: 1px solid #c00;
}

#top .nav-a:hover, #top .nav-hover {
    background-color: #333;
    border-color: #333;
    z-index: 3;
}

#top .nav {
    margin-top: 10px;
    border-radius: 3px;
    box-shadow: 0 1px 3px #999;
    background-image: -webkit-linear-gradient(top, #c00, #b00);
    background: -moz-linear-gradient(top, #c00, #b00);
}

#top .top {
    width: auto;
    padding: 5px 10px;
    min-width: 1200px;
}

#top .dropdown-menu {
    border: 1px solid #333;
    border-top-width: 2px;
}
.top a {
    color: #fff;
}

.top-nav {
    float: left;
}

.top-nav .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";
}

.top-nav .hot:before {
    position: absolute;
    left: -4px;
    top: 3px;
    content: "";
    width: 0;
    height: 0;
    line-height: 1;
    background-color: #d00000;
    border-style: solid;
    border-width: 4px 4px 4px 0;
    border-color: #111 #d00000 #111 #111;
}

.top-nav-list li {
    float: left;
    padding-left: 16px;
    padding-right: 8px;
    background-position: -149px -301px;
    margin: 0 0 0 0;
    position: relative;
}

.login-info {
    float: right;
    height: 22px;
    padding-top: 2px;
    line-height: 22px;
    padding-right: 17px;
}

.notice {
    float: right;
    padding-left: 24px;
    margin-right: 20px;
    color: #fff;
    background: url(../images/dnotice.png) no-repeat;
    position: relative;
    height: 24px;
}

.notice span {
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    background: #d00000;
    border-radius: 50%;
    left: 18px;
    top: -1px;
    padding: 0px;
}

.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;
}

.drop-icon {
    *float: left;
    *margin-top: 4px;
    padding-right: 16px;
    background: url(../images/arrow.png) no-repeat 5px 1px;
}
.top-dropdown:hover .top-dropdown-menu{
    top: 22px;
}
.top-dropdown:hover .drop-icon {
    background-position: 5px -43px;
}

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

.top-dropdown-menu a {
    font-size: 14px;
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 20px;
    color: #ccc;
    white-space: nowrap;
}

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


/*发烧友首页-网站导航*/
#website_nav {
    display: none;
    position: absolute;
    top: 25px;
    left: 0;
    width: 1000px;
    z-index: 999;
    background: #fff;
    border: 1px solid #999;
    border-top: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

#website_ind_wrap:hover {
    background-color: #fff;
}

#website_ind_wrap:hover .wraplist_title {
    color: #666;
    text-decoration: none;
    cursor: default;
}

#website_ind_wrap .down-arrow {
    display: block;
}

#website_ind_wrap .up-arrow {
    display: none;
}

#website_ind_wrap:hover .down-arrow {
    display: none;
}

#website_ind_wrap:hover #website_nav {
    display: block;
}

#website_ind_wrap:hover .up-arrow {
    display: block;
}

#website_ind_wrap .d-corner {
    font: 8px/25px arial;
    color: #999;
    font-style: normal;
    float: right;
    margin-left: 2px;
    margin-top: 0px;
}

.top-nav .sub_dis_wrap {
    height: 180px;
    border-right: 1px solid #d9d9d9;
    text-align: left;
    margin: 10px 0;
    padding: 0 38px 10px;
    z-index: 1000;
    float: left;
}

.top-nav .sub_dis_wrap .disTitle a {
    font-size: 14px;
    font-family: "Microsoft YaHei", "微软雅黑";
    font-weight: bold;
    color: #444444;
    height: 40px;
    line-height: 40px;
}

.top-nav .sub_dis_wrap .disTitle a:hover {
    text-decoration: none;
    color: #d22222;
}

.top-nav .sub_dis_wrap .disList {
    list-style: none;
    display: block;
    margin-right: 50px;
    float: left;
}

.top-nav .sub_dis_wrap .disList li {
    float: none;
    padding-left: 0;
    background: none;
    margin: 0 0 10px;
    padding-right: 0;
}

.top-nav .sub_dis_wrap .disList li a {
    font-size: 12px;
    color: #666666;
    font-family: "Microsoft YaHei", "微软雅黑";
}

.top-nav .sub_dis_wrap .disList li a:hover {
    color: #d22222;
    text-decoration: none;
    background: none;
}
.pd8{
    padding: 0 8px;
}



/*站内搜索*/
#bdcs-search-form {
    width: 326px;
}
#bdcs-search-form-input-label{
    display: none;
}

#bdcs-search-form-input {
    width: 267px !important;
    height: 18px !important;
    line-height: normal;
    padding: 4px 5px 3px 8px;
    border: none;
}
#top .bdcs-container .bdcs-search{
    height: 27px;
    width: 320px!important;
}
#bdcs-hot{
  display: none!important;
}
#bdcs-search-form-submit {
    width: 34px !important;
    height: 27px !important;
    background-color: transparent;
    background-position: 4px -2px;
    background-image: url(../images/search_2020.png);
    border: 0;
    cursor: pointer;
    overflow: hidden;
    text-indent: -9999em;
    _margin: 0 0 0 3px;
    *display: inline;
    *zoom: 1;
    *margin-top: 0;
}
#bdcs-search-sug-list li{
    padding-left: 25px;
}
.search-ipt-area{
    display: none;
}
#searchBtn{
    display: none;
}
#btnLogin {
    margin-left: 8px;
}
.bdcs-container .bdcs-search {
    height: 27px;
}
.bdcs-container .bdcs-search-form-input{
    margin-right:0
}
#bdcs {
    position: absolute;
    background: #fff;
    right: 168px;
    display: none;
    top: 3px;
    border-radius: 3px;
    border: 1px solid #e4e4e4;
}


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

/* 分页 */
.pageNav {
    margin: 30px auto;
    text-align: center;
    width: 100%;
}
.pageNav .current {
    text-align: center;
    border: 1px solid #ddd;
    margin: 0 3px;
    padding: 8px;
    display: inline-block;
    min-width: 20px;
    vertical-align: middle;
    background: #d00000;
    color: #fff;
}
.pageNav a {
    text-align: center;
    border: 1px solid #ddd;
    margin: 0 3px;
    padding: 8px;
    display: inline-block;
    min-width: 16px;
    vertical-align: middle;
    background: #fff;
}
.pageNav .prev, .pageNav .next {
    width: 60px;
    font-size: 14px;
}


.left_content i,.left_content cite,.left_content em,.left_content address,.left_content dfn{
   font-style:normal;
}

.company_info i,.company_info cite,.company_info em,.company_info address,.company_info dfn{
   font-style:normal;
}
.art_box a ,.right_content a,.login-info a,.member_item a,.ar_tit a,.company_info a,.site_footer a,.header a,.top a,.left_content a{
    text-decoration:none;
}
#top2 .top{
    background: #fff;
}
#top2 .top>div{
    display: flex;
    align-items: center;
    width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}
#top2 .top .top-dropdown-toggle strong{
    color: black;
}
#top2 .top  .u-info img{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    vertical-align: middle;
}
#top2 .top-dropdown a,#top2 .top-dropdown .drop-icon{
    vertical-align: middle; 
}
#top2 .top-dropdown:hover .top-dropdown-menu{
    top: 30px;
    right: -20px;
}
/* top3 */
#top3 .top{
    justify-items: center;
    justify-content: space-between;
    background: #fff;
    width: 100%;
}

#top3 .top>div{
    width: 1200px;
    margin: 0 auto;
    padding: 19px  0;
    clear: both;
}
#top3 .top>div:after{
    content:'';
    display: block;
    clear: both;
}
#top3 .top>div .adHead{
    float: left;
    display: flex;
    align-items: center;
    padding: 0px;
}
#top3 .top>div .adHead .elecfans_logo{
    width:115px ;
    height: 41px;
    vertical-align: middle;
}
#top3 .top>div .adHead .qiyehao_logo{
    width:84px ;
    height: 40px;
    vertical-align: middle;
}
#top3 .top>div .adHead .line{
    width: 1px;
    height: 33px;
    background:#302623 ;
    margin: 0 15px;
}
#top3 .u-info .username{
    display: inline-block;
    color: #333333;
    font-size: 12px;
    font-weight: 400;
    max-width: 60px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#top3 .u-info img{
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
#top3 .u-info .dropDown{
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    width: 8px;
    height: 4px;
    background: url(../images/dropDown.png) left top no-repeat;
    background-size: 100%;
}
#top3 .u-info .flex2{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
#top3 .userInfo:hover{
 box-shadow: 0px 0px 10px 10px rgba(0,0,0,0.05); 
 border: 1px solid #e6e6e6;
 border-radius: 4px;
}
#top3 .userInfo:hover ul{
    height:204px;
    transition: all 0.6s;
    padding: 0 0 10px 20px;
}
#top3  .userInfo:hover .username{
    color: #d00000;
}
#top3  .userInfo:hover .dropDown{
    background: url(../images/dropDowns.png) left top no-repeat;
    background-size: 100%;
}
#top3 .userInfo{
   position: relative;
   z-index: 100;
    border-radius: 4px;
}
#top3 .userInfo ul{
    height:0px;
    padding-left: 20px;
    overflow: hidden;
    background: #fff;
}   
#top3 .userInfo ul li:hover a{
    color: #d00000;
}
#top3 .userInfo ul a{
    color: #999999;
    font-size: 14px;
    font-weight: 400;
    line-height: 34px;
}
.footer2 {
    min-width: 1200px;
    width: 100%;
    background: #333;
    color: #ccc;
    padding: 46px 0 4px;
    text-align: left;
    line-height: 1;
  }
  .footer2 .footer_content {
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 15px;
    border-bottom: 1px solid #4a4a4a;
    align-items: flex-start!important;
  }
  .footer2 .footer_content .footer_content_left {
    align-items: flex-start;
  }
  .footer2 .footer_content .footer_content_left .mr80 {
    margin-right: 78px;
  }
  .footer2 .footer_content .footer_content_left dt {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    color: #fff;
    margin-left: 0;
  }
  .footer2 .footer_content .footer_content_left dd {
    margin-left: 0;
    margin-top: 16px;
    text-align: left;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
  }
  .footer2 .footer_content .footer_content_left dd:first-child {
    margin-top: 20px;
  }
  .footer2 .footer_content .footer_content_left dd a {
    color: #fff;
    font-size: 14px;
    line-height: 1;
  }
  .footer2 .footer_content .footer_content_right {
    font-size: 14px;
    color: #fff;
    line-height: 1;
    text-align: center;
    align-items: flex-start;
  }
  .footer2 .footer_content .footer_content_right li {
    margin-left: 0;
  }
  .footer2 .footer_content .footer_content_right li:first-child {
    margin-right: 46px;
  }
  .footer2 .footer_content .footer_content_right li p {
    font-size: 14px;
    text-align: center;
    color: #fff;
    line-height: 18px;
  }
  .footer2 .footer_content .footer_content_right li p.onLine{
    font-size: 11px;
    white-space: nowrap;
  }
  .footer2 .footer_content .footer_content_right img {
    display: block;
    width: 140px;
    margin:0 auto  8px;
  }
  .footer2 .copyright {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    color: #fff;
    padding: 26px 0;
  }
  .footer2 .copyright img {
    height: 14px;
    vertical-align: -2px;
    margin: 0 3px 0 8px;
  }
  .footer2 .copyright a {
    color: #fff;
    line-height: 20px;
  }
  .footer2 .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer2 .footLogo {
    margin-top: 0 !important;
  }
  .footer2 .footLogo img {
    display: block;
    width: 239px;
  }
.flex2{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.verLine{
    width: 1px;
    height: 33px;
    background: #302623;
    margin: 0px 15px;
}
.tabMenu{
    margin-left: 50px ;
}
.tabMenu li{
    margin-right: 70px;
}
.tabMenu li:last-child{
    margin-right: 0px;
}
.tabMenu li a{
    display: inline-block;
    color:#333333 ;
    font-size:16px ;
    line-height: 24px;
    font-weight: 400;
    text-decoration: none;
}
.tabMenu li.active  a{
    color: #D00000;
    font-weight: 700;
    border-bottom: 4px solid #D00000;
}
.close{
    display: none;
    background:  url("../images/close.png") left top no-repeat;
    background-size:100%;
}
.close:hover{
    background:  url("../images/closeActive.png") left top no-repeat;
    background-size:100%
}
.doScroll{
    display: flex;
    width: 100%;
     overflow-y: visible;
}


.animateFade{
    filter:alpha(opacity=100); /* IE */  
    -moz-opacity:1; /* 老版Mozilla */  
    opacity:1; /* 支持opacity的浏览器*/  
    transition: all 0.6s;
}
.searchICOn{
    height: 30px;
    padding-top: 18px;
    box-sizing: border-box;
}
.page403,.page404{
    position: relative;
}
.page403 img,.page404 img{
    width: 100%;
    vertical-align: middle;
}
.page403 .tips,.page404 .tips{
    position: absolute;
    left: 46.56%;
    top:54.29% ;
    font-size: 24px;
    color: #333333;
    font-weight: 400;
}
.page403 .tips div{
   margin-bottom: 20px; 
}
.page403 .tips a{
    display: inline-block;
    width: 120px;
    height: 40px;
    background: #D00000;
    border-radius: 4px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    color:#fff ;
}
.page404 .tips a{
    text-decoration: none;
    font-size: 18px;
    margin-left: 6px;
    color: #75B1DF;
    font-weight: 400;
}
.ar_tit {
    margin: 0 0 10px 0;
}
.ar_tit::after{
  content:'';
  display: block;
  clear: both;
}
.ar_tit a{
    word-break: break-all;
}
.ar_tit>span{
    margin-top: 3px;
}


/*new header*/
.header2 i,.header2 em,.header2 a{
    font-style: normal;
    text-decoration: none;
    color: inherit;
}
.header2 {
    width: 100%;
    min-width: max-content;
    background: #fff;
    height: auto;
    padding: 16px calc(50vw - 600px);
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    color: #333;
  }
  .header_left {
    display: flex;
    align-items: center;
  }
  .header_left > a {
    display: inline-flex;
    align-items: center;
  }
  .header_left > a + a {
    margin-left: 16px;
    position: relative;
    padding-left: 16px;
  }
  .header_left > a + a::before {
    content: "";
    width: 1px;
    height: calc(100% - 4px);
    top: 2px;
    left: 0;
    background: #999;
    position: absolute;
  }
  .header_left .qiye_ind {
    margin-left: 24px;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #333;
    height: 100%;
    transition: all linear 0.2s;
  }
  .header_left .qiye_ind:hover {
    color: #d00000;
  }
  .elecfans_logo,
  .qiye_logo {
    width: auto;
    height: 32px;
  }
  .header_right {
    display: flex;
    align-items: center;
  }
  .searchWrap {
    background-color: #f5f5f5f5;
    border-radius: 4px;
    font-size: 0;
    display: flex;
    align-items: center;
    margin-right: 24px;
    border: 1px solid rgba(0, 0, 0, 0);
  }
  .searchWrap.is-active{
    border: 1px solid #d00000;
    background: #FFF;
  }
  .searchWrap .typeSel {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 32px 8px 16px;
    cursor: pointer;
  }
  .searchWrap .typeSel div span {
    position: absolute;
    right: 8px;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translate(0, -50%);
    transition: all linear 0.2s;
  }
  .searchWrap .typeSel>div{
      transition: all linear 0.2s;
  }
  .searchWrap .typeSel div span::before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    opacity: 1;
    background:url(../images/svg/arrow_down.svg) no-repeat center;
    background-size: contain;
    transition: all linear 0.2s;
  }
  .searchWrap .typeSel div span::after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    opacity: 0;
    background:url(../images/svg/arrow_down_red.svg) no-repeat center;
    background-size: contain;
    transition: all linear 0.2s;
  }
  .searchWrap .typeSel .typeSelContent {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 100%;
    height: 0px;
    transition: all linear 0.2s;
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    z-index: 70;
    box-shadow: 0 8px 8px rgba(0,0,0,0.08);
    width: 100%;
  }
  .searchWrap .typeSel .typeSelContent li {
    width: 100%;
    font-size: 14px;
    line-height: 40px;
    background: #FFF;
    color: #333;
    transition: all linear 0.2s;
    cursor: pointer;
  }
  .searchWrap .typeSel .typeSelContent li:hover {
    background: #fff6f6;
    color: #d00000;
  }.searchWrap .typeSel .typeSelContent li.is-active{
    background: #d00000;
    color: #FFF;
  }
  .searchWrap .typeSel:hover .typeSelContent {
    height: 240px;
    opacity: 1;
  }
  .searchWrap .typeSel:hover div span {
    transform: translate(0, -50%) rotate(180deg);
  }
  .searchWrap .typeSel:hover div span::after {
    opacity: 1;
  }
  .searchWrap .typeSel:hover div span::before{
      opacity: 0;
  }
  .searchWrap .typeSel:hover>div{
      color: #d00000;
  }
  .searchWrap .searchTxt {
    border: none;
    line-height: 20px;
    box-sizing: border-box;
    padding: 8px 0;
    width: 100px;
    color: #333;
    background-color: rgba(0,0,0,0);
  }
  .searchWrap .search2 {
    margin: 8px 14px;
    display: inline-flex;
    align-items: center;
    width: 18px;
    height: 18px;
    position: relative;
    
  }
  .searchWrap .search2::before{
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background:url(../images/svg/search.svg) no-repeat center;
    background-size: contain;
    transition: all linear 0.2s;
  }
  .searchWrap .search2::after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background:url(../images/svg/search_red.svg) no-repeat center;
    background-size: contain;
    opacity: 0;
    transition: all linear 0.2s;
  }
  .searchWrap .search2:hover::before{
    opacity: 0;
  }
  .searchWrap .search2:hover::after{
    opacity: 1;
  }
  .noLogin button {
    line-height: 32px;
    padding: 0 14px;
    font-size: 14px;
    transition: all linear 0.2s;
    border: none;
    outline: none;
  }
  .noLogin .applyJoin {
    color: #fff;
    background-color: #d00000;
    border-radius: 4px;
    cursor: pointer;
    transition: all linear 0.2s;
  }
  .noLogin .applyJoin:hover {
    background-color: #bc1e1e;
  }
  .noLogin .toLogin {
    color: #333;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    transition: all linear 0.2s;
  }
  .noLogin .toLogin:hover {
    color: #d00000;
  }
  .logined {
    display: inline-grid;
    grid-template-columns: auto auto;
    gap: 24px;
  }
  .noLogin + .logined{
      margin-left: 16px;
  }
  .logined .consoleDesk {
    position: relative;
    display: flex;
    align-items: center;
  }
  .logined .consoleDesk .menuDown {
    position: absolute;
    right: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translate(0, -50%);
    transition: all linear 0.2s;
  }
  .logined .consoleDesk .menuDown::before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    opacity: 1;
    background:url(../images/svg/arrow_down.svg) no-repeat center;
    background-size: contain;
    transition: all linear 0.2s;
  }
  .logined .consoleDesk .menuDown::after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    opacity: 0;
    background:url(../images/svg/arrow_down_red.svg) no-repeat center;
    background-size: contain;
    transition: all linear 0.2s;
  }
  .logined .consoleDesk ul {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 100%;
    height: 0px;
    transition: all linear 0.2s;
    display: flex;
    flex-direction: column;
    text-align: left;
    overflow: hidden;
    opacity: 0;
    z-index: 70;
    box-shadow: 0 8px 8px rgba(0,0,0,0.08);
    width: 100%;
    min-width: 120px;
  }
  .logined .consoleDesk ul li {
    width: 100%;
    font-size: 14px;
    line-height: 40px;
    background: #FFF;
    color: #333;
    transition: all linear 0.2s;
    cursor: pointer;
    box-sizing: border-box;
    padding: 0 25px;
  }
  .logined .consoleDesk ul li a {
    text-decoration: none;
    color: inherit;
  }
  .logined .consoleDesk ul li:hover {
    background: #fff6f6;
    color: #d00000;
  }
  .logined .consoleDesk ul li:active {
    background: #d00000;
    color: #FFF;
  }
  .logined .consoleDesk ul li.userName {
    font-size: 16px;
    font-weight: bold;
    box-sizing: border-box;
  }
  .logined .consoleDesk ul li.userName:hover {
    background: #FFF;
    color: #333;
  }
  .logined .consoleDesk ul li.userName>span{
      display: block;
      max-width: 100%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }
  .logined .consoleDesk:hover ul {
    height: 320px;
    opacity: 1;
  }
  .logined .consoleDesk2:hover ul {
    height: 120px;
  }
  .logined .consoleDesk:hover .menuBtn{
      color: #d00000;
  }
  .logined .consoleDesk:hover .menuDown {
    transform: translate(0, -50%) rotate(180deg);
  }
  .logined .consoleDesk:hover .menuDown::after {
    opacity: 1;
  }
  .logined .consoleDesk:hover .menuDown::before {
    opacity: 0;
  }
  .logined .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }
  .logined .consoleDesk2{
      padding-right: 16px;
      position: relative;
  }
  .logined .consoleDesk2 .menuBtn{
      transition: all linear 0.2s;
      font-size: 16px;
  }
  @media screen and (min-width: 1930px) {
    /* .header2 {
      padding: 18px calc(50vw - (60/96*50vw))
    } */
  }
/*new header*/