@charset "UTF-8";
.jw-icon-barlogo-new{
    display: none!important;
}
.hidden{
    display: none;
}
/* 控制文字在两行之内，多余部分显示... */
.twoLine {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /*! autoprefixer: off */
    -webkit-box-orient: vertical;
}
/* 控制文字在三行之内，多余部分显示... */
.threeLine {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /*! autoprefixer: off */
    -webkit-box-orient: vertical;
}
/* 控制文字在一行之内，多余部分显示... */
.oneLine {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* 公共头部start */
header{
    background: #fff;
}
header .top_bg{
   height: 350px;
   background: url(../images/headerBg.jpg) no-repeat;
   background-size: 100% 100%;
}
header .support_div{
    width: 1000px;
    height: 50px;
    margin: 0 auto;
    /* background: pink; */
    position: relative;
}
header .support_div .support_left{
    /* background: green; */
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}
header .support_div .support_left .support_link li{
    float: left;
    width: 35px;
    height: 35px;
    margin-right: 8px;
}
header .support_div .support_left .support_link li:last-child{
    margin-right: 0px;
}
header .support_div .support_left .support_link .phone{
    background: url(../images/header_phone.png) no-repeat;
}
header .support_div .support_left .support_link .phone:hover{
    background: url(../images/header_phone_hover.png) no-repeat;
}
header .support_div .support_left .support_link .wechat{
    background: url(../images/header_wechat.png) no-repeat;
}
header .support_div .support_left .support_link .wechat:hover{
    background: url(../images/header_wechat_hover.png) no-repeat;
}
header .support_div .support_left .support_link .weblog{
    background: url(../images/header_weblog.png) no-repeat;
}
header .support_div .support_left .support_link .weblog:hover{
    background: url(../images/header_weblog_hover.png) no-repeat;
}
/* 搜索start */
header .support_div .search {
    width: 272px;
    height: 50px;
    float: right;
    position: relative;
}
header .support_div .search form {
    height: 32px;
    width: 246px;
    padding: 0 13px;
    background: #fff;
    border-radius:16px;
    border:1px solid #eee;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
header .support_div .search form .search_input {
    float: left;
    display: block;
    line-height: 32px;
    width: 228px;
    font-size: 12px;
    color: #000
}
header .support_div .search form .search_btn {
    float: right;
    display: block;
    background: url("../images/header_search_btn.png") no-repeat left center;
    cursor: pointer;
    width: 18px;
    height: 18px;
    margin-top: 7px;
}
::-webkit-input-placeholder { /* WebKit browsers */
	color: #c5c5c5;
	font-size: 12x;
}
 
::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: #c5c5c5;
	font-size: 12px;
}
 
:-ms-input-placeholder { /* Internet Explorer 10+ */
	color: #c5c5c5;
	font-size: 12px;
}
/* 搜索end */

/* 导航start */
header .support_second_div{
    height:60px;
    /*background:linear-gradient(225deg,rgba(249,140,89,1) 0%,rgba(241,45,46,1) 100%);*/
    background:red;
}
header .support_second_div .header_nav_div{
    width: 1000px;
    height: 60px;
    margin: 0 auto;
    /* background: #bbffaa; */
    position: relative;
}
/* logo start */
header .support_second_div .header_nav_div .logo_div{
    width: 271px;
    height: 73px;
    line-height: 73px;
    position: absolute;
    background: url(../images/header_logo_bg.png) no-repeat;
    left: 0px;
    top: -5px;
    font-size:24px;
    font-weight:bold;
    color:#fff;
    padding-left: 21px;
}
header .support_second_div .header_nav_div .logo_div a{
	color:#fff;
}
header .support_second_div .header_nav_div .logo_div_last{
    width: 96px;
    height: 32px;
    background: url(../images/header_logo_bg_last.png) no-repeat;
    position: absolute;
    left: 355px;
    top: -19px;
}
/* logo end */
/* 导航栏start */
header .support_second_div .header_nav_div .nav_div{
    position: absolute;
    top: 0px;
    right: -26px;
}
header .support_second_div .header_nav_div .nav_div .nav_ul .nav_li{
    float: left;
    height: 60px;
    line-height: 60px;
    padding:0px 26px;
    font-size:16px;
    position: relative;
  	cursor: pointer;
  	font-weight:300;
}
header .support_second_div .header_nav_div .nav_div .nav_ul .nav_li a{
    color:rgba(255,255,255,0.65);
}
header .support_second_div .header_nav_div .nav_div .nav_ul .nav_li .nav_img_hover {
    position: absolute;
    width: 11px;
    height: 5px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/header_nav_hover.png) no-repeat;
    display: none;
}

