/*通用样式*/
*{
	padding: 0;
	margin: 0;
}
html, body{
    height: 100%;
}
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;
    background-color: #f7f7f7;
}

ul, li{
	list-style: none;
	margin: 0;
	padding: 0;
}

a{
    color: #333;
    transition-property:all;
	transition-duration:.4s;
}
a:hover{
    text-decoration: none;
    color:#3297fc;
}
.colorFc{
    color:#3297fc;
}
.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;
}
.show-sm{
	display:none;
}
.show-md{
	display: none;
}
.show-lg{
	display: none;
}
.show-xl{
	display: none;
}

/* 滚动条美化 */
.scroll::-webkit-scrollbar {
    /*滚动条整体样式*/
    width : 10px;  /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
    }
.scroll::-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
    );
}
.scroll::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background   : #fff;
}



/*首页顶部banner*/
#homeTopLeftBanner{
    padding-right: 0;
    height: 300px;
    overflow: hidden;
}
#homeTopLeftBanner .carousel-inner{
    height: 100%;
}
#homeTopLeftBanner .carousel-item{
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
#homeTopLeftBanner .carousel-item:hover img{
    transform: scale(1.2);
}
#homeTopLeftBanner .carousel-item:hover .carousel-caption{
    background-color: rgba(255,255,255,1)
}
#homeTopLeftBanner .carousel-item .imgBox{
    width: 100%;
    height:100%;
    overflow: hidden;
}
#homeTopLeftBanner .carousel-item .imgBox img{
    width: 100%;
    min-height:100%;
}
#homeTopLeftBanner .carousel-caption{
    position: absolute;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 10;
    padding:10px;
    color: #333;
    text-align: left;
    background-color: rgba(255,255,255,.5)
}

#homeTopLeftBanner .itemtitle{
    display:flex;
    align-items: baseline;
}
#homeTopLeftBanner .itemtitle .cate{
    max-width: 70px;
    flex-grow: 0;
    flex-shrink: 0;
    text-align: right;
    margin-right: 5px;
}
#homeTopLeftBanner .itemtitle .title{
    flex-grow: 1;
    flex-shrink: 1;
    font-size:18px;
}
#homeTopLeftBanner .itemInfo{
    display:flex;
    align-items: center;
}
#homeTopLeftBanner .itemInfo img{
    width: 30px;
    height:30px;
    border-radius: 15px;
}

/* 头条 */
#homeTopTouTiao {
    display:flex;
    justify-content:space-between;
}
#homeTopTouTiao .homeTopTouTiaoItem{
    width: 48.5%;
    flex-grow:0;
    flex-shrink: 0;
    position:relative;
}
#homeTopTouTiao .homeTopTouTiaoItem:hover img{
    transform: scale(1.2);
}
#homeTopTouTiao .homeTopTouTiaoItem:hover .title{
    background-color: rgba(255,255,255,1);
}
#homeTopTouTiao .homeTopTouTiaoItem .imgbox{
    width: 100%;
    height:150px;
    overflow:hidden;
}
#homeTopTouTiao .homeTopTouTiaoItem .imgbox img{
    width:100%;
    min-height: 100%;
}
#homeTopTouTiao .homeTopTouTiaoItem .title{
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding:10px 5px;
    color: #333;
    text-align: left;
    background-color: rgba(255,255,255,.5);
}
/* 今日热闻 */
#homeHot{
    height: 100%;
    overflow: hidden;
    position:relative;
}
#homeHot .iconBox{
    position:absolute;
    top:-10px;
    right:0;
}
#homeHot .iconBox .icon{
    font-size:40px;
}
#homeHot .header{
    text-align: center;
}

#homeHot ul{
    height:403px;
    overflow:auto;
}
#homeHot li{
    font-size:15px;
    line-height: 26px;
    padding-left: 14px;
    position: relative;
}
#homeHot li:before{
    background-color: #3297fc;
    border-radius: 2px;
    content: " ";
    display: inline-block;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 10px;
}


/* 首页推荐栏目(文字) */
.homeCateTextBox {
    height: 555px;
    overflow:auto;
    padding:0;
}
.homeCateTextBox .homeCateTextOne{
    height:180px;
    margin-bottom: 10px;
    position: relative;
    overflow:hidden;
}
.homeCateTextBox .homeCateTextOne img{
    height: 100%;
    min-width: 100%;
}
.homeCateTextBox .homeCateTextOne .homeCateTextOneBox{
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width:100%;
    z-index:10;
    padding: 20px 20px 10px 10px;
}
.homeCateTextBox .homeCateTextOne .homeCateTextOneBox h5{
    height: 44px;
    line-height: 20px;
    overflow: hidden;
    margin-bottom: 15px;
}
.homeCateTextBox .homeCateTextOne .homeCateTextOneBox h5 a{
    font-size: 14px;
    color: #555;
    font-weight: 600;
}
.homeCateTextBox .homeCateTextOne .homeCateTextOneBox h5 a:hover{
    color:#3297fc;
}
.homeCateTextBox .homeCateTextOne .homeCateTextOneBox .homeCateTextOneInfo{
    padding: 20px;
    font-size: 13px;
    background: rgba(255,255,255,0.6);
}
.homeCateTextBox ul{
    height:310px;
    padding: 0 10px;
    margin:0;
}
.homeCateTextBox ul li{
    line-height: 25px;
    margin:0;
    padding:0;
}

