/* #region   通用样式 */
*{
	padding: 0;
	margin: 0;
}
html, body{
    height: 100%;
}
body{
	background: #fff;
    color: #444;
    font-style: normal;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7em;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
}
ul, li{
	list-style: none;
	margin: 0;
	padding: 0;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0;
}
a{
    color: #444;
    transition-property:all;
	transition-duration:.4s;
}
a:hover{
    text-decoration: none;
    color:#5A60CE;
}
.mainColor{
    color:#5A60CE;
}
.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;
}
.animate{
	transition-property:all;
	transition-duration:.4s;
}
.nex_common_title {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.nex_common_title span {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    letter-spacing: 2px;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto{
    padding-right: 8px;
    padding-left: 8px;
}
.container-xl{
    padding-right: 8px;
    padding-left: 8px;
}
.row{
    margin-left: -8px;
    margin-right: -8px;
}

.imgBox{
    width: 100%;
    height:100%;
    overflow:hidden;
}
.imgBox img{
    width:100%;
    min-height: 100%;
}


/* 滚动条美化 */
.scroll::-webkit-scrollbar {
    width : 10px;
    height: 1px;
    }
.scroll::-webkit-scrollbar-thumb {
    border-radius   : 10px;
    background-color: #5A60CE;
    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
    );
}
.scroll::-webkit-scrollbar-track {
    box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background   : #fff;
}

/* #endregion */

/* #region  分页 */
.posts_nav_link{
	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: #5A60CE;
	color: #fff;
	border:1px solid #5A60CE;
}
.posts_nav_link .now-page{
	border:none;
	color:#5A60CE;
	cursor: auto;
}
.posts_nav_link .now-page:hover{
	border:none;
	color:#5A60CE;
	background-color: transparent;
}
/* #endregion */

/* #region  页脚 */
.footer h5{
    font-weight: bold;
}
.footerNav{
    display:flex;
    flex-wrap: wrap;
}
.footerNav li{
    width: 50%;
    flex-grow: 1;
    flex-shrink: 1; 
}
.footerNav li:nth-child(even){
    padding-left:10px;
}
.footerNav li a{
    color: rgba(255,255,255,.5);
}
.footerNav li a:hover{
    color:#5A60CE !important;
}
/* #endregion */

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

/* #region  侧边栏*/
#sidebarBox{
    padding-left:0;
}
#sidebarBox h4{
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight:bold;
    position: relative;
    padding-left: 14px;
}
#sidebarBox h4:before{
    background-color: #5A60CE;
    border-radius: 1px;
    content: " ";
    display: block;
    width: 4px;
    height: 15px;
    position: absolute;
    top: 0;
    left: 0;
}
#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: 150px;
}
#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;
    overflow:hidden;
    display: flex;
}
#sideHotArticle .active .articleIntroBox{
    max-height: 300px;
}
#sideHotArticle .title{
    display: flex;
}
#sideHotArticle .title .number{
    flex-shrink: 0;
    display: inline-block;
    height: 18px;
    width: 30px;
    text-align: center;
    line-height:18px;
    font-size: 13px;
    background-color: #ccc;
    color:#fff;
    border-radius: 0 15px 10px 10px;
}
#sideHotArticle .title .number0{
    background-color:#ffbe02;
}
#sideHotArticle .title .number1{
    background-color: #007fdb;
}
#sideHotArticle .title .number2{
    background-color:#46b450;
}
#sideHotArticle .title h5{
    margin-bottom: 0;
    font-size:14px;
    color:#333;
}
#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 #ddd;
    margin: 5px;
}
#sideHotTag .tagBox span a{
    color:#333;
}
#sideHotTag .tagBox span:hover{
    background-color:#ddd;
}
#sideHotTag .tagBox span:hover a{
    color:#5A60CE;
}
.sideDa img{
    width: 100%;
}
/* 侧边栏 随机文章 */
#sideRandom li{
    font-size:13px;
    line-height: 25px;
    padding-left: 14px;
    position: relative;
}
#sideRandom li:before{
    background-color: #5A60CE;
    border-radius: 2px;
    content: " ";
    display: inline-block;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 10px;
}
/* 侧边栏 最新文章 */
#sideNew .imgItem{
    margin-bottom:15px;
}
#sideNew .imgItem .imgBox{
    width:100%;
    height:110px;
    overflow:hidden;
    position:relative;
}
#sideNew .imgItem .imgBox img{
    width:100%;
    min-height:100%;
}
#sideNew .imgItem .imgBox img:hover{
    transform: scale(1.2);
}
#sideNew .imgItem .title{
    position:absolute;
    line-height:30px;
    left:0;
    right:0;
    bottom:0;
    padding: 0 10px;
    background-color:rgba(0,0,0,.3);
}
#sideNew .imgItem .title h5{
    font-size:13px;
    color:#fff;
    margin-bottom: -4px;
}
#sideNew .textItem{
    width: 100%;
    flex-shrink: 0;
    font-size: 13px;
    line-height: 22px;
    padding-left: 12px;
    position: relative;
}
#sideNew  .textItem:before{
    background-color: #5A60CE;
    border-radius: 2px;
    content: " ";
    display: inline-block;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 9px;
}

