@charset "UTF-8";

:root {
	--primary-red: #d40902;
	--dark-red: #c8141d;
	--hover-red: #cd2e19;
	--active-bullet-red: #b72323;
	--light-yellow-bg: #ffeac0;
	--lighter-yellow-text: #fff7e0;
	--hover-orange: #fdd3a9;
	--border-light-red: #e69a7e;
	--text-gray-light: #888;
	--text-gray-medium: #666;
	--text-gray-dark: #333;
	--border-gray: #e0e0e0;
	--page-bg: #f8f8f8;
	--white: #fff;
	--container-width: 1400px;
}

/*======Reset style======*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

em,
i {
	font-style: normal;
}

li {
	list-style: none;
}

img {
	border: 0;
	vertical-align: middle;
}

html,
body {
	margin: 0;
	padding: 0;
	font: 18px/28px Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
	color: var(--text-gray-light);
	min-width: var(--container-width);
	background: var(--page-bg);
}

a {
	text-decoration: none;
	color: var(--text-gray-dark);
}

a:hover {
	color: var(--hover-red);
}

.clear_both:after {
	content: " ";
	clear: both;
	display: block;
	overflow: hidden;
}

.contentbox {
	width: var(--container-width);
	margin: 0 auto;
}

/* ===banner=== */
.banner_row {
	height: 968px;
	overflow: hidden;
	background: url(../images/banner-img.jpg) center no-repeat;
}

.banner_row .contentbox {
	position: relative;
	height: 968px;
}

/* 通用隐藏初始状态 */
.head_title1,
.head_title2,
.head_title3 {
	opacity: 0;
	position: absolute;
}

/* === 框2内容：第一个显示，从中心点以小变大 === */
.head_title2 {
	width: 1077px;
	height: auto;
	top: 46.8%;
	left: 42%;
	transform: translate(-50%, -50%) scale(0);
	z-index: 10;
	animation: zoomIn 0.8s ease-out forwards;
	animation-delay: 0s;
	/* 第一个显示 */
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.2);
	}

	70% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.1);
	}

	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

/* === 框1内容：第二个显示，渐显效果 === */
.head_title1 {
	top: 66px;
	left: 18%;
	transform: translateX(-50%);
	text-align: center;
	z-index: 5;
	animation: fadeIn 0.8s ease-out forwards;
	animation-delay: 0.8s;
	/* 框2动画结束后显示 */
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* === 框3内容：最后显示，从下往上出现 === */
.head_title3 {
	bottom: 11.7%;
	left: 50%;
	transform: translateX(-50%) translateY(100px);
	text-align: center;
	z-index: 5;
	animation: slideUp 0.6s ease-out forwards;
	animation-delay: 1.2s;
	/* 框1动画结束后显示 */
}

@keyframes slideUp {
	0% {
		opacity: 0;
		transform: translateX(-50%) translateY(100px);
	}

	100% {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

.bg1 {
	background-color: var(--white);
	overflow: hidden;
}

/* ===头条=== */
.headline_row {
	margin: 58px auto 55px;
}

.headline_row h2 {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	line-height: 1.4;
	margin: 0 18px;
}

.headline_row h2 a {
	color: var(--dark-red);
}

.headline_row p {
	color: var(--text-gray-medium);
	text-indent: 2em;
	line-height: 34px;
	padding-top: 10px;
}

.headline_row p a {
	color: var(--primary-red);
}

.headline_row p a:hover {
	color: var(--primary-red);
	text-decoration: underline;
}

/* ===首屏=== */
.first_row {
	margin-bottom: 70px;
	display: flex;
	justify-content: space-between;
}

/* ===首屏-轮播图=== */
.first_focus_swiper {
	width: 760px;
	height: 428px;
}

.first_focus_swiper .swiper-slide {
	width: 760px;
	height: 428px;
	position: relative;
	background: var(--white);
	overflow: hidden;
}

.first_focus_swiper .swiper-slide h4 {
	position: absolute;
	bottom: 30px;
	left: 0;
	line-height: 100%;
	width: 600px;
	margin-left: 20px;
	z-index: 111;
	font-size: 20px;
	color: var(--white);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.first_focus_swiper .swiper-slide a {
	color: var(--white);
}

.first_focus_swiper .swiper-slide a::before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 85px;
	left: 0;
	bottom: 0;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.first_focus_swiper .swiper-pagination {
	display: flex;
	justify-content: right;
	width: 100%;
	padding-right: 15px;
	margin-bottom: 25px;
}

.first_focus_swiper .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white);
	opacity: .58;
}

.first_focus_swiper .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--active-bullet-red);
	opacity: 1;
}

