﻿/* 头条新闻 */
.i-toutiao{
	text-align: center;
	padding: 18px 0 12px;
	color: #275FAB;
	cursor: pointer;
}
.i-toutiao .h1{
	margin-bottom: 12px;
	font-size: 32px;
	line-height: 36px;
	font-family: 'simsun';
}
.i-toutiao .more-link{
	font-size: 16px;
	line-height: 26px;
	font-weight: normal;
	height: 25px;
}
.i-toutiao .more-link .item{
	padding: 0 10px;
	border-right: solid 1px #275FAB;
}
.i-toutiao .more-link .item:first-child{
	padding-left: 0;
}
.i-toutiao .more-link .item:last-child{
	padding-right: 0;
	border: none;
}
.i-toutiao .line{
	margin-top: 12px;
	
}
.i-toutiao .line .item{
	margin: 0 5px;
	width: 40px;
	height: 4px;
	background-color: #D8D8D8;
}
.i-toutiao .line .item.active{
	background-color: #EA1711;
}
/* 封面新闻 */
.i-fengmian{
	position: relative;
	overflow: hidden;
}
.i-fengmian,
.i-fengmian .img{
	width: 1200px;
	height: 580px;
	object-fit: cover;
}
.i-fengmian-img{
	width: 100%;
	height: 100%;
}
.i-fengmian .title{
	position: absolute;
	left: 40px;
	bottom: 50px;
	width: 750px;
	font-size: 28px;
	line-height: 38px;
	color: #fff;
	text-shadow: 0 0 4px rgba(0, 0, 0, 1);
	text-align: justify;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.i-fengmian .circle{
	position: absolute;
	bottom: 38px;
	right: 38px;
}
.i-fengmian .circle .item{
	position: relative;
	margin-left: 12px;
	width: 20px;
	height: 20px;
	background-color: rgba(255, 255, 255, .8);
	border-radius: 10px;
}
.i-fengmian .circle .item.active{
	background-color: rgba(255, 255, 255, 1);
}
.i-fengmian .circle .item.active::after{
	position: absolute;
	width: 14px;
	height: 14px;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	content: '';
	background-color: #275FAB;
	border-radius: 7px;
}
@media (max-width: 1200px) {
	.i-toutiao{
		min-width: 335px;
		padding: 30px 20px 14px;
	}
	.i-fengmian{
		padding: 0 20px;
		box-sizing: border-box;
	}
	.i-fengmian,
	.i-fengmian .img{
		width: 100%;
	}
	.i-fengmian .title{
		left: 50px;
		bottom: 30px;
	}
}
@media (max-width: 900px) {
	.i-fengmian,
	.i-fengmian .img{
		height: 400px;
	}
	.i-fengmian .title{
		left: 50px;
		bottom: 30px;
		width: 540px;
		font-size: 24px;
		line-height: 34px;
		text-overflow :ellipsis; /*让截断的文字显示为点点。还有一个值是clip意截断不显示点点*/
		white-space :nowrap; /*让文字不换行*/
		overflow : hidden; /*超出要隐藏*/
		display: block;
	}
	.i-fengmian .circle{
		position: absolute;
		bottom: 36px;
		right: 36px;
	}
}
@media (max-width: 750px) {
	.i-toutiao{
		padding-top: 20px;
	}
	.i-toutiao .h1{
		font-size: 28px;
	}
	.i-fengmian,
	.i-fengmian .img{
		height: 350px;
	}
	.i-fengmian .title{
		left: 40px;
		bottom: 80px;
		width: 330px;
		font-size: 20px;
		line-height: 30px;
		text-overflow :ellipsis; /*让截断的文字显示为点点。还有一个值是clip意截断不显示点点*/
		white-space :nowrap; /*让文字不换行*/
		overflow : hidden; /*超出要隐藏*/
		display: block;
	}
	.i-fengmian .circle{
		position: absolute;
		bottom: 24px;
		right: 36px;
	}
}
@media (max-width: 600px) {
	.i-fengmian,
	.i-fengmian .img{
		height: 280px;
	}
	.i-fengmian .circle{
		display: none;
	}
}
@media (max-width: 500px) {
	.i-fengmian .title{
		width: 250px;
		font-size: 18px;
		line-height: 28px;
		text-overflow :ellipsis; /*让截断的文字显示为点点。还有一个值是clip意截断不显示点点*/
		white-space :nowrap; /*让文字不换行*/
		overflow : hidden; /*超出要隐藏*/
		display: block;
		bottom: 140px;
	}
}



/* 标准分栏广告 */
.i-column{
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: 20px auto;
}
.column1{
	height: 100px;
}
.column2{
	height: 80px;
}
.i-column .item{
	display: block;
	margin-right: 20px;
}
.i-column .item:last-child{
	margin: 0;
}
.i-column .item,
.i-column .item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 1200px) {
	.i-column{
		padding: 0 20px;
	}
	.column1{
		height: 90px;
	}
}
@media (max-width: 1080px){
	.column2{
		height: 80px;
	}
}
@media (max-width: 900px) {
	.column1{
		height: 80px;
	}
	.column2{
		height: auto;
		flex-wrap: wrap;
	}
	.column2 .item,
	.column2 .item img{
		height: 80px;
	}
	.column2 .item{
		margin: 0 0 20px;
	}
}
@media (max-width: 750px) {
	.i-column{
		padding: 0 20px;
	}
}
@media (max-width: 600px) {
	.column1{
		height: 60px;
	}
	.column2 .item,
	.column2 .item img{
		height: 60px;
	}
}
@media (max-width: 450px) {
	.i-column{
		margin: 14px auto;
	}
	.column1{
		height: 50px;
	}
	.column2 .item,
	.column2 .item img{
		height: 50px;
	}
	.column2 .item{
		margin: 0 0 14px;
	}
}

