@charset "UTF-8";

body {
	background-color: #f7f7f7;
}

/* ======当前位置====== */
.mod_tab {
	height: 24px;
	display: flex;
	align-items: center;
	font-size: 16px;
}

.mod_tab a,
.mod_tab span {
	padding: 0 .1rem;
	color: #888;
}

.mod_tab a>span {
	padding: 0;
}

/* ======新闻列表====== */
.page_news_row {
	display: flex;
	justify-content: space-between;
	padding: 40px 0 30px;
	overflow: hidden;
}

/* ===菜单=== */
.page_news_row .news_menu {
	flex: 0 0 306px;
	margin: 0 64px 0 0;
	overflow: hidden;
}

.news_menu h3 {
	cursor: pointer;
	min-height: 100px;
	font-size: 24px;
	font-weight: 400;
	margin-bottom: .2rem;
	background-color: #fff;
	transition: min-height 0.4s ease;
}

.news_menu h3>a {
	color: #222;
	display: flex;
	width: 100%;
	line-height: 100px;
	padding-left: 82px;
	transition: color 0.3s ease;
}

.news_menu h3:not(.news_menu_subclass)>a:hover {
	color: #fff;
	background-color: #3f7fe9;
}

.news_menu h3.news_menu_subclass {
	background-image: url(../img/20260107_institution_icon.png);
	background-position: 30px 35px;
	background-repeat: no-repeat;
	background-size: .32rem auto;
}

.news_menu h3.news_menu_subclass.active {
	background-image: url(../img/20260107_institution_icon_white.png);
	background-size: .32rem auto;
	background-color: #3f7fe9;
}

.news_menu h3.guidance_menu {
	background-image: url(../img/20260107_guidance_icon.png);
}

.news_menu h3.guidance_menu.active {
	background-image: url(../img/20260107_guidance_icon_white.png);
}

.news_menu h3.news_menu_subclass>a {
	background-image: url(../img/20260107_subclass_icon.png);
	background-position: 242px 50%;
	background-repeat: no-repeat;
}

.news_menu h3.news_menu_subclass.active>a {
	color: #fff;
	background-image: url(../img/20260107_subclass_icon_white.png);
}

.news_menu_subclass .sub_menu {
	width: 100%;
	padding: 20px;
	background-color: #fff;
	display: none;
}

.news_menu_subclass.active .sub_menu {
	display: block;
}

.news_menu_subclass .sub_menu li {
	color: #222;
	margin-bottom: .2rem;
	padding-left: .41rem;
	border: solid 1px #cfe2fc;
	background-color: #fff;
}

.news_menu_subclass .sub_menu li:last-child {
	margin-bottom: 0;
}

.news_menu_subclass .sub_menu li a {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	min-height: 46px;
	font-size: 18px;
	color: #222;
	padding: 10px 38px 10px 0;
}

.news_menu_subclass .sub_menu li:hover,
.news_menu_subclass .sub_menu li.active {
	background: url(../img/20260107_list_icon.png) 228px 50% no-repeat #f0f7ff;
	border: solid 1px #3f7fe9;
}

.news_menu h3:not(.news_menu_subclass).active>a {
	color: #fff;
	background-color: #3f7fe9;
}

/* ===文字列表=== */
.con_news_row1 {
	flex: 1 1 500px;
	min-width: 0;
	padding: 20px 50px 50px;
	box-sizing: border-box;
	background-color: #fff;
}

.page_news_row .news_list1 {
	overflow: hidden;
}

.page_news_row .news_list1 li {
	border-bottom: 1px solid #e5e5e5;
}

.page_news_row .news_list1 li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	overflow: hidden;
}

.page_news_row .news_list1 li h4 {
	flex: 1;
	font-size: 18px;
	font-weight: 400;
	margin-right: 40px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.page_news_row .news_list1 li time {
	width: 90px;
	text-align: right;
	color: #888;
}

/* ===图片列表=== */
.page_news_row .news_list2 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 10px 10px;
	overflow: hidden;
}