/* 首页推荐栏目(图文) */
.homeCatePicBox .homeCatePicHeader {
    border-bottom: 1px solid #ddd;
    margin-bottom:10px;
    padding:10px;
    display: flex;
    justify-content:space-between;
    align-items:center;
}
.homeCatePicBox .homeCatePicHeader span{
    font-size:18px;
    font-weight: bold;
}
.homeCatePicBox .homeCatePicHeader a{
    padding: 2px 8px;
    border:1px solid #e9e9e9;
    color:#ccc;
    font-size:13px;
}
.homeCatePicBox .homeCatePicHeader a:hover{
    border-color:#3297fc;
    color:#3297fc;
}
.homeCatePicBox .homeCatePic .homeCatePicOne{
    display:flex;
    justify-content:space-between;
    
}
.homeCatePicBox .homeCatePic .homeCatePicOne .imgBox{
    width: 60%;
    height:200px;
    flex-grow: 1;
    flex-shrink: 0;
    overflow:hidden;
    position:relative;
}
.homeCatePicBox .homeCatePic .homeCatePicOne .imgBox .text{
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding:10px 5px;
    color: #333;
    text-align: left;
    background-color: rgba(255,255,255,.8);
}
.homeCatePicBox .homeCatePic .homeCatePicOne .imgBox img{
    width: 100%;
    min-height:100%;
}
.homeCatePicBox .homeCatePic .homeCatePicOne .imgBox img:hover{
    transform: scale(1.2)
}
.homeCatePicBox .homeCatePic .homeCatePicOne .textBox{
    width:38%;
    flex-grow: 0;
    flex-shrink: 1;
}
.homeCatePicBox .homeCatePic .homeCatePicOne .textBox .title{
    font-weight: bold;
}
.homeCatePicBox .homeCatePic .homeCatePicOne .info{
    width: 70%;
    margin: 10px auto;
}
.homeCatePicBox .homeCatePic .homeCatePicOne .info .authorImg{
    display:flex;
    align-items:center;
    justify-content:center;
}
.homeCatePicBox .homeCatePic .homeCatePicOne .info .authorImg img{
    width:24px;
    width:24px;
    border-radius:12px;
}
.homeCatePicBox .homeCatePic .homeCatePicOne .info .moreInfo{
    font-size:12px;
    display:flex;
    align-items: center;
    justify-content:center;
}
.homeCatePicBox .homeCatePic .homeCatePicOne .content{
    font-size:12px;
}

.homeCatePicBox .homeCatePic .moreArticleItem{
    display:flex;
    margin-bottom: -1px;
    border-bottom: 1px solid #dee2e6;
}
.homeCatePicBox .homeCatePic .moreArticleItem .imgBox{
    width: 30%;
    height:60px;
    overflow:hidden;
    flex-shrink: 0;
    flex-grow:0;
}
.homeCatePicBox .homeCatePic .moreArticleItem .imgBox img{
    width: 100%;
    min-height: 100%;
}
.homeCatePicBox .homeCatePic .moreArticleItem .imgBox img:hover{
    transform:scale(1.2)
}
.homeCatePicBox .homeCatePic .moreArticleItem .title{
    width:70%;
    flex-shrink: 1;
    flex-grow:1;
}
/* 首页最新文章 */
.homeArticle{
    width: 100%;
}
.homeArticle .iconBox{
    position:absolute;
    top:-10px;
    right:0;
}
.homeArticle .iconBox .icon{
    font-size:40px;
}
.homeArticle .header{
    position:relative;
}

/* 分类 */
#cateBox h1{
    font-size:18px;
    font-weight: bold;
}

/* 文章页 */
.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 .nex_list_summary{
    background: linear-gradient(90deg,#12B0FC,#0272F7);
    color:#fff;
}
.singleBox .content {
    overflow:hidden;
}
.singleBox .content img{
    max-width: 100%;
}








/* 通用样式 */
.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;
}
.nex_common_title em {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #bcbcbc;
    font-weight: 500;
    margin-left: 10px;
}
#sidebarBox .nex_common_title span{
    font-size:16px;
}




/* 文章列表样式 */
.artieclItemBox .articleItem{
    display:flex;
    margin: 20px 0;
    padding-bottom: 20px;
    justify-content:space-between;
    border-bottom:1px solid #e9e9e9;
}