/* ===两会动态=== */
.news_row1 {
	width: 640px;
	height: 428px;
	background-color: var(--primary-red);
}

.title1 {
	margin: 24px 28px 25px 42px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.title1 h3 {
	flex: 1;
	height: 35px;
	font-size: 0;
	background: url(../images/lhdt_title.png) left center no-repeat;
}

.title1 a {
	cursor: pointer;
	color: var(--lighter-yellow-text);
}

.title1 a:hover {
	text-decoration: underline;
}

.news_row1 ul li {
	padding: 0 28px 0 42px;
	height: 86px;
	display: flex;
	align-items: center;
	border-top: 1px solid var(--border-light-red);
}

.news_row1 ul li:hover {
	font-weight: 700;
	background-color: var(--hover-orange);
}

.news_row1 ul li a {
	color: var(--hover-orange);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news_row1 ul li:hover a {
	color: var(--primary-red);
}

/*===特别推荐===*/
.tbtj_row {
	width: 100%;
	height: 398px;
	background: var(--white);
}

.tbtj_title {
	position: relative;
	top: -20px;
}

.tbtj_swiper_wrapper {
	position: relative;
	width: var(--container-width);
	margin: 10px auto 0;
}

.tbtj_swiper {
	width: 100%;
}

.tbtj_swiper .swiper-slide {
	margin: 0 24px 0 0;
}

.tbtj_swiper .swiper-slide .pic_list1_row {
	width: 332px;
	height: 220px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.tbtj_swiper .swiper-slide h4 {
	margin-top: 12px;
	width: 100%;
	font-weight: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.tbtj_swiper_wrapper .swiper-button-next:after,
.tbtj_swiper_wrapper .swiper-button-prev:after {
	display: none;
}

.tbtj_swiper_wrapper .swiper-button-prev,
.tbtj_swiper_wrapper .swiper-button-next {
	position: absolute;
	top: 109px;
	width: 34px;
	height: 51px;
	z-index: 10;
}

.tbtj_swiper_wrapper .swiper-button-prev {
	left: -34px;
	background: url("../images/prev_icon1.png") left center no-repeat;
}

.tbtj_swiper_wrapper .swiper-button-next {
	right: -34px;
	background: url("../images/next_icon1.png") right center no-repeat;
}

/* ===报告解读=== */
.main_title {
	width: var(--container-width);
	height: 122px;
	margin: 80px auto 35px;
	text-align: center;
}

.report_row {
	margin: 0 auto 22px;
	overflow: hidden;
}

.report_row_left {
	float: left;
	width: 520px;
	height: 672px;
	padding: 28px 0 0 30px;
	background: url("../images/report_bg.png") no-repeat;
}

/* ===轮播图=== */
.report_focus_swiper {
	width: 460px;
	height: 614px;
	margin: 0;
}

.report_focus_swiper .swiper-slide {
	width: 460px;
	height: 614px;
	position: relative;
	background: var(--white);
	overflow: hidden;
}

.report_focus_swiper .swiper-slide h4 {
	position: absolute;
	height: 30px;
	bottom: 43px;
	left: 0;
	line-height: 100%;
	width: 93%;
	margin-left: 20px;
	z-index: 111;
	font-size: 18px;
	color: var(--white);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.report_focus_swiper .swiper-slide a {
	color: var(--white);
}

.report_focus_swiper .swiper-slide a::before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 85px;
	left: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

.report_focus_swiper .swiper-pagination {
	display: flex;
	justify-content: right;
	width: 100%;
	padding-right: 16px;
	margin-bottom: 10px;
}

.report_focus_swiper .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white);
	opacity: .58;
}

.report_focus_swiper .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--active-bullet-red);
	opacity: 1;
}

.report_row_right {
	float: right;
	width: 850px;
	height: 644px;
	margin-top: 28px;
	overflow-y: auto;
	overflow-x: hidden;
	background-color: var(--white);
}

.report_row_right::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 16px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 1px;
}

