/*通用样式*/
html, body{
    height: 100%;
    background-color: rgb(242, 245, 247);
}
body{
	font:14px/1.5 "Microsoft YaHei","HanHei SC","Helvetica Neue","Open Sans",Arial,"Hiragino Sans GB","微软雅黑","STHeiti","WenQuanYi Micro Hei",SimSun,sans-serif;
	color:#333;
	padding-top: 90px;
}
.animate{
	transition-property:all;
	transition-duration:.4s;
}
ul, li{
	list-style: none;
}
*{
	padding: 0;
	margin: 0;
}
a{
    color: #333;
    transition-property:all;
	transition-duration:.4s;
}
a:hover{
    text-decoration: none;
}
.oneLine{
    display: inline-block;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow:ellipsis;
}
.twoLine{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.threeLine{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.foreLine{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

/*滚动条美化*/
.scrollGood, html{
	scrollbar-face-color:#337ab7; 
	scrollbar-highlight-color:#fff; 
	scrollbar-shadow-color:#eeeeee; 
	scrollbar-3dlight-color:#eeeeee;
	scrollbar-arrow-color:#000; 
	scrollbar-track-color:#fff; 
	scrollbar-darkshadow-color:#fff; 
}

.scrollGood::-webkit-scrollbar, html::-webkit-scrollbar {
    width : 10px;  
    height: 1px;
}
.scrollGood::-webkit-scrollbar-thumbm, html::-webkit-scrollbar-thumb {
    border-radius   : 10px;
    background-color: skyblue;
    background-image: -webkit-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
}
.scrollGood::-webkit-scrollbar-track, html::-webkit-scrollbar-track{
     box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2); 
     border-radius: 10px; 
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
    background-color: #fff;
}
/*滚动条美化结束*/

/*顶部导航*/
.topNavBox{
    height: 70px;
    background-color: rgba(255,255,255, .9);
    border-bottom:1px solid #eee;
    box-shadow: 0px 1px 10px rgb(0 0 0 / 8%);
    z-index: 20;
}
.topNav{
    height: 70px;
    display:flex;
    align-items: center;
}
/*顶部导航 logo*/
.topNav .logoBox{
    width: 200px;
    height: 50px;
    overflow: hidden;
}
.topNav .logoBox img{
    width: 200px;
    height: 50px;
}
.topNav .logoBox .logoText{
    font-size: 18px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: bold;
    letter-spacing: 1px;
}
/*顶部导航 菜单*/
.topNav .navBox{
    display: flex;
    align-items: center;
    flex-grow: 1;
    flex-shrink: 1;
    padding-left: 30px;
    justify-content: space-between;
}
.topNav .navBox .nav>.navbar-item{
    display: inline-block;
    padding: 0 15px;
    height: 70px;
    position: relative;
}  
.topNav .navBox .nav>.navbar-item>a{
    line-height: 70px;
    height: 70px;
    display: inline-block;
}
.topNav .navBox .nav>.navbar-item>a:after {
    position: absolute;
    content: '';
    left: 50%;
    height: 3px;
    bottom: 0;
    width: 0;
    transition: all .4s;
    background: #3297fc;
}
.topNav .navBox .nav>.navbar-item:hover>a:after{
    width:100%;
    left:0;
}

.topNav .navBox .nav .navbar-item:hover ul, .topNav .navBox .nav .navbar-item:hover .subnav{
    display: block;
}
.topNav .navBox .nav ul, .topNav .navBox .nav .subnav{
    display:none;
    position:absolute;
    top:70px;
    left: -20px;
    width: 150px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom:1px solid #ddd;
    background-color:#fff;
    border-bottom-left-radius:6px;
    border-bottom-right-radius:6px;
    box-shadow: 0px 1px 10px rgb(0 0 0 / 8%);
    overflow: hidden;
}
.topNav .navBox .nav ul .navbar-item a, .topNav .navBox .nav .subnav a{
    width: 100%;
    display:block;
    padding: 8px;
}
.topNav .navBox .nav ul .navbar-item a:hover, .topNav .navBox .nav .subnav a:hover{
    color:#fff;
    background-color:#3297fc;
}
/*顶部导航 搜索*/
.topNav .navBox .topSearchBox{
    position: relative;
}
.topNav .navBox .topSearchBox .searchInput{
    outline: none;
    font-size: 12px;
    width: 180px;
    background-color: #fcfcfc;
    height: 31px;
    line-height: 31px;
    padding-top:0;
    padding-bottom:0;
    padding-right: 40px;
    padding-left:10px;
    border: 1px solid #eee;
    border-radius: 20px;
}
.topNav .navBox .topSearchBox .searchIcon{
    position:absolute;
    right: 16px;
    top: 2px;
    border:none;
    background-color: rgba(0,0,0,0);
}

/*首页顶部banner*/
.hometopleftbannerBox{
    padding-right: 0;
}
#homeTopLeftBanner{
    height: 338px;
    overflow: hidden;
}
#homeTopLeftBanner .carousel-indicators{
    margin-bottom: 5px;
}
#homeTopLeftBanner .carousel-caption{  
    padding-bottom: 0;
    bottom: 10px;
    text-align:left;
    left: 0px;
    right: 0px;
    padding: 10px 15px;
    background-color: rgba(0,0,0, .3);
}
#homeTopLeftBanner .carousel-caption a{
    color:#fff;
}
#homeTopLeftBanner .carousel-caption a:hover{
    text-decoration: underline;
}
#homeTopLeftBanner .carousel-caption p{
    margin-bottom: 0;
}
#homeTopLeftBanner .carousel-inner{
    height: 338px;
}
#homeTopLeftBanner .carousel-item{
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

