/*   全局开始 	*/
:root{
	--text-color:#666;
	--theme-color:#365D86;
}
body,a{

	font-family: "PingFang SC",Arial,"Microsoft YaHei","\5FAE\8F6F\96C5\9ED1","\5B8B\4F53",simsun,sans-serif;
	color: var(--text-color);
}
.content{
	max-width: 1170px;
	margin: auto;
	padding:0 -15px;
}
a{
	text-decoration: none;
}
a:hover{
	text-decoration: none;
}
.model-title{
	color: var(--theme-color);
	font-size: 18px;
	font-weight: 600;
}
.theme-hr{
	border-top:1px solid var(--theme-color);
}
.theme-hr2{
	border-top:2px solid var(--theme-color);
}
/*全局结束*/
/*   顶部导航开始 	*/
.top-head{
	height: 30px;
	background-color: #F5F6F7;
	border-bottom: 1px solid #eae9e9;
	line-height: 30px;
}
.top-head-nav-box{
	margin-right: -15px;
}
.top-head-nav{
	padding:0  10px;
	position: relative;
	font-size: 12px;
}
.top-head-nav:hover{
	color: var(--theme-color);
}
.top-head .top-head-nav:last-of-type{
	padding-right:0;
	margin-right: -15px;
}
.top-head-nav:not(:first-child):before{
	content: "";
	position: absolute;
	height: 10px;
	width: 1px;
	left: -1px;
	top: 50%;
	transform: translateY(-50%);
	background: #E0E0E0;
}

/*   顶部导航结束 	*/

/*    搜索模块开始	*/
.search-model >.row{
	display: flex;
	align-items: center;
}

.search-right-box{
	display: flex;
	justify-content: right;
	float: right;
}
.s-r-ele-img{
	width: 22px;
	height: 22px;
}
.s-m-logo{
	margin-top: -50px;
	height: 100px;
}
.form-horizontal .btn{
	background: var(--theme-color);
	color: #fff;
	width: 72px;
	height: 38px;
}
.form-control{
	height: 38px;
}
.s-r-ele{
	display: flex;
	margin-left: 10px;
	position: relative;
}
.s-r-ele-more{
	display: none;
	position: absolute;
	top: 30px;
	background: #fff;
	z-index: 9;
	transform: scale(1.5);
	padding:5px;
	transform-origin: top;
	border-radius: 3px;
}
.s-r-ele:hover .s-r-ele-more{
	display: block;
}

/*    搜索模块开始	*/

/*导航开始*/
.nav-box{
	display: flex;
	justify-content: space-between;
	/*background: var(--theme-color);*/
}
.nav-box a{
	font-size: 17px;
	/*color: #FFF;*/
	text-wrap: nowrap;
	position:relative;
	padding-bottom:10px;
/*	padding:5px;*/
}
.nav-box a.on:after,
.nav-box a:hover:after{
	position: absolute;
	content: "";
	width: 100%;
	height: 3px;
	background: var(--theme-color);
	bottom: 0;
	left: 0;

}

/*导航结束*/

/*顶部广告开始*/
.top-ad-box img{
	width: 100%;
}
/*顶部广告结束*/

/*今日精选开始*/
.daily-swiper{
	width: 100%;
	overflow: hidden;
}
.daily-swiper .swiper{
	width: 100%;
}

.swiper-slide{
	width: 100%;
	height: 330px;
	overflow: hidden;
}
.swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;

}



.daily-box{
	height: 100%;
	overflow: hidden;
	
}
.swiper2{
	height: 330px;
}
.swiper2 .swiper-slide{
	height: 110px;
	background: rgba(200, 200, 200, 0.1);
	padding:0 20px;

}
.swiper2 .swiper-slide:hover{
	background: #fff;
}
.swiper2 .swiper-slide:hover p a{
	color: var(--theme-color);
}
.swiper2 .swiper-slide p{
	display: -webkit-box;
    max-height: 50px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}



    
/*今日精选结束*/

/*文章列表开始*/
.article-title{
	display: flex;
	justify-content: left;
	align-items: center;
	
}
.article-title a{
	font-size: 18px;
}
.article-title a:hover{
	color: var(--theme-color);
}

.article-cover-box{
	width: 100%;
	overflow: hidden;
	display: block;
	border-radius: 3px;

}
.article-cover-box img{
	transition: all 0.2s ;
}
.article-cover-box:hover img{
	transform: scale(1.1);
}
.article-content{
	line-height: 25px;
}
.folder_caption{
	color: var(--theme-color);
	position: relative;
	padding-right: 10px;
	margin-right: 10px;
}
.folder_caption:after{
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 12px;

	background: #ccc;

}
.rank-box .rank-num{
	width: 20px;
	height: 20px;
	line-height: 20px;
	background: #f1f1f1;
	color: #fff;
	margin-right: 5px;
	border-radius: 4px;
	text-align: center;
}
.rank-article-cover{
	transition: all .2s;
	transform: rotateX(90deg);
	height: 0;
	transform-origin: top;
}
.rank-box:hover .rank-article-cover{
	transform: rotateX(0deg);
	height: 200px;
}
.rank-box:nth-of-type(1) .rank-num{
	background: var(--theme-color);
}
.rank-box:nth-of-type(2) .rank-num{
	background: #D0571C;
}

.rank-box:nth-of-type(3) .rank-num{
	background: #EC8217;
}

.rank-box:hover{
	box-shadow: 0 0 10px #ccc;
	
	transform: scale(1.05);
	padding:10px;

}
/*文章列表结束*/

/*底部开始*/
.bottom-list a{
	position: relative;
	
	padding:0 20px;
}
.bottom-list a:not(:first-child):before{
	content: "";
	position: absolute;
	height: 10px;
	width: 1px;
	left: -1px;
	top: 50%;
	transform: translateY(-50%);
	background: #E0E0E0;
}
/*底部结束*/