/* 特殊广告样式 */
.special-column{
	width: 100%;
	/* height: 446px; */
	/* margin: -120px auto -150px auto; */
	/* padding-top: 150px; */
	/* background: url(/template/imgs/index/i-bgsh.png) no-repeat center; */
	/* background-size: cover; */
	box-sizing: border-box;
	z-index: 0;
	overflow: hidden;
    margin: 20px auto;
}
.special-column .item,
.special-column .item img{
	display: block;
	width: 100%;
}
@media (max-width: 1000px) {
	.special-column{
		/* margin-bottom: -170px; */
	}
}
@media (max-width: 800px) {
    .w1200{
        width: auto;
    }
    .sw{
        min-width: auto;
    }
	.special-column{
		/* margin-bottom: -210px; */
        padding: 0 20px;
	}
}
@media (max-width: 600px) {
	.special-column{
		position: relative;
		/* margin-bottom: -200px; */
	}
	.special-column .item{
		/* width: 130%; */
		min-width: 288px;
		/* position: absolute;
		left: 50%;
		right: 50%;
		transform: translate(-50%,0); */
	}
}
@media (max-width: 500px) {
	.special-column{
		/* margin-bottom: -220px; */
	}
}
@media (max-width: 370px) {
	.special-column{
		/* margin-bottom: -240px; */
	}
}