.page_news_row .news_list2 li {
	width: calc(33.33333% - 30.6px);
	margin: .4rem 0 0;
	height: 100%;
	overflow: hidden;
}

.page_news_row .news_list2 li:nth-of-type(3n) {
	margin-right: 0;
}

.page_news_row .news_list2 li .pic_row {
	position: relative;
	width: 100%;
	height: 220px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.page_news_row .news_list2 li .pic_row img {
	width: 100%;
	height: auto;
	/* object-fit: cover; */
}

.page_news_row .video_list .pic_row::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	display: block;
	width: 100%;
	height: 220px;
	background-color: rgba(0, 0, 0, 0.2);
	background-image: url(../img/20260107_video_icon.png);
	background-repeat: no-repeat;
	background-position: 12px 178px;
	background-size: 30px;
}

.page_news_row .video_list a:hover .pic_row::before {
	background-color: rgba(0, 0, 0, 0);
}

.page_news_row .news_list2 li a h4 {
	color: #333;
}

.page_news_row .news_list2 li h4 {
	margin-top: 22px;
	padding: 0 10px;
	font-size: 18px;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/*======翻页======*/
/*.paging_wrap {
        margin: .5rem auto 0;
        text-align: center;
}

.paging {
        display: inline-block;
}

.paging li {
        display: inline-block;
        margin: 0 5px;
        color: #555;
        background-color: #f8f8f8;
}

.paging li a,
.paging li span {
        display: inline-block;
        padding: 10px 18px;
        font-size: 14px;
        line-height: 1.42857143;
        color: #555;
}

.paging .page_index .current {
        color: #fff;
        background-color: #3f7fe9;
}

.paging .home_page,
.paging .end_page,
.paging .prev_page {
        background-color: #fff;
        border: solid 1px #e5e5e5;
}

.paging .page_jump {
        margin-left: 5px;
}

.paging .page_jump input {
        width: 50px;
        padding: 5px;
        border: 1px solid #e5e5e5;
        margin: 0 5px;
}

.paging .page_jump a {
        margin-left: 6px;
}

.paging .total_count,
.paging .page_jump {
        display: none;
}

@media screen and (max-width: 1200px) {
        .paging li {
                margin: .1rem;
        }

        .paging li a,
        .paging li span {
                font-size: .28rem;
                padding: .1rem .22rem;
        }
}*/

/* ======新闻详情====== */
.ny_news_show {
	margin-top: .4rem;
	padding: 46px 60px 0;
	background-color: #fff;
	overflow: hidden;
}

.ny_news_show_tit {
	text-align: center;
	padding: 10px 0 0;
}

.ny_news_show_tit h3 {
	font-size: 34px;
	line-height: 1.5;
	color: #111;
}

.ny_news_show_tit_con {
	margin-top: 42px;
	padding-bottom: 40px;
	line-height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid #e5e5e5;
}

.ny_news_show_tit span,
.ny_news_show_tit time {
	color: #666;
	padding: 0 13px;
}

.ny_news_show_tit .detail_font {
	display: flex;
	align-items: center;
	margin-left: 12px;
	width: 146px;
	height: 32px;
	padding-left: 42px;
	border-radius: 16px;
	border: solid 1px #e5e5e5;
	background: url(../img/20260107_font_size_icon.png) 3px center no-repeat;
}

.ny_news_show_tit .detail_font a {
	padding: 0 7px;
	color: #666;
}

.ny_news_show_tit_con2 {
	margin-top: .42rem;
	padding: 16px 22px;
	line-height: 36px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border: 1px solid #e5e5e5;
}

.ny_news_show_tit_con2 li {
	width: 50%;
	text-align: left;
}

.ny_news_show_con {
	padding: .4rem 0 .36rem;
	overflow: hidden;
}

.con_news_row1 .ny_news_show_con {
	padding-bottom: 0;
}

.ny_news_show_con p,
.ny_news_show_con div,
.ny_news_show_con span {
	/* width: 100%; */
	font-size: 18px !important;
	line-height: 36px;
	color: #333;
	/*text-indent: 2em;
	text-align: justify;*/
	overflow: hidden;
	transition: font-size 0.3s ease;
	font-family: 'Microsoft YaHei';
}

.empty-p {
	display: none;
	/* 或者其它样式，比如设置高度、背景色等 */
}

.ny_news_show_con img,
.ny_news_show_con video {
	display: block;
	max-width: 750px;
	height: auto;
	margin: 15px auto;
}

.ny_news_show_con table,
.con_news_row1 table {
	border-collapse: collapse;
	border: 1;
}

.ny_news_show_con table td,
.con_news_row1 table td {
	padding: 10px;
}

.con_news_row1 td,
.con_news_row1 th {
		word-break: break-word;
		white-space: normal;
}

.ny_news_show_con .article_footer_info {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 .2rem;
	margin-top: .3rem;
	background: #f8f8f8;
}

.con_news_row1 .ny_news_show_con .article_footer_info {
	margin-bottom: 0;
}

.ny_news_show_con .article_footer_info div,
.ny_news_show_con .article_footer_info span {
	margin: 10px 0;
	text-indent: 0;
	font-size: 16px;
	color: #666;
}

.article_footer_info span {
	flex: 1;
}

.article_footer_info span a {
	color: #1f66ca;
}

.article_footer_info .share_row {
	flex: 0 0 160px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.article_footer_info .share_row a {
	color: #1f66ca;
	margin-left: 10px;
}

.article_footer_info .share_row img {
	width: 32px;
	height: auto;
}

/* ======机构领导====== */
.page_news_row .news_list3 {
	display: flex;
	flex-wrap: wrap;
	padding: .3rem 0 .2rem;
	overflow: hidden;
}

.page_news_row .news_list3 li {
	width: 50%;
	text-align: center;
}

.page_news_row .news_list3 li:first-of-type {
	width: 100%;
}

.page_news_row .news_list3 .photo_row {
	width: 180px;
	height: 225px;
	margin: 30px auto 0;
	overflow: hidden;
}

.page_news_row .news_list3 .photo_row img {
	max-width: 180px;
	height: auto;
	object-fit: cover;
}

.page_news_row .news_list3 h4 {
	font-size: 20px;
	font-weight: 400;
	line-height: 100%;
	color: #222;
	padding: 20px 0;
}

.ny_news_show_con .leader_row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: .2rem 0;
}

.ny_news_show_con .leader_row dt {
	width: 180px;
	height: 225px;
	margin: 0 30px 0 0;
	overflow: hidden;
}

.ny_news_show_con .leader_row dt img {
	margin: 0;
	max-width: 180px;
	height: auto;
	object-fit: cover;
}

.ny_news_show_con .leader_row dd:nth-of-type(1) {
	width: 1080px;
	padding: .3rem .2rem 0 0;
	color: #222;
}

.ny_news_show_con .leader_row dd h4 {
	font-size: 24px;
	line-height: 100%;
}

.ny_news_show_con .leader_row dd h5 {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8;
	margin: .28rem 0 .32rem;
}

.ny_news_show_con .leader_row dd:last-of-type {
	width: 100%;
	min-height: 68px;
	margin-top: 43px;
	display: flex;
	align-items: center;
	padding: 20px;
	color: #444;
	line-height: 1.8;
	overflow: hidden;
	background-color: #f8f8f8;
}

.ny_news_show_con .leader_row dd:last-of-type strong {
	flex: 0 0 88px;
	align-items: start;
}


@media screen and (max-width: 1200px) {
	.mod_tab {
		font-size: .28rem;
	}

	.page_news_row {
		flex-direction: column;
		/* 小屏幕改为垂直布局 */
		padding: .4rem .3rem .3rem;
	}

	.page_news_row .news_menu {
		flex: 0 0 auto;
		margin: 0 0 .3rem 0;
		width: 100%;
	}

	.news_menu h3 {
		min-height: 1rem;
		font-size: .36rem;
	}

	.news_menu h3>a {
		line-height: 1rem;
		padding-left: .82rem;
	}

	.news_menu h3.news_menu_subclass {
		min-height: 1rem !important;
		background-position: .3rem .35rem;
		background-size: .32rem auto;
	}

	.news_menu h3.news_menu_subclass>a {
		background-position: 94.5% 50%;
		background-size: .24rem auto;
	}

	.news_menu_subclass .sub_menu {
		padding: .2rem .3rem;
	}

	.news_menu_subclass .sub_menu li a {
		font-size: .30rem;
		min-height: .6rem;
		padding: .1rem .38rem .1rem 0;
	}

	.news_menu_subclass .sub_menu li:hover,
	.news_menu_subclass .sub_menu li.active {
		background-position: 94.5% 50%;
		background-size: .28rem;
	}

	.con_news_row1 {
		flex: 1 1 auto;
		width: 100%;
		padding: .2rem .3rem .5rem;
	}

	.page_news_row .news_list1 li a {
		height: 1rem;
	}

	.page_news_row .news_list1 li h4 {
		font-size: .32rem;
		margin-right: 0;
	}

	.page_news_row .news_list1 li time {
		display: none;
	}

	.page_news_row .news_list2 {
		padding: 0 0 .1rem;
	}

	.page_news_row .news_list2 li {
		width: 100%;
	}

	.page_news_row .news_list2 li h4 {
		margin-top: .22rem;
		padding: 0 .1rem;
		font-size: .32rem;
		text-align: left;
		white-space: normal;
	}

	.ny_news_show {
		padding: .46rem .3rem 0;
	}

	.ny_news_show_tit {
		padding: .1rem 0 0;
	}

	.ny_news_show_tit h3 {
		font-size: .42rem;
	}

	.ny_news_show_tit_con {
		margin-top: .32rem;
		padding-bottom: .3rem;
		font-size: .28rem;
		line-height: 1.8;
		flex-wrap: wrap;
	}

	.ny_news_show_tit .detail_font {
		display: none;
	}

	.ny_news_show_tit_con2 {
		padding: .16rem .2rem;
		line-height: 1.8;
	}

	.ny_news_show_tit_con2 li {
		width: 100%;
	}

	.ny_news_show_con p,
	.ny_news_show_con div,
	.ny_news_show_con span {
		font-size: .32rem;
		line-height: 1.8;
	}

	.ny_news_show_con img,
	.ny_news_show_con video {
		max-width: 100%;
		height: auto !important;
		margin: .15rem auto;
	}

	.ny_news_show_con table,
	.con_news_row1 table.bszn-table {
		max-width: 6.89rem !important;
		margin: 0 auto !important;
	}

	.article_footer_info .share_row {
		display: none;
	}

	.ny_news_show_con .article_footer_info span {
		font-size: .28rem;
		margin: .2rem 0;
	}

	.page_news_row .news_list3 li {
		width: 100%;
	}

	.page_news_row .news_list3 h4 {
		font-size: .36rem;
	}

	.ny_news_show_con .leader_row dt {
		margin: 0 auto;
	}

	.ny_news_show_con .leader_row dd h4 {
		margin-top: .1rem;
		font-size: .40rem;
		text-align: center;
	}

	.ny_news_show_con .leader_row dd h5 {
		font-size: .32rem;
	}

	.ny_news_show_con .leader_row dd:last-of-type {
		margin-top: .28rem;
		flex-wrap: wrap;
		padding: .22rem .3rem;
		font-size: .30rem;
	}

}