/*回到顶部按钮*/
#js-go_top{
	position: fixed;
    right: 20px;
    bottom: 20px;
    cursor:pointer;
}

/* 广告 */
.daImgBox{
    overflow:hidden;
}
.daImgBox img{
    width: 100%;
}
/* #endregion */

/* #region  导航栏 */
#topBox .logoBox{
    height: 50px;
    width: 200px;
    overflow:hidden;
}
#topBox .logoBox img{
    width: 100%;
    height:100%;
}
#topBox .logoBox h1, #topBox .logoBox h2{
    font-size:22px;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 50px;
}
#topBox .searchaBox {
    position:relative;
}
#topBox .searchaBox .searchInput{
    line-height: 36px;
    width:120px;
    border:1px solid #999;
    border-radius:18px;
    padding: 0 30px 0 10px;
    outline: none;
}
#topBox .searchaBox .searchInput:focus{
    width:250px;
    border:1px solid #5A60CE;
}
#topBox .searchaBox .mainButton{
    position: absolute;
    right: 8px;
    top: 6px;
}
#topBox .searchaBox .mainButton .iconfont{
    font-size:22px;
}

#topBox nav{
    background-color:#5A60CE;
}
#topBox nav ul{
    display:flex;
}
#topBox nav ul li{
    display:inline-block;
    position:relative;
    white-space: nowrap;
}
#topBox nav ul li>a{
    display: inline-block;
    line-height:50px;
    padding: 0 15px;
    color:#fff;
}
#topBox nav ul li:last-child a{
    border-right: none;
}
#topBox nav ul li a:after {
    position: absolute;
    content: '';
    left: 50%;
    height: 3px;
    bottom: 0;
    width: 0;
    transition: all .4s;
    background-color: #f00;
}
#topBox nav ul li>a:hover:after{
    width:100%;
    left:0;
}
#topBox nav ul .subcate:hover .subnav{ 
    max-height:1000px;
    display:block;
}
#topBox nav ul .subcate .subnav{
    transition: all .8s;
    box-shadow: 0 .3rem .6rem rgba(0,0,0,.15);
    max-height: 0;
    display:none;
    width: 200px;
    position:absolute;
    display:inline-block;
    overflow:hidden;
    left:-20px;
    top:50px;
    background-color:#fff;
    border-left:1px solid #ddd;
    border-right:1px solid #ddd;
    border-bottom:1px solid #ddd;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    z-index:10000;
}
#topBox nav ul .subcate .subnav a{
    display:block;
    padding: 5px 10px;
}
#topBox .hotTags{

}
/* #endregion */