.report_row_right::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	border-radius: 8px;
	background: #c1c1c1;
}

.report_row_right::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	background: var(--white);
}

.report_news_list {
	width: 740px;
	margin: 10px 80px 0 30px;
}

.report_news_list li {
	padding: 24px 0;
	border-bottom: 1px solid var(--border-gray);
}

.report_news_list li:last-of-type {
	border-bottom: none;
}

.report_news_list li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.report_news_list .pic_list1_row {
	width: 278px;
	height: 156px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.report_news_list .pic_list1_row img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.report_news_list h4 {
	flex: 1;
	margin-left: 38px;
	font-weight: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

/* ===视频播报=== */
.video_row {
	overflow: hidden;
}

.video_main_row {
	padding-top: 12px;
	margin: 0 auto 28px;
}

.talking_tabs {
	display: flex;
	justify-content: left;
	text-align: center;
	height: 64px;
}

.talking_tabs .tab_link {
	display: inline-block;
	margin: 0 10px 0 0;
	min-width: 300px;
	line-height: 64px;
	font-size: 24px;
	color: var(--primary-red);
	cursor: pointer;
	background: var(--light-yellow-bg);
	border-radius: 0 28px 0 0;
}

.talking_tabs a.active {
	color: #fff3e9;
	background: var(--primary-red);
}

.video_row_in {
	width: var(--container-width);
	margin: 35px auto 0;
	height: 588px;
	overflow: hidden;
	position: relative;
	display: none;
}

.video_row_in.active {
	display: block;
}

.video_nav_father {
	position: absolute;
	z-index: 1;
	right: 0;
	top: 28px;
	width: 324px;
	height: 532px;
	overflow: hidden;
}

.video_nav {
	position: absolute;
	width: 100%;
	top: 0;
}

.video_nav li {
	height: 256px;
	padding: 22px 26px;
	margin-bottom: 20px;
	zoom: 1;
	cursor: pointer;
	transition: all 0.7s;
	background-color: var(--white);
}

.video_nav li .pic_list_row {
	width: 272px;
	height: 153px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.video_nav li .pic_list_row img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video_nav li h4 {
	padding: 6px;
	font-weight: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.video_bottom li.list_active {
	transition: all 0.7s;
}

.video_nav li i {
	display: none;
}

.video_nav_content {
	float: left;
	width: 1044px;
	height: 588px;
	z-index: 2;
}

.video_nav_content li {
	display: none;
	width: 100%;
	height: 588px;
}

.focus_pic_left {
	position: relative;
	width: 1044px;
	height: 588px;
	overflow: hidden;
	transition: all 0.7s;
}

.focus_pic_left h4 {
	position: absolute;
	height: 72px;
	bottom: 0;
	left: 0;
	line-height: 72px;
	width: 100%;
	padding: 0 26px 0 34px;
	z-index: 111;
	font-size: 18px;
	font-weight: normal;
	color: var(--white);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: rgb(0, 0, 0, .53);
}

.focus_pic_left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: slip_in 1s;
}

.focus_pic_left a::after {
	content: "";
	display: block;
	width: 90px;
	height: 90px;
	background: url(../images/video_icon.png) center no-repeat;
	position: absolute;
	left: 478px;
	top: 250px;
	z-index: 2;
}

.video_top,
.video_bottom {
	width: 324px;
	height: 28px;
	display: block;
	z-index: 201;
	position: absolute;
	right: 0;
}

.video_top {
	top: 0;
	background: url("../images/arrow-top.png") center top no-repeat;
}

.video_bottom {
	bottom: 0;
	background: url("../images/arrow-down.png") center bottom no-repeat;
}

.video_top a,
.video_bottom a {
	display: block;
	width: 100%;
	height: 28px;
}

/* ===两会好声音=== */
.passage_row {
	padding-top: 10px;
}

/* ===厅长通道=== */
/* 通道切换选项卡样式 */
.channel_tabs,
.people_tabs {
	display: flex;
	justify-content: left;
	text-align: center;
	height: 64px;
	margin-bottom: 40px;
}

.tab_btn,
.people_tab_btn {
	display: inline-block;
	margin: 0 10px 0 0;
	min-width: 250px;
	line-height: 64px;
	font-size: 24px;
	color: var(--primary-red);
	cursor: pointer;
	background: var(--light-yellow-bg);
	border-radius: 0 28px 0 0;
	transition: all 0.3s ease;
}

.tab_btn.active,
.people_tab_btn.active {
	color: #ffd496;
	background-color: var(--dark-red);
}

.tab_btn:hover:not(.active),
.people_tab_btn:hover:not(.active) {
	color: #ffd496;
	background-color: var(--dark-red);
}

/* 通道内容容器 */
.channel_content {
	position: relative;
	display: none;
	width: var(--container-width);
	margin: 0 auto;
}

.channel_content.active {
	display: block;
}

/* Swiper轮播样式 */
.channel_swiper {
	width: 100%;
	position: relative;
}

.channel_swiper .swiper-slide {
	width: 332px;
	height: 524px;
	margin: 0 24px 0 0;
	background: var(--white);
	overflow: hidden;
	transition: transform 0.3s ease;
}

.channel_swiper .swiper-slide:hover {
	transform: translateY(-5px);
}

.channel_swiper .swiper-slide .passage_pic {
	width: 332px;
	height: 250px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.channel_swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.channel_swiper .swiper-slide:hover img {
	transform: scale(1.05);
}

.channel_swiper .swiper-slide p {
	max-height:100px;
	line-height: 1.5;
	font-size: 24px;
	color: var(--primary-red);
	padding: 28px 16px 0;
	margin-bottom: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box; 
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.channel_swiper .swiper-slide span {
	color: var(--text-gray-dark);
	display: block;
	padding: 0 18px;
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

/* 导航按钮样式 */
.channel_content .swiper-button-next:after,
.channel_content .swiper-button-prev:after {
	display: none;
}

.passage-swiper-button-prev,
.passage-swiper-button-next {
	position: absolute;
	top: 255px;
	width: 39px;
	height: 54px;
	z-index: 100;
	cursor: pointer;
}

.passage-swiper-button-prev {
	left: -39px;
	background: url("../images/passage_prev.png") left center no-repeat;
}

.passage-swiper-button-next {
	right: -39px;
	background: url("../images/passage_next.png") right center no-repeat;
}

.passage-swiper-button-prev:hover,
.passage-swiper-button-next:hover {
	opacity: .5;
}

/* ===两会今夜-两会之声=== */
.sound_bottom {
	margin: 88px auto 96px;
	overflow: hidden;
}

.sound_main_title2 {
	height: 35px;
	margin-bottom: 28px;
}

.sound_bottom .contentbox {
	display: flex;
	justify-content: space-between;
}

.lhjy_news_list {
	width: 688px;
	height: 500px;
	padding: 22px 17px 30px 24px;
	background-color: var(--white);
}

.lhjy_news_list dt {
	display: flex;
	justify-content: space-between;
	padding-bottom: 36px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--border-gray);
}

.lhjy_news_list .pic_list_row {
	margin-right: 40px;
	width: 266px;
	height: 266px;
	display: flex;
	align-items: center;
}

.lhjy_news_list .pic_list_row img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lhjy_news_list dt span {
	display: block;
	flex: 1;
}

.lhjy_news_list dt h4 {
	padding-top: 10px;
	font-size: 24px;
	font-weight: normal;
	line-height: 36px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.lhjy_news_list dt p {
	margin-top: 60px;
	font-size: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.lhjy_news_list dt p a {
	color: var(--hover-red);
}

.lhjy_news_list dt p a:hover {
	text-decoration: underline;
}

.lhjy_news_list dd {
	display: flex;
	align-items: center;
	line-height: 40px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lhjy_news_list dd::before {
	display: inline-block;
	content: '';
	width: 4px;
	height: 4px;
	background-color: #999;
	margin-right: 12px;
}

.lhzs_news_list {
	width: 688px;
}

/* ===轮播图=== */
.lhzs_focus_swiper,
.zxc_focus_swiper {
	width: 688px;
	height: 194px;
	padding: 22px 46px 22px 24px;
	background-color: var(--white);
}

.lhzs_focus_swiper {
	margin-bottom: 49px;
}

.lhzs_news_list .swiper-slide {
	height: 194px;
	background-color: var(--white);
}

.lhzs_news_list .swiper-slide a {
	display: flex;
	justify-content: space-between;
	position: relative;
}

.lhzs_news_list .swiper-slide .pic_list_row {
	margin-right: 37px;
	width: 150px;
	height: 150px;
	display: flex;
	align-items: center;
}

.lhzs_news_list .swiper-slide h4 {
	flex: 1;
	padding-top: 10px;
	font-size: 24px;
	font-weight: 400;
	line-height: 36px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.lhzs_news_list .swiper-pagination {
	display: flex;
	justify-content: right;
	width: 100%;
	padding-right: 42px;
	margin-bottom: 25px;
}

.lhzs_news_list .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #c6c3c1;
	opacity: 1;
}

.lhzs_news_list .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--primary-red);
	opacity: 1;
}

/* ===人民的代表=== */
.people_row {
	position: relative;
	width: var(--container-width);
	margin: 0 auto 20px;
}

.people_tabs {
	margin-bottom: 0;
}

/* 内容容器 */
.people_content {
	display: none;
	position: relative;
	width: var(--container-width);
	height: 390px;
	margin-top: 12px;
	background-color: var(--white);
}

.people_content.active {
	display: block;
}

/* Swiper轮播样式 */
.people_swiper {
	width: 1160px;
	margin: 0 120px 0 136px;
	overflow: hidden;
}

.people_swiper .swiper-slide {
	padding-top: 40px;	
	height: auto;
	transition: all 0.3s ease;
}

.people_swiper .swiper-slide a {
	display: block;
	width: 240px;
	text-align: center;
}

.people_swiper .swiper-slide:hover {
	transform: translateY(-5px);
}

.people_swiper .swiper-slide .people_pic {
	width: 220px;
	height: 220px;
	padding: 15px;
	margin: 0 auto;
	border-radius: 50%;
	border: 1px solid #e2ac59;
	background: var(--white);
	overflow: hidden;
}

.people_swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	border-radius: 50%;
}

.people_swiper .swiper-slide:hover img {
	transform: scale(1.05);
}

.people_swiper .swiper-slide p {
	display: none;
	position: relative;
	top: -30px;
	right: -55px;
	z-index: 20;
	font-size: 18px;
	font-weight: bold;
	line-height: 40px;
	text-align: center;
	color: var(--white);
	background: url("../images/title_bg.png") center no-repeat;
}

.people_swiper .swiper-slide span {
	margin-top: 22px;
	display: block;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

/* 导航按钮样式 */
.people_content .swiper-button-next:after,
.people_content .swiper-button-prev:after {
	display: none;
}

.people-swiper-button-next,
.people-swiper-button-prev {
	position: absolute;
	top: 160px;
	width: 42px;
	height: 42px;
	z-index: 100;
	cursor: pointer;
}

.people-swiper-button-prev {
	left: 30px;
	background: url("../images/prev_icon2.png") left center no-repeat;
}

.people-swiper-button-next {
	right: 30px;
	background: url("../images/next_icon2.png") right center no-repeat;
}

.people-swiper-button-next:hover,
.people-swiper-button-prev:hover {
	opacity: .5;
}

/* ===融媒策划=== */
.media_content {
	position: relative;
	width: var(--container-width);
	padding-top: 8px;
	margin: 0 auto 28px;
}

/* Swiper轮播样式 */
.media_swiper {
	width: 100%;
	height: 591px;
}

.media_swiper .swiper-slide {
	transition: all 0.3s ease;
}

.media_swiper .swiper-slide:hover {
	transform: translateY(-5px);
}

.media_swiper .swiper-slide .pic_list_row {
	width: 320px;
	height: 570px;
	overflow: hidden;
}

.media_swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	min-height: 570px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.media_swiper .swiper-slide:hover img {
	transform: scale(1.05);
}

.media_swiper .swiper-slide h4 {
	display: flex;
	align-items: center;
	position: relative;
	width: 316px;
	height: 88px;
	padding: 15px 25px 0 45px;
	top: -68px;
	margin-left: 19px;
	z-index: 20;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	background: url("../images/title_bg2.png") right center no-repeat;
}

.media_swiper .swiper-slide h4 a {
	color: var(--primary-red);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

/* 导航按钮样式 */
.media_content .swiper-button-next:after,
.media_content .swiper-button-prev:after {
	display: none;
}

.media_content .swiper-button-prev,
.media_content .swiper-button-next {
	position: absolute;
	top: 255px;
	width: 60px;
	height: 60px;
	z-index: 100;
	cursor: pointer;
}

.media_content .swiper-button-prev {
	left: -60px;
	background: url("../images/prev_icon3.png") left center no-repeat;
}

.media_content .swiper-button-next {
	right: -60px;
	background: url("../images/next_icon3.png") right center no-repeat;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	opacity: .5;
}

/* ===两会观察=== */
.survey_row {
	overflow: hidden;
}

.survey_news_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 10px;
	overflow: hidden;
}

.survey_news_list li {
	width: 680px;
	height: 184px;
	margin: 0 0 40px;
	padding: 35px 0 0 32px;
	position: relative;
	background: var(--white);
}

.survey_news_list h4 {
	color: var(--text-gray-dark);
	max-width: 624px;
	font-size: 24px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.survey_news_list p {
	margin-top: 18px;
	max-width: 624px;
	font-size: 16px;
	line-height: 30px;
	color: var(--text-gray-light);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.survey_news_list li .more3 {
	display: inline-block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 114px;
	padding-right: 18px;
	height: 36px;
	font-size: 16px;
	line-height: 36px;
	text-align: right;
	color: #fff3e9;
	background: url("../images/title_more.png") no-repeat;
}

.survey_news_list li .more3:hover {
	opacity: .8;
}

/* ===精彩瞬间=== */
.pic_row {
	position: relative;
	padding-top: 8px;
	margin: 0 auto;
	overflow: hidden;
}

.moment_swiper {
	width: 100%;
	height: 789px;
	overflow: hidden;
}

.moment_swiper .swiper-slide {
	width: var(--container-width) !important;
	height: 789px;
	transform: scale(0.9);
	transition: all 0.3s ease;
	background-color: #000;
}

.moment_swiper .swiper-slide-prev,
.moment_swiper .swiper-slide-next {
	transform: scale(1) translateX(0);
}

.moment_swiper .swiper-slide-prev {
	transform: scale(1) translateX(40%);
}

.moment_swiper .swiper-slide-next {
	transform: scale(1) translateX(-40%);
}

.moment_swiper .swiper-slide-active {
	transform: scale(1);
	z-index: 10;
}

.moment_swiper .image-container {
	height: 789px;
	overflow: hidden;
}

.moment_swiper .image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.moment_swiper .swiper-slide-active .image-container img {
	transform: scale(1.05);
}

.moment_swiper .text-container {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 100;
	width: 100%;
	height: 165px;
	box-sizing: border-box;
	padding: 58px 20px 20px;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.moment_swiper .text-container h4 {
	font-size: 22px;
	font-weight: 400;
	line-height: 100%;
	color: var(--white);
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.moment_swiper .text-container p {
	margin-top: 10px;
	font-size: 16px;
	color: #e4e4e4;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.moment_swiper .swiper-slide-prev .image-container,
.moment_swiper .swiper-slide-next .image-container {
	opacity: 0.5;
}

.moment_swiper .swiper-slide-prev .text-container,
.moment_swiper .swiper-slide-next .text-container {
	display: none;
}

/* 导航按钮样式 */
.pic_nav_wrapper {
	width: var(--container-width);
	height: 74px;
	margin: 0 auto;
	position: relative;
	z-index: 100;
	top: -387px;
}

.pic_row .swiper-button-next,
.pic_row .swiper-button-prev {
	position: absolute;
	width: 60px;
	height: 74px;
	top: 0;
	margin-top: 0;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.pic_row .swiper-button-next:hover,
.pic_row .swiper-button-prev:hover {
	opacity: 1;
}

.pic_row .swiper-button-next:after,
.pic_row .swiper-button-prev:after {
	display: none;
}

.pic_row .swiper-button-next {
	right: 0;
	background: url("../images/jcsj-next.png") no-repeat;
}

.pic_row .swiper-button-prev {
	left: 0;
	background: url("../images/jcsj-prev.png") no-repeat;
}