/* 公共列表样式 */
.pub-news-box {
	margin: 20px auto;
	overflow: hidden;
}
.pub-news-box .lg-list{
	width: 100%;
}
.pub-news-box .md-list{
	width: 680px;
}
.pub-news-box .sm-list{
	width: 460px;
}
.list-tab{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 68px;
	padding: 21px 0;
	border-bottom: solid 1px #DCDFE6;
	box-sizing: border-box;
}
.list-tab .tab{
	flex-grow: 1;
	text-align: left;
	vertical-align: middle;
	font-size: 22px;
	line-height: 22px;
	white-space: nowrap;
	/* overflow-x: scroll; */
}
.list-tab .tab .item{
	position: relative;
	margin-right: 30px;
    cursor: pointer;
}
.pub-news-box .list-tab .tab .item:hover,
.list-tab .tab .item.active{
	color: #136FD0;
	font-weight: bold;
}
.pub-news-box .list-tab .tab .item:hover::after,
.list-tab .tab .item.active::after{
	position: absolute;
	bottom: -19px;
	left: 0;
	right: 0;
	height: 5px;	
	content: '';
	background: #136FD0;
}
.list-tab .tab .znwd:hover{
    color: #136FD0;
	font-weight: bold;
}
.pub-news-box .list-box{
	padding: 10px 0;
}
.pub-news-box .list .item{
	display: flex;
	position: relative;
	padding: 15px 0 15px 20px;
	font-size: 18px;
	line-height: 24px;
}
.pub-news-box .list .item::before{
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
	left: 0;
	content: '';
	width: 8px;
	height: 8px;
	background-color: #136FD0;
	opacity: .5;
}
.pub-news-box .list .item:hover{
	color: #136FD0;
}
.pub-news-box .list .item:hover:before{
	background-color: #136FD0;
	opacity: 1;
}
.pub-news-box .list .item a{
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.pub-news-box .lg-list a{
	width: 92%;
}
.pub-news-box .md-list a{
	width: 88%;
}
.pub-news-box .sm-list a{
	width: 82%;
}
.pub-news-box .lg-list span{
	width: 8%;
	text-align: right;
}
.pub-news-box .md-list span{
	width: 12%;
	text-align: right;
}
.pub-news-box .sm-list span{
	width: 18%;
	text-align: right;
}

/* tab栏左侧图标 */
.list-tab-icon-st{
	position: relative;
	width: 22px;
	height: 22px;
	margin-right: 20px;
}
.list-tab-icon-st::before{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 16px;
	height: 16px;
	content: '';
	background-color: #136FD0;
}
.list-tab-icon-st::after{
	position: absolute;
	top: 0;
	right: 0;
	width: 12px;
	height: 12px;
	content: '';
	background-color: #136FD0;
	opacity: .5;
}

/* tab栏右侧图标 */
.list-tab-icon-en{
	position: relative;
	width: 42px;
	height: 12px;
	margin:0;
	display: inline-block;
	vertical-align: middle;
	border-left: solid 6px rgba(19, 111, 208, .2);
	border-right: solid 6px rgba(19, 111, 208, .2);
	box-sizing: border-box;
	text-align: right;
	cursor: pointer;
}
.list-tab-icon-en::before{
	position: absolute;
	top: 0;
	left: 6px;
	width: 6px;
	height: 12px;
	content: '';
	background-color: rgba(19, 111, 208, .2);
}
.list-tab-icon-en::after{
	position: absolute;
	top: 0;
	right: 6px;
	width: 6px;
	height: 12px;
	content: '';
	background-color: rgba(19, 111, 208, .2);
}

@media (max-width: 1200px) {
	.pub-news-box{
		padding: 0 20px;
	}
	.pub-news-box .md-list{
		width: 56%;
	}
	.pub-news-box .sm-list{
		width: 38%;
	}
}
@media (max-width: 1100px) {
	.pub-news-box .list-tab .tab .item{
		margin-right: 16px;
	}
}
@media (max-width: 1000px) {
	.pub-news-box .md-list{
		width: 100%;
	}
	.pub-news-box .sm-list{
		width: 100%;
	}
}
@media (max-width: 750px) {
	.pub-news-box{
		margin: 10px auto;
        overflow: initial;
	}
	.pub-news-box .list-tab{
		height: 50px;
		padding: 14px 0;
	}
	.pub-news-box .list-tab .tab .item:hover::after,
	.pub-news-box .list-tab .tab .item.active::after{
		bottom: -13px;
	}
	.pub-news-box .list-tab .tab{
		font-size: 18px;
	}
	.pub-news-box .list-tab .tab .item{
		margin-right: 14px;
	}
	.list-tab-icon-st,
	.list-tab-icon-en{
		display: none;
	}
	.pub-news-box .list .item{
		padding: 10px 0;
		font-size: 16px;
	}
	.pub-news-box .list .item::before{
		display: none;
	}
}
@media (max-width: 600px) {
	.pub-news-box .list span{
		display: none;
	}
	.pub-news-box .list a{
		flex-grow: 1;
	}
}

/* 栏目标题 */
.i-tittle{
	position: relative;
	margin: 50px auto 20px;
	text-align: center;
	font-size: 32px;
	line-height: 32px;
	font-weight: bold;
	font-family: 'simsun';
	color: #1658A0;
}
.i-tittle::before{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	content: '';
	background: #DCDFE6;
	transform: translateY(-50%);
}
.i-tittle .pos{
	position: relative;
}
.i-tittle .pos::before{
	position: absolute;
	content: '';
	background: #136FD0;
}
.i-tittle .pos::after{
	position: absolute;
	content: '';
	background: #136FD0;
}
.i-tittle .i-tit-1{
	width: 304px;
	margin: 0 auto;
	background: #fff;
}
.i-tittle .i-tit-1::before{
	width: 8px;
	height: 2px;
	left: 0;
	top: 50%;	
	transform: translateY(-50%);
}
.i-tittle .i-tit-1::after{
	width: 8px;
	height: 2px;
	right: 0;
	top: 50%;	
	transform: translateY(-50%);
}
.i-tittle .i-tit-2::before{
	width: 4px;
	height: 12px;
	left: 14px;
	top: 50%;	
	transform: translateY(-50%);
	opacity: .2;
}
.i-tittle .i-tit-2::after{
	width: 4px;
	height: 12px;
	right: 14px;
	top: 50%;	
	transform: translateY(-50%);
	opacity: .2;
}
.i-tittle .i-tit-3::before{
	width: 4px;
	height: 18px;
	left: 24px;
	top: 50%;	
	transform: translateY(-50%);
	opacity: .6;
}
.i-tittle .i-tit-3::after{
	width: 4px;
	height: 18px;
	right: 24px;
	top: 50%;	
	transform: translateY(-50%);
	opacity: .6;
}
.i-tittle .txt::before{
	width: 4px;
	height: 24px;
	left: 34px;
	top: 50%;	
	transform: translateY(-50%);
}
.i-tittle .txt::after{
	width: 4px;
	height: 24px;
	right: 34px;
	top: 50%;	
	transform: translateY(-50%);
}
@media (max-width: 750px) {
	.i-tittle{
		margin: 30px auto 20px;
		font-size: 28px;
	}
	.i-tittle .i-tit-1{
		width: 260px;
	}
}

/* 常务会议 */
.i-cwhy{
	padding: 16px 0;
}
.i-cwhy .cwhy-bg{
	padding: 30px 20px 20px;
	height: 254px;
	background: url(/template/imgs/index/bg/cwhy.png) no-repeat center;
	background-size: cover;
	border-radius: 4px;
	overflow: hidden;
	box-sizing: border-box;
	text-align: center;
	color: #1658A0;
}
.i-cwhy .tit{
	margin-bottom: 20px;
	font-size: 22px;
	line-height: 1;
}
.i-cwhy .time{
	margin-bottom: 14px;
	font-size: 18px;
	line-height: 1;
}
.i-cwhy .zy{
	margin-bottom: 28px;
	height: 56px;
	text-align: left;
	font-size: 18px;
	line-height: 28px;
}
.i-cwhy .btn-box{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.i-cwhy .btn-box .btn{
	width: 48%;
	height: 46px;
	border: solid 1px #1658A0;
	border-radius: 4px;
	box-sizing: border-box;
	background: rgba(255, 255, 255, .7);
	line-height: 44px;
    cursor: pointer;
}
@media (max-width: 1000px) {
	.i-cwhy .cwhy-bg{
		height: auto;
	}
	.i-cwhy .zy{
		margin-bottom: 0;
	}
}

/* 政务公开 */
.zwgk-col{
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
.zwgk-col .left{
	width: 680px;
}
/* 政策文件库 */
.zwgk-col .zcwjk{
	margin-bottom: 30px;
	padding: 24px 22px 22px;
	height: 140px;
	background: url(/template/imgs/index/bg/zcwjk.png) no-repeat center;
	background-size: cover;
	border-radius: 4px;
	overflow: hidden;
	box-sizing: border-box;
	color: #1658A0;
}
.zwgk-col .zcwjk .tit{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
	font-size: 26px;
	line-height: 1;
	font-family: 'simsun';
	font-weight: bold;
}
.zwgk-col .zcwjk .search{
	display: flex;
	justify-content: space-between;
	padding: 8px 16px;
	width: 80%;
	height: 48px;
	background: #fff;
	border-radius: 4px;
	box-sizing: border-box;
}
.zwgk-col .zcwjk .search input{
	border: none;
	outline: none;
	height: 32px;
	font-size: 18px;
	line-height: 32px;
	flex-grow: 1;
}
.zwgk-col .zcwjk .search button{
	border: none;
	width: 72px;
	height: 32px;
	background: #136FD0;
	color: #fff;
	font-size: 16px;
	line-height: 32px;
	border-radius: 2px;
}
/* 重大领域信息公开 */
.zdly{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 110px;
	border: solid 1px #DCDFE6;
	border-left: solid 4px #1658A0;
}
.zdly .tit{
	padding: 17px 10px 0 10px;
	width: 112px;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	background: #F2F8FF;
	font-size: 22px;
	line-height: 38px;
	color: #1658A0;
	font-weight: bold;
	box-sizing: border-box;
}
.zdly .list{
	display: flex;
	padding: 0 22px;
	flex-grow: 1;
	font-size: 18px;
}
.zdly .list .item{
	margin-right: 28px;
}
.zdly .list a{
	display: block;
	line-height: 40px;
    cursor: pointer;
}
.zdly .list a:hover{
	color: #136FD0;
}
.zdly .list .xzmw{
	font-size: 18px;
	margin-right: 4px;
	color: #136FD0;
}
.zdly .list .xzmw.x-z-shgysy{
	font-size: 16px;
}
/* 政府信息公开专栏 */
.zfxx{
	width: 460px;
	padding: 24px 20px 20px 20px;
	background: url(/template/imgs/index/bg/zfxxgkzl.png) no-repeat center;
	background-size: cover;
	border-radius: 4px;
	overflow: hidden;
	box-sizing: border-box;
}
.zfxx .tit{
	margin-bottom: 20px;
	font-size: 26px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	color: #fff;
}
.zfxx .list{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	border-radius: 4px;
}
.zfxx .list .item{
	position: relative;
	display: inline-block;
	margin-bottom: 12px;
	width: 48%;
	height: 42px;
	line-height: 42px;
	background: #fff;
	border-radius: 2px;
	padding-left: 32px;
	box-sizing: border-box;
	font-size: 16px;
    cursor: pointer;
}
.zfxx .list .item:nth-child(3),
.zfxx .list .item:nth-child(4){
	margin-bottom: 0;
}
.zfxx .list .item:hover{
	color: #136FD0;
	font-weight: bold;
}
.zfxx .list .item::before{
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	content: '';
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-left: 6px solid #136FD0;
	border-bottom: 6px solid transparent;
}

@media (max-width:1200px) {
	.zwgk-col{
		padding: 0 20px;
	}
	.zwgk-col .left{
		width: 56%;
	}
	.zwgk-col .zfxx{
		width: 100%;
	}
	.zwgk-col .zcwjk{
		background-position: right;
	}
	.zdly .tit{
		font-size: 20px;
	}
	.zdly .list{
		font-size: 16px;
	}
	.zdly .list .item{
		margin-right: 20px;
	}
}
@media (max-width:1140px) {
	.zdly .list .xzmw{
		display: none;
	}
}
@media (max-width:1000px) {
	.zwgk-col{
		flex-wrap: wrap;
	}
	.zdly .list{
		justify-content: space-between;
		padding: 0 40px;
	}
	.zwgk-col .left{
		width: 100%;
		margin-bottom: 30px;
	}
	.zdly .list .item{
		flex-grow: 1;
		margin-right: 0;
		width: 24%;
	}
	.zdly .list .xzmw{
		display: inline-block;
	}
	.zwgk-col .zfxx{
		width: 100%;
	}
	.zfxx .list .item{
		width: 32%;
	}
	.zfxx .list .item:nth-child(4){
		margin-bottom: 0;
	}
}
@media (max-width:800px) {
	.zdly .list{
		justify-content: space-between;
		padding: 0 20px;
	}
}
@media (max-width: 700px) {
	.zdly .list .item{
		width: auto;
	}
	.zfxx .list .item{
		width: 48%;
	}
}
@media (max-width: 650px) {
	.zdly{
		height: auto;
		display: block;
		border: solid 1px #DCDFE6;
	}
	.zdly .tit{
		width: 100%;
		height: 44px;
		border-left: solid 4px #1658A0;
		text-align: left;
		line-height: 44px;
		padding: 0 20px;
	}
	.zdly .list{
		padding: 10px 20px;
	}
}
@media (max-width: 500px) {
	.zwgk-col .zcwjk .search{
		width: 100%;
	}
	.zwgk-col .zcwjk{
		background-image: url(/template/imgs/index/bg/zcwjk-2.png);
	}
	.zdly .list .xzmw{
		display: none;
	}
	.zfxx .list .item{
		padding-left: 0;
		font-size: 15px;
		text-align: center;
	}
	.zfxx .list .item::before{
		display: none;
	}
}
@media (max-width: 450px) {
	.zdly .list{
		padding: 10px;
		font-size: 15px;
	}
	.zwgk-col .zcwjk .search input{
		flex-grow: 0;
		width: 80%;
	}
	.zwgk-col .zcwjk .search button{
		width: 20%;
	}
}

/* 五公开 */
.i-wgk{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px auto;
    cursor: pointer;
}
.i-wgk .item{
	width: 18.67%;
	height: 78px;
	padding: 28px 0;
	background: url(/template/imgs/index/bg/wgk.png) no-repeat center;
	background-size: cover;
	border-radius: 4px;
	overflow: hidden;
	box-sizing: border-box;
	font-size: 22px;
	font-weight: bold;
	line-height: 1;
	color: #1658A0;
	text-align: center;
}
@media (max-width:1200px) {
	.i-wgk{
		padding: 0 20px;
	}
	.i-wgk .item{
		padding: 25px 0;
		height: 70px;
		font-size: 20px;
	}
}
@media (max-width:700px) {
	.i-wgk .item{
		font-size: 18px;
		line-height: 20px;
	}
}
@media (max-width:700px) {
	.i-wgk .item{
		font-size: 16px;
	}
}
@media (max-width:450px) {
	.i-wgk .item{
		padding: 15px;
	}
}


/* 专题专栏 */
.i-ztzl{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 16px auto 30px;
}
.i-ztzl .item{
	width: 24% !important;
	height: 170px;
	display: block;
	border-radius: 2px;
	overflow: hidden;
    cursor: pointer;
}
.i-ztzl .item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width:1100px) {
	.i-ztzl .item{
		height: 160px;
	}
}
@media (max-width:1050px) {
	.i-ztzl .item{
		height: 150px;
	}
}
@media (max-width:1000px) {
	.i-ztzl .item{
		height: 140px;
	}
}
@media (max-width:900px) {
	.i-ztzl .item{
		height: 120px;
	}
}
@media (max-width:800px) {
	.i-ztzl .item{
		height: 100px;
	}
}
@media (max-width:750px) {
	.i-ztzl {
		flex-wrap: wrap;
	}
	.i-ztzl .item{
		display: block;
		width: 48.4% !important;
		height: 160px;
		margin-bottom: 20px;
	}
}
@media (max-width:650px) {
	.i-ztzl .item{
		height: 140px;
	}
}
@media (max-width:550px) {
	.i-ztzl .item{
		height: 120px;
	}
}
@media (max-width:450px) {
	.i-ztzl .item{
		display: block;
		width: 100% !important;
		height: 200px;
		margin-bottom: 20px;
	}
}

/* 政务服务 */
.i-zwfw{
	margin: 44px auto 50px auto;
	display: flex;
	justify-content: space-between;
}
.i-z-box{
	width: 31.2%;
	padding: 30px;
	background: #fff;
	border-radius: 6px;
	border-top: solid 6px #136FD0;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
	box-sizing: border-box;
}
.i-z-box .list-tab-icon-st{
	margin-right: 14px;
}
.i-z-box .list-tab{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
    height: auto;
    padding: 0;
    border-bottom: none;
}
.i-z-box .list-tab .tab{
	flex-grow: 1;
	font-size: 22px;
	line-height: 1;
	font-weight: bold;
	color: #1658A0;
}
.i-z-box .list-tab .tab .item.active::after{
    content: none;
}
.i-z-box .list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.i-z-box .list .item{
	margin-bottom: 25px;
	padding: 14px 0;
	width: 88px;
	height: 88px;
	font-size: 14px;
	border: solid 1px #E7E7E7;
	border-radius: 4px;
	background: #F2F8FF;
	text-align: center;
	box-sizing: border-box;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
}
.i-z-box .list .item .xzmw{
	width: 40px;
	height: 40px;
	margin: 0 auto;
	display: block;
	font-size: 32px;
	color: #1658A0;
	box-sizing: border-box;
}
.i-z-box .list .item .xzmw.x-f-slbg{
	padding-top: 2px;
	font-size: 26px;
}
.i-z-box .list .item:hover,
.i-z-box .btn-box .btn:hover{
	color: #fff;
	background: #1658A0;
}
.i-z-box .list .item:hover .xzmw{
	color: #fff;
}

.i-z-box .btn-box{
	display: flex;
	justify-content: space-between;
}
.i-z-box .btn-box .btn{
	width: 145px;
	height: 44px;
	font-size: 14px;
	line-height: 42px;
	border: solid 1px #E7E7E7;
	border-radius: 4px;
	background: #F2F8FF;
	text-align: center;
	box-sizing: border-box;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
}
.i-z-box .btn-box .btn:hover{
	cursor: pointer;
}
.i-z-box .list.zt{
	flex-direction: column;
	justify-content: flex-end;
}
.i-z-box .list.zt .ztfw{
	margin-bottom: 25px;
}
.i-z-box .list.zt .ztfw:last-child{
	margin: 0;
}
.i-z-box .list.zt .ztfw,
.i-z-box .list.zt .ztfw img{
	width: 100%;
	height: 111px;
	object-fit: cover;
	border-radius: 4px;
	overflow: hidden;
}
@media (max-width: 1200px) {
	.i-zwfw{
		padding: 0 20px;
	}
	.i-z-box{
		width: 32.2%;
	}
	.i-z-box .btn-box .btn{
		width: 48%;
	}
	.i-z-box .list .item,
	.i-z-box .list.zt .ztfw{
		margin-bottom: 14px;
	}
	.i-z-box .list.zt .ztfw, 
	.i-z-box .list.zt .ztfw img{
		height: 107px;
	}
}
@media (max-width: 1100px) {
	.i-z-box{
		padding: 20px;
	}
	.i-z-box .list .item{
		width: 82px;
		height: 82px;
		margin-bottom: 18px;
	}
	.i-z-box .list .item .xzmw{
		font-size: 28px;
	}
	.i-z-box .list .item .xzmw.x-f-slbg{
		font-size: 24px;
	}
}
@media (max-width: 1000px) {
	.i-zwfw{
		flex-wrap: wrap;
	}
	.i-z-box{
		width: 48.6%;
		margin-bottom: 30px;
	}
	.i-z-box .list .item{
		width: 88px;
		height: 88px;
	}
	.i-z-box .list .item:last-child{
		display: none;
	}
	.i-z-box.i-z-ztfw{
		width: 100%;
		margin-bottom: 0;
	}
	.i-z-box .list.zt{
		flex-direction: row;
		justify-content: space-between;
	}
	.i-z-box .list.zt .ztfw{
		margin-bottom: 0;
		width: 32%;
	}
	
}
@media (max-width: 950px) {
	.i-z-box .list .item{
		margin-bottom: 12px;
	}
}
@media (max-width: 900px) {
	.i-z-box .list .item{
		width: 82px;
		height: 82px;
	}
	.i-z-box .list.zt .ztfw,
	.i-z-box .list.zt .ztfw img{
		height: 90px;
	}
}
@media (max-width: 850px) {
	.i-z-box .list .item{
		width: 76px;
		height: 76px;
	}
	.i-z-box .list .item .xzmw{
		width: 34px;
		height: 34px;
	}
}
@media (max-width: 850px) {
	.i-z-box .list .item{
		width: 88px;
		height: 88px;
		margin-bottom: 18px;
	}
	.i-z-box .list .item:last-child{
		display: block;
	}
}
@media (max-width: 750px) {
	.i-z-box .list.zt .ztfw,
	.i-z-box .list.zt .ztfw img{
		height: 76px;
	}
}
@media (max-width: 700px) {
	.i-z-box .list{
		justify-content: space-around;
	}
	.i-z-box .list .item{
		width: 76px;
		height: 76px;
		margin-bottom: 18px;
	}
}
@media (max-width: 650px) {
	.i-z-box{
		width: 100%;
	}
	.i-z-box .list{
		justify-content: space-between;
	}
	.i-z-box .list .item{
		width: 21%;
		height: 88px;
	}
	.i-z-box .list .item:last-child{
		display: none;
	}
	.i-z-box .list.zt .ztfw, 
	.i-z-box .list.zt .ztfw img{
		height: 66px;
	}
}
@media (max-width: 570px) {
	.i-z-box .list.zt .ztfw{
		width: 100%;
		margin-bottom: 20px;
	}
	.i-z-box .list.zt .ztfw,
	.i-z-box .list.zt .ztfw img{
		height: 160px;
	}
}
@media (max-width: 500px) {
	.i-z-box .list.zt .ztfw,
	.i-z-box .list.zt .ztfw img{
		height: 120px;
	}
}
@media (max-width: 400px) {
	.i-z-box .list .item{
		width: 23%;
		height: 78px;
		padding-bottom: 0;
	}
	.i-z-box .list.zt .ztfw,
	.i-z-box .list.zt .ztfw img{
		height: 100px;
	}
}


/* 视频报道 */

.i-spbd{
	margin-top: 16px;
}
.i-spbd a:hover{
	color: #136FD0;
}
.i-spbd .el-carousel__container{
    height: 308px;
}
.i-spbd .el-carousel__indicators{
    bottom: 10px;
    padding: 0;
    left: auto;
    right: 0;
}
/* .block-two .footer-text {
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #ffffff;
    bottom: 8px;
} */
.i-spbd .el-carousel__indicator.is-active button {
    background: #2b65a5;
}
.i-spbd .el-carousel__button {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}
.i-spbd .sp,
.i-spbd .sp img{
	width: 100%;
	height: 254px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	overflow: hidden;
	object-fit: cover;
}
.i-spbd .txt{
	padding: 14px 86px 14px 22px;
	height: 54px;
	background: #f5f5f5;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 26px;
}
.i-fengmian .el-carousel--horizontal{
    height: 580px;
}
.i-fengmian .el-carousel__container{
    height: 580px;
}
@media (max-width:1000px) {
	.i-spbd .sp, 
	.i-spbd .sp img{
		height: 500px;
	}
}
@media (max-width:900px) {
	.i-spbd .sp, 
	.i-spbd .sp img{
		height: 440px;
	}
    .i-fengmian .el-carousel--horizontal{
        height: 400px;
    }
    .i-fengmian .el-carousel__container{
        height: 400px;
    }
}
@media (max-width:800px) {
	.i-spbd .sp, 
	.i-spbd .sp img{
		height: 400px;
	}
	.i-spbd .el-carousel__indicators{
		bottom: 63px;
		padding: 0;
		left: auto;
		right: -16px;
	}
}
@media (max-width:700px) {
	.i-spbd .sp, 
	.i-spbd .sp img{
		height: 340px;
	}
}
@media (max-width:600px) {
	.i-spbd .sp, 
	.i-spbd .sp img{
		height: 280px;
	}
}
@media (max-width:500px) {
	.i-spbd .sp, 
	.i-spbd .sp img{
		height: 240px;
	}
}
@media (max-width:500px) {
	.i-spbd .sp, 
	.i-spbd .sp img{
		height: 200px;
	}
	.i-spbd .el-carousel__indicators{
		bottom: 63px;
		padding: 0;
		left: auto;
		right: -16px;
	}
}

/* 信箱 */
.i-message {
	margin: 30px auto 50px auto;
}
.i-message .md-list{
	width: 680px;
}
.i-message .sm-list{
	display: flex;
	justify-content: space-between;
	width: 460px;
}
.i-message a,
.i-message img{
	display: block;
	height:80px;
	object-fit: cover;
	border-radius: 4px;
	overflow: hidden;
}
.i-message .md-list a,
.i-message .md-list img{
	width: 100%;
}
.i-message .sm-list a{
	width: 47%;
}
.i-message .sm-list img{
    width: 100%;
}
@media (max-width:1200px) {
	.i-message{
		padding: 0 20px;
	}
	.i-message .md-list{
		width: 56%;
	}
	.i-message .sm-list{
		width: 38%;
	}
	.i-message a{
		width: 48%;
		height: 80px;
	}
	.i-message a img{
		width: 100%;
		height: inherit;
	}
}
@media (max-width:900px) {
	.i-message .md-list,
	.i-message .sm-list{
		width: 100%;
	}
	.i-message .md-list{
		margin-bottom: 30px;
	}
	.i-message a{
		/* width: 44%; */
		height: 100px;
	}
}
@media (max-width:500px) {
	.i-message .md-list{
		margin-bottom: 20px;
	}
	.i-message a{
		height: 80px;
	}
}
@media (max-width:376px) {
	.i-message .md-list{
		margin-bottom: 12px;
	}
	.i-message a{
		height: 60px;
	}
}
.wuzhangai-b {
	margin-top: 100px;
	margin-right: 88px;
	margin-left: -31px;
  }
  .square-box-1 {
	padding: 10px;
	position: fixed;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	margin-right: 121px;
	margin-top: -105px;
	z-index: 999999999999999999999;
	white-space: nowrap;
  }
  .circle-90-left-top {
	position: absolute;
	background: #fff;
	width: 40px;
	height: 40px;
	clip: rect(auto, 20px, 20px, auto);
	border-radius: 50%;
	cursor: pointer;
	white-space: nowrap;
	z-index: 999999999999999999999;
  }
  .circle-90-right-top {
	position: absolute;
	background: blue;
	width: 40px;
	height: 40px;
	clip: rect(auto, auto, 20px, 20px);
	border-radius: 50%;
	cursor: pointer;
	white-space: nowrap;
	z-index: 999999999999999999999;
  }
  .circle-90-right-bottom {
	position: absolute;
	background: yellow;
	width: 40px;
	height: 40px;
	clip: rect(20px, auto, auto, 20px);
	border-radius: 50%;
	cursor: pointer;
	white-space: nowrap;
	z-index: 999999999999999999999;
  }
  
  .circle-90-bottom-left {
	position: absolute;
	background: #000;
	width: 40px;
	height: 40px;
	clip: rect(20px, 20px, auto, auto);
	border-radius: 50%;
	cursor: pointer;
	white-space: nowrap;
	z-index: 999999999999999999999;
  }
  .peise {
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	width: 100px;
	margin-bottom: 10px;
	white-space: nowrap;
  }
  .qie-huan {
	display: block;
	font-size: 0;
	line-height: 0;
	text-indent: -9999px;
  }