header .support_second_div .header_nav_div .nav_div .nav_ul .nav_li.active,
header .support_second_div .header_nav_div .nav_div .nav_ul .nav_li:hover{
    font-size:16px;
  	font-weight:400;
}
header .support_second_div .header_nav_div .nav_div .nav_ul .nav_li.active a,
header .support_second_div .header_nav_div .nav_div .nav_ul .nav_li:hover a{
    color:rgba(255,255,255,1);
}
header .support_second_div .header_nav_div .nav_div .nav_ul .nav_li.active .nav_img_hover,
header .support_second_div .header_nav_div .nav_div .nav_ul .nav_li:hover .nav_img_hover{
    display: block;
}
/* 导航栏end */
/* 导航 end */
/* 公共头部end */

/* 公共底部start */
footer{
    height: 265px;
    background: #211E1E;
}
footer .footer_first{
    width: 1000px;
    margin: 0 auto;
    height: 104px;
    border-bottom: 1px solid rgba(255,255,255,0.11);
}
footer .footer_first .title{
    height:104px;
    font-size:24px;
    font-weight:bold;
    color:#fff;
    line-height:104px;
    float: left;
}
footer .footer_first .title a{
	color:#fff;
}
footer .footer_first .footer_link{
    float:right;
    height: 108px;
    line-height: 108px;
}
footer .footer_first .footer_link .footer_link_ul li{
    margin-right: 20px;
    float: left;
}
footer .footer_first .footer_link .footer_link_ul li:last-child{
    margin-right: 0px;
}
footer .footer_first .footer_link .footer_link_ul li a{
    color: #fff;
    font-size:14px;
    font-weight:400;
    color:rgba(255,255,255,0.55);
}

footer .footer_second{
    width: 1000px;
    margin:28px auto 0px;
}
footer .footer_second_left{
    float: left;
}
footer .footer_second_right{
    float: right;
}
footer .footer_second_left p,
footer .footer_second_right p{
    margin-bottom: 8px;
    color: #666666;
}

footer .footer_second_right p a{
    color: #666666;
}
footer .footer_second_right p{
    text-align: right;
}
#_ideConac img{
    width: 35px;
    height: 35px;
    display: inline-block;
    vertical-align: middle;

}