/*首页顶部头条资讯*/
#homeTopTouTiao{
    height: 338px;
    padding-top:15px;
    overflow-y: auto;
}
#homeTopTouTiao h3{
    margin : 0 15px 10px 15px;
    background: linear-gradient(-45deg,#32b6ff,#4276ff);
    font-size: 15px;
    color: #fff;
    width: 110px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 15px;
    font-weight: normal;
    animation-name:dropdown;
    animation-duration: 8s;
    animation-iteration-count:infinite;
}
@keyframes dropdown{
    0%{
        background-position: 0px;
    }
    30%{
        background-position: 220px;
    }
    70%{
        background-position: 220px;
    }
    100%{
        background-position: 0px;
    }
}
#homeTopTouTiao .homeTopTouTiaoItem{
    padding-top:10px;
    padding-left:15px;
    padding-right: 15px;
    height: 94px;
}
#homeTopTouTiao h4{
    margin : 0;
    font-size: 16px;
    font-weight: bold;
}
#homeTopTouTiao .deanmsdiv{
    color:#999;
}
#homeTopTouTiao .homeTopTouTiaoItem:hover{
    box-shadow: 0 0 2rem rgba(0,0,0,.175);
}

/*精选导读*/
#homeHandpicked {
    overflow: hidden;
}
#homeHandpicked hr{
    margin-top:15px;
    margin-bottom:5px;
}
#homeHandpicked h3{
    font-size:15px;
    font-weight: bold;
    color:#3297fc;
}
#homeHandpicked .homeHandpickedItem{
    border-right:1px solid #eee;
    border-bottom:1px solid #eee;
}
#homeHandpicked .homeHandpickedItem:hover{
    box-shadow: 0 0 2rem rgba(0,0,0,.175);
}
#homeHandpicked .homeHandpickedItem:nth-child(3n+0){
    border-right:none;
}
#homeHandpicked .homeHandpickedItem:nth-last-child(1),#homeHandpicked .homeHandpickedItem:nth-last-child(2),#homeHandpicked .homeHandpickedItem:nth-last-child(3){
    border-bottom:none;
}
#homeHandpicked .homeHandpickedItem .cate{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#homeHandpicked .cate{
    font-size: 12px;
    color:#999;
}
#homeHandpicked .cateName{
    padding: 0 12px;
    color:#fff;
    height: 22px;
    line-height: 22px;
    font-size: 13px;
    border-radius: 10px;
    background-color: #3297fc;
}
#homeHandpicked .cateName a{
    color:#fff;
}
#homeHandpicked .deanliorder0 .cateName{
    background-color:#ff8f76;
}
#homeHandpicked .deanliorder1 .cateName{
    background-color:#C093EA;
}
#homeHandpicked .deanliorder2 .cateName{
    background-color:#a5da43;
}
#homeHandpicked .deanliorder3 .cateName{
    background-color:#f39c12;
}
#homeHandpicked .deanliorder4 .cateName{
    background-color:#6fb7ff;
}
#homeHandpicked .deanliorder5 .cateName{
    background-color: #48D1CC;
}
#homeHandpicked .cate svg{
    margin-top: -2px;
}
#homeHandpicked h4{
    font-size: 15px;
    margin-top:10px;
    margin-bottom:5px;
}
#homeHandpicked .deanmsdiv{
    color:#999;
}