/* #region 首页banner */
#homeBanner .carousel-item{
    height: 310px;
}
#homeBanner .carousel-item a:hover img{
    transform: scale(1.1);
}
#homeBanner .carousel-caption{
    left:0;
    right:0;
    bottom:0;
    height: 40px;
    line-height: 40px;
    background-color:rgba(0,0,0,.4);
    color:#fff;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 15px;
    padding-right:15px;
}
#homeBanner .carousel-caption h2{
    font-size:16px;
    line-height:1;
}
#homeTopCate .nav a.active{
    color: #5A60CE;
    font-weight: 600;
}
#homeTopCate .itemBox{
    display:flex;
    justify-content:space-between;
    align-items: center;
    margin: 7px 0;
}
#homeTopCate .itemBox .item{
    display:flex;
    align-items: center;
    width: 85%;
    flex-grow: 0;
    flex-shrink: 1;
}
#homeTopCate .itemIndex{
    flex-grow: 0;
    flex-shrink: 0;
    display:inline-block;
    font-size: 12px;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
    background-color: #ddd;
    color: #fff;
    border-radius: 3px 50% 50% 3px;
    margin-right: 10px;
}
#homeTopCate .item0{
    background-color: #ef9b76;
}
#homeTopCate .item1{
    background-color: #f4a988;
}
#homeTopCate .item2{
    background-color: #fcbda1;
}
#homeTopCate .itemTitle{
    line-height: 16px;
}
#homeTopCate .time{
    width:15%;
    text-align: right;
    color: #aaa;
    font-size: 12px;
    flex-grow: 1;
    flex-shrink: 0;
}
/* #endregion */

/* #region 首页分类 */
/* 分类1 */
.homeCate h2{
    font-size: 16px;
    font-weight:600;
    display: inline-block;
    padding: 0 5px 10px 10px;
    border-bottom:1px solid #5A60CE;
}
.homeCate .rightTitle{
    font-size:16px;
    padding: 0 0 10px 0;
    font-weight:600;
}
.homeCate .rightContent .img{
    height: 50px;
    width: 35%;
}
.homeCate .rightContent .text{
    width: 65%;
}
.homeCate .rightContent a:hover img{
    transform: scale(1.3);
}
.homeCate .rightContent .item{
    width: 80%;
}
.homeCate .rightContent .time{
    width: 20%;
}
.homeCate .rightContent li{
    font-size:13px;
    line-height: 25px;
    padding-left: 14px;
    position: relative;
}
.homeCate .rightContent li:before{
    background-color: #5A60CE;
    border-radius: 2px;
    content: " ";
    display: inline-block;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 10px;
}

.homeCate1 .left .imgItem{
    width: 48%;
    flex-grow:0;
    position:relative;
    height: 155px;
}
.homeCate1 .left .imgItem a:hover img{
    transform: scale(1.3);
}
.homeCate1 .left .imgItem .title{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    background-color:rgba(0, 0, 0, .4);
    padding: 5px;
    font-size:13px;
    color:#fff;
}
.homeCate1 .center .item{
    width: 80%;
}
.homeCate1 .center .time{
    width: 20%;
}

.homeCate2 .left .imgItem{
    width: 23%;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow:hidden;
}
.homeCate2 .left .imgItem a:hover img{
    transform: scale(1.3);
}
.homeCate2 .left .img{
    height: 100px;
}
.homeCate2 .left .text{
    height: 60px;
    line-height: 20px;
}
/* #endregion*/

/*  #region  分类页  搜索页   标签页  文章页  */

#cateBox .top h1, #tagBox .top h1, #searchBox .top h1{
    font-size:16px;
    font-weight: 600;
    border-bottom:1px solid #5A60CE;
    display:inline-block;
}
/* #endregion*/


