/* 新闻列表 */
.news_common {
	width: 14rem;
	margin: 0 auto;
	padding-top: 0.71rem;
	padding-bottom:1.02rem;
}

.news_list {
	display: flex;
	flex-wrap: wrap;
}
.new_item{
    padding:0 0.23rem;
}

 .li_list{
	/*width: 4.36rem;*/
	/*margin-right: 0.46rem;*/
	overflow: hidden;

	margin-bottom: 0.43rem;
	/*height: 100%;*/
	box-shadow: 0rem 0rem 0.05rem 0.01rem rgba(0, 0, 0, 0.11);
	border-radius: 0.1rem 0rem 0.1rem 0.1rem;
	background-color: #fff;
	transition: all 0.6s;
}
.new_item .img_box{
    height:2.55rem;
        background: #c8c8c8;
}

.new_item:hover .li_list{
	background-color: #489AF9;
}

.new_item:nth-child(3n) {
	/*margin-right: 0;*/
}

.new_item:hover .scale-img {
	transform: scale(1.1);

}

.new_item:hover .news_messbox {
	filter: brightness(0) invert(1);
}

.news_title {
	font-size: 0.2rem;	
	color: #333;
	padding: 0.23rem 0.26rem 0.33rem 0.26rem;

	border-bottom: 0.01rem solid #E5E5E5;
}

.news_timer {

	font-size: 0.18rem;
	color: #757575;
}

.news_between {
	padding: 0.19rem 0.18rem 0.15rem 0.26rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.news_between span {

	font-size: 0.24rem;
	color: #333333;
}

.news_many {
	width: 0.48rem;
	height: 0.48rem;
	border: 0.01rem solid #C5C5C5;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.news_many>img {
	width: 0.09rem;
	height: 0.16rem;
	display: block;
}
.page_box{
	margin-top:0.13rem !important;
}




/* 新闻详情 */
.detail_bread {
    display: flex;
    align-items: center;
    width: 14rem;
    margin: 1.61rem auto 0;
    font-size: 0.16rem;
    color: #333333;
}
.detail_bread a {
    display: block;
    margin: 0 0.05rem;
    font-size: 0.16rem;
    color: #333333;
}

/* 详情 */
.know {
    width: 100%;
}
/* 标题 */
.know .title {
    text-align: center;
    font-size: 0.38rem;
    color: #0769B2;
}
.know .date {
    margin-top: 0.32rem;
    padding-bottom: 0.23rem;
    border-bottom: 0.01rem dashed #D4DEE2;
    text-align: center;
    font-size: 0.14rem;
    color: #6D6D6D;
}
/* 内容 */
.know .content {
    margin-top: 0.5rem;
}
.know .content p {
    font-size: 0.16rem;
    color: #333333;
    line-height: 0.32rem;
	text-indent: 2em;
}
.know .content img {
    max-width: 100%;
    max-height: 100%;
    margin-top: 0.32rem;
	margin-right:auto;
	margin-left:auto;
	margin-bottom:0px;
}
/* 底部导航 */
.know .bot_navs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.63rem;
}
.know .bot_navs .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 0.44rem;
    border-radius: 0.24rem 0.24rem 0.24rem 0.24rem;
    border: 0.01rem solid #0051A0;
    font-size: 0.14rem;
    color: #0051A0;
    transition: all 0.3s;
}
.know .bot_navs .btn.disable:hover{
        background: #c8c8c8;
        border-color: transparent;
        color: #fff;
}
.know .disable:hover{
        background: #c8c8c8;
        border-color: transparent;
        color: #fff;
}
.know .bot_navs .btn.disable{
    background: #c8c8c8;
        border-color: transparent;
        color: #fff;
}

.know .bot_navs .btn.disable img{
        filter: brightness(0) invert(1);
}
.know .bot_navs .btn img {
    height: 0.1rem;
    object-fit: contain;
}
.know .bot_navs .prev img {
    margin-right: 0.33rem;
}
.know .bot_navs .next img {
    margin-left: 0.33rem;
}
/* hover state */
.know .bot_navs .btn:hover {
    background: #0051A0;
    color: white;
}
.know .bot_navs .btn:hover img {
        filter: brightness(0) invert(1);
}
@media (max-width: 1024px) {
    .news_common,
    .detail_bread {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    .new_item {
        width: calc(100% / 2) !important;
        padding: 0 5px;
    }
    .news_title {
        font-size: 14px;
    }
    .detail_bread a,
    .know .date,
    .know .bot_navs .btn {
        font-size: 12px;
    }
}