.artieclItemBox .articleItem:hover .imgBox img{
    transform: scale(1.2);
}
.artieclItemBox .articleItem .imgBox{
    width: 30%;
    flex-grow: 0;
    flex-shrink: 0;
    margin-right:20px;
    height: 150px;
    overflow:hidden;
}
.artieclItemBox .articleItem .imgBox img{
    width: 100%;
    min-height:100%;
}
.artieclItemBox .articleItem .articleBox{
    width:65%;
    flex-grow:1;
    flex-shrink:1;
}
.artieclItemBox  .info{
    display:flex;
    align-items: center;
    width: 100%;
}
.artieclItemBox  .info img{
    width: 18px;
    height: 18px;
    border-radius:9px;
}
.artieclItemBox .articleItem .articleBox h3{
    font-size: 16px;
    font-weight:bold;
    margin-bottom:2px;
}
.artieclItemBox .articleItem .articleBox  .info{
    margin-bottom: 15px;
}
.artieclItemBox .articleItem2 {
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom:1px solid #e9e9e9;
}
.artieclItemBox .articleItem2 h3{
    font-size: 16px;
    font-weight:bold;
    margin-bottom:2px;
}

.artieclItemBox .articleItem2  .imgsBox{
    display:flex;
    justify-content: space-between;
}
.artieclItemBox .articleItem2  .imgsBox .imgItem{
    width: 32%;
    flex-grow: 0;
    flex-shrink: 0;
    height: 150px;
    overflow:hidden;
}
.artieclItemBox .articleItem2  .imgsBox .imgItem img{
    width: 100%;
    min-height: 100%;
}
.artieclItemBox .articleItem2  .imgsBox .imgItem img:hover{
    transform: scale(1.2);
}
.artieclItemBox .articleTem:first-child{
    margin-top:10px;
}
.artieclItemBox .articleTem:last-child{
    margin-bottom:0;
    padding-bottom:10px;
    border-bottom:none;
}

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

/*顶部导航*/
.logoContent{
    height: 80px;
}
.logoContent .logoBox{
    width: 200px;
    height:50px;
    overflow:hidden;
}
.logoContent .logoBox img{
    width: 100%;
    height:100%;
}
.logoContent .logoText{
    margin-left: 10px;
    font-size: 22px;
    line-height:50px;
    margin:0;
}
.topSearchBox{
    position:relative;
    width:340px;
}
.topSearchBox form{
    display: flex;
    align-items: center;
}
.topSearchBox input{
    border: 1px solid #ddd;
    color: #333;
    font-size: 14px;
    width: 290px;
    height: 40px;
    line-height: 40px;
    padding: 0 12px;
    outline: none;
}
.topSearchBox button{
    font-size: 14px;
    border: 0px;
    height: 40px;
    line-height: 40px;
    padding : 0 12px;
    text-align: center;
    border:1px solid #eee;
    color:#333;
    background-color:#eee;
}
.topSearchBox button:hover{
    background-color: #ddd;
    box-shadow: 0 1px 0 rgb(0 0 0 / 3%);
}
.miniNav{
    background-color: #343a40;
    color:#fff;
    display:flex;
    justify-content: space-between;
    padding: 0 15px;
    height:50px;
    align-items: center;
}
.miniNav .mimilogoBox{
    width:100px;
    height:50px;
    overflow:hidden;
}
.miniNav .mimilogoBox img{
    width: 100%;
    height:100%;
}
.miniNav .mimilogoBox .logoText{
    line-height:50px;
}
.miniNav .minimenuBox .icon{
    font-size:22px;
    color:#fff;
}


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


/*分页*/
.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: #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;
}


/*侧边栏*/
#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: #3297fc;
    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;
    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:#3297fc;
}
.sideDa img{
    width: 100%;
}
/* 侧边栏 随机文章 */
#sideRandom li{
    font-size:13px;
    line-height: 25px;
    padding-left: 14px;
    position: relative;
}
#sideRandom li:before{
    background-color: #3297fc;
    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.1);
}
#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: #3297fc;
    border-radius: 2px;
    content: " ";
    display: inline-block;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 9px;
}


/* 友情链接 */
#friendship{
    margin-top:20px;
    padding: 20px 0;
}

#friendship .friendLink {
    display: flex;
    flex-wrap: wrap;
}
#friendship .friendLink li{
    line-height: 1.5;
    padding: 0 15px;
}

/*页脚*/
.footer{
    padding-top: 20px;
    padding-bottom:20px;
}
.footer h5{
    font-weight: bold;
}
.footerNav{
    display:flex;
    flex-wrap: wrap;
}
.footerNav li{
    width: 33.33%;
    flex-grow: 1;
    flex-shrink: 1; 
}