/* 公共底部end */
/* 获取更多 */
.get_more{
    text-align: center;
    margin-top: 46px;
}
.get_more .clickGetMore{
    font-size:14px;
    color:#999;
    cursor: pointer;
}
/* 公共栏目样式start */
.column_title{
    height: 49px;
    background: url(../images/column_title_bg.png) no-repeat;
    padding-left: 15px;
    border-bottom: 2px solid rgba(244,72,64,0.08);
    position: relative;
}
.common_news .column_title{
    background: url(../images/column_title_bg2.png) no-repeat;
}
.column_title .column{
    height:49px;
    line-height:49px;
    font-size:24px;
    font-weight:500;
    color:#222;
}
.column_title .more{
    background: url(../images/more_right.png) no-repeat right center;
    background-size: 6px 10px;
    padding-right: 11px;
    font-size:14px;
    color:#999;
    font-weight: 400;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.column_title .more:hover{
	color:#8F1712;
}

/* 公共栏目样式end */
/* 公共面包屑start */
.crumbsNav {
    height: 48px;
}
.crumbsNav li {
    float: left;
    color: #999;
    font-size: 14px;
}
.crumbsNav .split {
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url(../images/crumbsNav_split.png) no-repeat center center;
    margin: 0 5px;
}
.crumbsNav li:last-child .split {
    display: none;
}
.crumbsNav a {
    color: #999;
}

/* 公共面包屑end */


/* 公共右侧start */
.right_sidebar{
    width: 299px;
    /* height: 400px;
    background: pink; */
    float: right;
}
.right_sidebar .week{
    font-size:24px;
    font-weight:500;
    color:#222;
}
.right_sidebar .ranking {
    margin-top: 30px;
}

.right_sidebar .ranking li {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

.right_sidebar .ranking li span {
    height: 46px;
    line-height: 46px;
    color: #D4D4D4;
    font-size: 40px;
    font-weight: normal;
    width: 23px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    margin-right: 16px;
    font-style: italic;
}

.right_sidebar .ranking li:first-child span {
    color: #FF458A;
}

.right_sidebar .ranking li:nth-child(2) span {
  
    color: #FF7345;
}

.right_sidebar .ranking li:nth-child(3) span {
   
    color: #FFC145;
}

.right_sidebar .ranking li a {
    width: 255px;
    height: 46px;
    font-size:16px;
    display: inline-block;
    color: #222;
    vertical-align: middle;
    line-height:26px;
}
.right_sidebar .hot_news{
    margin-top:58px; 
}
.right_sidebar .news .column{
    font-size:24px;
    font-weight:500;
    color:#222;
}
.right_sidebar .news{
    position: relative;
}
.right_sidebar .news .more{
    background: url(../images/more_right.png) no-repeat right center;
    background-size: 6px 10px;
    padding-right: 11px;
    font-size:14px;
    color:#999;
    font-weight: 400;
    position: absolute;
    right: 0px;
    bottom: 0px;
}


.right_sidebar .hot_news_hasPic_ul{
    margin-top:30px;
}
.right_sidebar .hot_news_hasPic_ul li{
    width: 299px;
    height: 116px;
    border-bottom: 1px solid #eee;
    margin-top: 18px;
}
.right_sidebar .hot_news_hasPic_ul li:first-child{
    margin-top: 0px;
}
.right_sidebar .hot_news_hasPic_ul li:last-child{
    border: none;
}
.right_sidebar .hot_news_hasPic_ul li img{
    width:150px;
    height: 98px; 
    float: left;
}
.right_sidebar .hot_news_hasPic_ul li .info{
    width:136px;
    height: 98px; 
    float: right;
}
.right_sidebar .hot_news_hasPic_ul li .info a{
    font-size:18px;
    color:#222;
    line-height:26px;
}
.right_sidebar .hot_news_hasPic_ul li .info .time{
    font-size:14px;
    color:#999;
    margin-top: 30px;
}
.right_sidebar .hot_news_noPic_ul li{
    width:299px;
    font-size:16px;
    color:#222;
    margin-bottom: 15px;
}
.right_sidebar .hot_news_noPic_ul li a{
    color:#222;
}

/* 公共右侧end */


/* 分享start */
.share {
    display: inline-block;
    width: 198px;
    height: 25px;
    line-height: 25px;
    position: absolute;
    right: 0px;
    color: #999;
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.share .shareto {
    display: inline-block;
}

.share .share_icon {
    display: inline-block;
    position: absolute;
    bottom: 0px;
}

.share .bdshare-button-style1-24 a {
    display: inline-block;
    height: 25px;
    padding-left: 26px;
    margin: 0px 0px 0px 12px;
}

.share .bdshare-button-style1-24 .bds_tsina {
    background: transparent url(../images/share_sina.png) no-repeat;
}

.share .bdshare-button-style1-24 .bds_weixin {
    background: transparent url(../images/share_wechat.png) no-repeat;
}

.share .bdshare-button-style1-24 .bds_sqq {
    background: transparent url(../images/share_qq.png) no-repeat;
}

.share .bdshare-button-style1-24 .bds_qzone {
    background: transparent url(../images/share_qzone.png) no-repeat;
    margin-top: -1px;
    margin-left: 7px;
}
.share .bdshare-button-style1-24 .bds_tsina:hover {
    background: transparent url(../images/share_sina_hover.png) no-repeat;
}

.share .bdshare-button-style1-24 .bds_weixin:hover {
    background: transparent url(../images/share_wechat_hover.png) no-repeat;
}

.share .bdshare-button-style1-24 .bds_sqq:hover {
    background: transparent url(../images/share_qq_hover.png) no-repeat;
}

.share .bdshare-button-style1-24 .bds_qzone:hover {
    background: transparent url(../images/share_qzone_hover.png) no-repeat;
}

/* 分享end */