/*首页栏目*/
#homeCate .articleList{
    padding: 10px 0 10px 5px;
}
#homeCate .articleItem{
    display:flex;
}
#homeCate .articleItem:last-child{
    border-bottom:none !important;
    padding-bottom:0 !important;
    margin-bottom: 0 !important;
}
#homeCate .articleItem:hover{
    box-shadow: 0 0rem 2rem rgba(0,0,0,.175);
}
#homeCate .articleItem .imgBox{
    width: 220px;
    height: 150px;
    overflow: hidden;
    flex-shrink: 0;
}
#homeCate .articleItem .imgBox img{
    width: 100%;
    min-height: 100%;
}
#homeCate .articleItem .article{
    position:relative;
    overflow: hidden;
}
#homeCate .articleItem .article h4{
    font-size: 16px;
    font-weight: bold;
    margin-bottom:6px;
}
#homeCate .articleItem .article .info{
    position:absolute;
    right: 20px;
    bottom: 5px;
    font-size: 12px;
}
#homeCate .articleItem .article .info span{
    display: inline-block;
}

/*首页底部友情链接*/
.friendship {
    margin-top:15px;
    margin-bottom:5px;
}
.friendship  h3{
    font-size:15px;
    font-weight: bold;
    color:#3297fc;
}
.friendship .friendLink {
    display: flex;
    flex-wrap: wrap;
}
.friendship .friendLink li{
    line-height: 1.5;
    padding: 0 15px;
}

/*页脚*/
.footer a{
    color:#eaeaea;
}
.footer a:hover{
    color:#3297fc;
}
#js-go_top{
	position: fixed;
    right: 20px;
    bottom: 20px;
    cursor:pointer;
}

/*侧边栏*/
.sidebarBox{
    padding-left:0;
}
.sidebarBox h4{
    font-size: 15px;
    letter-spacing: 1px;
    color:#3297fc;
    margin-bottom: 10px;
}
.sidebarBox hr{
    margin-top: 10px;
}

/*侧边栏  精选推荐*/
#sideHandpicked li{
    display: flex;
}
#sideHandpicked li .cate{
    width: 35%;
    flex-shrink: 0;
}
#sideHandpicked li .title{
    flex-grow: 1;
    flex-shrink: 1;
}
/*侧边栏  最热图文*/
#sideHotPic .carousel-item{
    height: 200px;
}
#sideHotPic .carousel-item img{
    min-width: 100%;
    min-height: 100%;
}
#sideHotPic .carousel-item .carousel-caption{
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    background-color:rgba(0,0,0,.3);
}
#sideHotPic .carousel-item .carousel-caption h5{
    color:#fff;
    font-size: 14px;
    margin-bottom: 10px;
    margin-top:10px;
}
/*侧边栏  最新评论*/
#sideComment .commentItem{
    display:flex;
}
#sideComment .commentItem .commentAuthor{
    width: 30%;
    flex-shrink: 0;
    text-align: center;
}
#sideComment .commentItem .commentAuthor .authorImg{
    width: 40%;
    margin: 0 auto;
}
#sideComment .commentItem .commentAuthor .authorImg img{
    width: 100%;
}
#sideComment .commentItem .commentCountent{
    flex-grow: 1;
    flex-shrink: 1;
    line-height: 1.3;
}
#sideComment .commentItem .commentCountent .title{
    font-weight: bold;
}
/*侧边栏 年度爆文*/
#sideHotArticle .articleIntroBox{
    max-height: 0;
    display: flex;
}
#sideHotArticle .active .articleIntroBox{
    max-height: 300px;
}
#sideHotArticle .title{
    display: flex;
}
#sideHotArticle .title .number{
    flex-shrink: 0;
    display: inline-block;
    height: 20px;
    width: 30px;
    text-align: center;
    line-height:20px;
    font-size: 14px;
    background-color: #ccc;
    color:#fff;
    border-radius: 0 15px 10px 10px;
}
#sideHotArticle .title .number0{
    background-color:#2d83f9;
}
#sideHotArticle .title .number1{
    background-color: #569cfd;
}
#sideHotArticle .title .number2{
    background-color:#8fbeff;
}
#sideHotArticle .title h4{
    margin-bottom: 0;
}
#sideHotArticle .articleIntroBox .imgBox{
    width: 30%;
    flex-shrink: 0;
    max-height: 60px;
    overflow: hidden;
    border-radius: 8px;
}
#sideHotArticle .articleIntroBox .imgBox img{
    width: 100%;
    min-height: 100%;
}
#sideHotArticle .articleIntroBox .articleIntro{
    flex-grow: 1;
    flex-shrink: 1;
}
/*侧边栏 热门标签*/
#sideHotTag .tagBox span{
    display: inline-block;
    padding: 5px 12px;
    font-size: 14px;
    border-radius: 12px;
    border:1px solid #3297fc;
    margin: 5px;
}
#sideHotTag .tagBox span a{
    color:#3297fc;
}
#sideHotTag .tagBox span:hover{
    background-color:#3297fc;
}
#sideHotTag .tagBox span:hover a{
    color:#fff;
}
.sideDa img{
    width: 100%;
}