.footerNav li a:hover{
    color:#5A60CE !important;
}
#js-go_top{
	position: fixed;
    right: 20px;
    bottom: 20px;
    cursor:pointer;
}

/* 响应式样式 */
@media screen and (max-width:767px){
	.show-sm{
		display:block;
	}

    /* 导航栏 */
    .closeMiniNav{
        width: 40px;
        font-size:20px;
        border:1px solid #e9e9e9;
        border-radius: 20px;
        margin: 0 auto 20px auto;
        text-align: center;
        line-height: 38px;
    }
    .topNav .menuBox{
        position:fixed;
        z-index:999999;
        top:0;
        left:0;
        right:0;
        bottom:0;
        overflow: auto;
        background-color:#fff;
    }
    .topNav .menuBox ul{
        background-color:#fff;
        width: 100%;
        padding: 20px 15px;
    }
    .topNav .menuBox ul li{
        line-height: 3;
        font-size:18px;
        border-bottom:1px dotted #e9e9e9;
    }
    .topNav .menuBox ul  li:last-child{
        border-bottom:none;
    }
    .topNav .menuBox ul .subnav, .topNav .menuBox ul ul{
        display: none;
    }

    .topSearchBox{
        background-color:#fff;
        width: 100%;
        padding: 30px;
    }

    /* 其他 */
    .homeCatePicBox .homeCatePic .moreArticleItem:nth-last-child(1){
        border-bottom:none;
    }

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

    .row {
        margin-right: 0;
        margin-left: 0;
    }
    .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 {
        position: relative;
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-right: auto;
        margin-left: auto;
    }


    .show-sm{
        display:none;
    }
	.show-md{
		display: block;
	}

    /* 导航栏 */
    .navBox{
        box-shadow: 0px 2px 15px 1px rgb(30 30 30 / 6%);
    }
    .topNav .menuBox{
        border-top:1px solid #e9e9e9;
        
    }
    .topNav .menuBox ul{
        margin-bottom: 0;
    }
	.topNav .menuBox ul>.navbar-item, .topNav .menuBox ul>li{
        display:inline-block;
        position:relative;
    
    }
    .topNav .menuBox ul>.navbar-item>a, .topNav .menuBox ul>li>a{
        line-height: 50px;
        padding: 0 20px;
        border-right:1px dotted #e9e9e9;
    }

    .topNav .menuBox ul>.navbar-item:last-child a, .topNav .menuBox ul>li:last-child a{
        border-right:none;
    }
    .topNav .menuBox ul>.navbar-item .subnav, .topNav .menuBox ul ul{
        max-height:0px;
        overflow:hidden;
        position: absolute;
        z-index:99999;
        width: 200px;
        border-color:#e9e9e9;
        left: -20px;
        top:50px;
        background-color:#fff;
        transition-property:all;
        transition-duration:1s;
    }
    .topNav .menuBox ul ul .navbar-item a{
        padding:0;
        border:none;
    }
    .topNav .menuBox ul>.navbar-item .subnav a, .topNav .menuBox ul>.navbar-item .navbar-item{
        display:block;
        padding: 0 10px;
        border-bottom: 1px dotted #e9e9e9;
    }
    .topNav .menuBox ul>.navbar-item .subnav a, .topNav .menuBox ul>.navbar-item .navbar-item a{
        line-height:35px;
    }
    .topNav .menuBox ul>.navbar-item .subnav a:last-child, .topNav .menuBox ul>.navbar-item .navbar-item{
        border-bottom: none;
    }
    
    .topNav .menuBox ul .subcate:hover .subnav,  .topNav .menuBox ul .navbar-item:hover ul{
        max-height:900px;
        border-left:1px solid #e9e9e9;
        border-right:1px solid #e9e9e9;
        border-bottom:1px solid #e9e9e9;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
    }
    
    .topNav .menuBox ul .subcate>a::after {
        display:inline-block;
        margin-left:5px;
        content:'';
        width: 0;
        height: 0;
        border-left: 3px solid transparent;
        border-right: 3px solid transparent;
        border-top: 6px solid #3297fc;
        margin-bottom: 2px;
    }

    .topNav .menuBox li li{
        text-align:center;
    }
    .topNav .menuBox li a:after {
        position: absolute;
        content: '';
        left: 50%;
        height: 3px;
        bottom: 0;
        width: 0;
        transition: all .4s;
        background: #3297fc;
    }
    .topNav .menuBox li:hover>a:after{
        width:100%;
        left:0;
    }

    /* 其他 */
    .homeCatePicBox .homeCatePic .moreArticleItem:nth-last-child(2), 
    .homeCatePicBox .homeCatePic .moreArticleItem:nth-last-child(1){
        border-bottom:none;
    }
}
@media (min-width:992px){
	.show-lg{
		display: block;
	}
}
@media (min-width:1200px){

	.show-xl{
		display: block;
	}
}