/*  #region  文章列表样式 */
.articleList .articleItem{
    display:flex;
    padding: 20px 0;
    padding-bottom: 20px;
    justify-content:space-between;
    border-bottom:1px solid #e9e9e9;
}
.articleList .articleTem:hover{
    background-color:#eee;
}
.articleList .articleItem:hover .imgBox img{
    transform: scale(1.2);
}
.articleList .articleItem .imgBox{
    width: 30%;
    flex-grow: 0;
    flex-shrink: 0;
    margin-right:20px;
    height: 150px;
    overflow:hidden;
}
.articleList .articleItem .imgBox img{
    width: 100%;
    min-height:100%;
}
.articleList .articleItem .articleBox{
    width:65%;
    flex-grow:1;
    flex-shrink:1;
}
.articleList  .info{
    display:flex;
    align-items: center;
    width: 100%;
}
.articleList  .info img{
    width: 18px;
    height: 18px;
    border-radius:9px;
}
.articleList .articleItem .articleBox h3{
    font-size: 16px;
    font-weight:bold;
    margin-bottom:2px;
}
.articleList .articleItem .articleBox  .info{
    margin-bottom: 15px;
}
.articleList .articleItem2 {
    padding: 20px 0;
    border-bottom:1px solid #e9e9e9;
}
.articleList .articleItem2 h3{
    font-size: 16px;
    font-weight:bold;
    margin-bottom:2px;
}

.articleList .articleItem2  .imgsBox{
    display:flex;
    justify-content: space-between;
}
.articleList .articleItem2  .imgsBox .imgItem{
    width: 32%;
    flex-grow: 0;
    flex-shrink: 0;
    height: 150px;
    overflow:hidden;
}
.articleList .articleItem2  .imgsBox .imgItem img{
    width: 100%;
    min-height: 100%;
}
.articleList .articleItem2  .imgsBox .imgItem img:hover{
    transform: scale(1.2);
}
.articleList .articleTem:first-child{
    margin-top:10px;
}
.articleList .articleTem:last-child{
    margin-bottom:0;
    padding-bottom:10px;
}
/* #endregion*/
.singleBox .title h1{
    font-size:18px;
    font-weight:bold;
}
.singleBox .title .info{
    display:flex;
    align-items: center;
    width: 100%;
}
.singleBox .title .info img{
    width: 18px;
    height: 18px;
    border-radius:9px;
}
.singleBox .content {
    overflow:hidden;
}
.singleBox .content img{
    max-width: 100%;
}
.moreArticle ul li{
    line-height: 35px;
    display:flex;
    justify-content: space-between;
    padding-left: 14px;
    position: relative;
}
.moreArticle ul li:before{
    background-color: #5A60CE;
    border-radius: 2px;
    content: " ";
    display: inline-block;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 15px;
}
.moreArticle ul li a{
    flex-grow:1;
    flex-shrink: 1;
    margin-right:20px;
}
.moreArticle ul li span{
    flex-grow:0;
    flex-shrink: 0;
    width:100px;
    text-align: right;
}

/*  #region  友情链接*/
#friendship .friendLink {
    display: flex;
    flex-wrap: wrap;
}
#friendship .friendLink li{
    line-height: 1.5;
    padding: 0 15px;
}
/*  #endregion   */




/* 响应式样式 */
@media screen and (max-width:767px){

    /* 导航烂 */
    #topBox .searchaBox .searchInput{
        width:150px;
    }
    #topBox .searchaBox .searchInput:focus{
        width:200px;
    }
    #topBox nav{
        margin-right:-6px;
        margin-left: -6px;
    }
    #topBox nav ul{
        overflow: auto;
    }

    /* 首页 banner */
    #homeBanner .carousel-item{
        height: 180px;
    }

    /* 首页分类 */
    .homeCate1 .rightContent .img{
        height: 50px;
        width: 25%;
    }
    .homeCate1 .rightContent .text{
        width: 75%;
    }
    .homeCate2 .left .imgItem{
        width: 48%;
    }
}
@media (min-width:768px){


}
@media (min-width:992px){


}
@media (min-width:1200px){


}