/*文章分类页*/
.cateArticleBox h1{
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}
.cateArticleBox .deannewsubnavs span{
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-right: 10px;
    line-height: 25px;
}
.cateArticleBox .deannewsubnavs ul  li{
    display: inline-block;
}
.cateArticleBox .deannewsubnavs ul  li a{
    display: inline-block;
    padding: 0 10px;
    line-height: 25px;
    border:1px solid #3297fc;
    border-radius: 12px;
    color:#3297fc;
    margin-right: 8px;
}
.cateArticleBox .deannewsubnavs ul  li a:hover{
    background-color:#3297fc;
    color:#fff;
}

/*文章分类列表*/
.cateArticleBox  .articleList .articleItem {
    display:flex;
    border-bottom: 1px solid #eee;
    padding-bottom:20px;
    margin-bottom:20px;
}
.cateArticleBox .articleList .articleItem:last-child{
    border-bottom: none !important;
    margin-bottom:0;
    padding-bottom: 0;
}
.cateArticleBox .articleList .articleItem .imgBox{
    flex-grow: 0;
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    overflow: hidden;
}
.cateArticleBox .articleList .articleItem .imgBox img{
    width: 100%;
    min-height: 100%;
}
.cateArticleBox .articleList .articleItem:hover .imgBox img{
    transform: scale(1.2);
}
.cateArticleBox .articleList .articleItem .articleBox{
    padding-left: 20px;
    width: 50%;
    flex-grow: 1;
    flex-shrink: 1;
}
.cateArticleBox .articleList .articleItem .articleBox h3{
    font-size: 15px;
    font-weight: bold;
}

/*图片文章分类页*/
.cateArticlePicBox{
    display: flex;
    flex-wrap: wrap;
}
.cateArticlePicBox .articleItemBox{
    width: 25%;
    flex-shrink: 1;
    flex-grow: 0;
    min-width: 22%;
    padding: 10px;
}
.cateArticlePicBox .articleItem .imgBox{
    width:100%;
    height: 140px;
    overflow: hidden;
}
.cateArticlePicBox .articleItem .imgBox img{
    width: 100%;
    min-height: 100%;
}
.cateArticlePicBox .articleItem:hover .imgBox img{
    transform:scale(1.3);
}
.cateArticlePicBox .articleItem .articleBox .title{
    height: 44px;
    margin-bottom:5px;
}
.cateArticlePicBox .articleItem .articleBox h3{
    font-size: 15px;
    line-height: 22px;
    font-weight: bold;
}

/*搜索页*/

.searchWord h1{
    font-size: 15px;
}
/*标签页 搜索页*/
.tagPage  .articleList .articleItem, .searchBox  .articleList .articleItem {
    display: flex;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.tagPage .articleItem, .searchBox .articleItem {
    display: flex;
}
.tagPage .articleItem h3, .searchBox .articleItem h3{
    font-size: 15px;
    font-weight: bold;
}
.tagPage .articleItem .articleBox, .searchBox .articleItem .articleBox{
    padding-left: 20px;
    width: 50%;
    flex-grow: 1;
    flex-shrink: 1;
}
.tagPage .imgBox, .searchBox .imgBox{
    width: 220px;
    height: 150px;
    overflow: hidden;
    flex-shrink: 0;
}
.tagPage .imgBox img, .searchBox .imgBox img{
    width:100%;
    min-height:100%;
}


/*分页*/
.posts_nav_link{
	margin-top:30px;
	display: flex;
	justify-content: flex-end;
}
.posts_nav_link .page{
	display: inline-block;
	margin: 0 4px;
	padding: 2px 8px;
	border:1px solid #ddd;
	border-radius: 6px;
	cursor: pointer;
	transition-property:all;
	transition-duration:0.4s;
}
.posts_nav_link .page:hover{
	background-color: #3297fc;
	color: #fff;
	border:1px solid #3297fc;
}
.posts_nav_link .now-page{
	border:none;
	color:#3297fc;
	cursor: auto;
}
.posts_nav_link .now-page:hover{
	border:none;
	color:#3297fc;
	background-color: transparent;
}

/*文章页*/
.singleBox .title h1{
    font-size: 28px;
    line-height: 1.5;
    color: #333;
}
.singleBox .content img{
    max-width: 90%;
}
/* 文章页相关文章*/
.moreArticle .moreArticleBox ul{
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
}
.moreArticle .moreArticleBox ul li{
    line-height: 1.4;
    width: 48%;
}

/*评论*/
#postcmt .alert{
    display: none;
}
.comment{
    background-color:#fff;
    border-radius: 6px;
}
.comment .reply{
    cursor: pointer;
}
.comment .reply:hover{
    color:#3297fc;
}

/*广告*/
.da img{
    width: 100%;
}