@charset "utf-8";

body,
html {
	width: 100%;
	overflow-x: hidden;
	font: calc(100vw / 120) arial;
	/* min-width: 1345px; */
}

body{
  padding:0 13.5%!important;
}

/* 清除内外边距 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
/* structural elements 结构元素 */
dl,
dt,
dd,
ul,
ol,
li,
/* list elements 列表元素 */
pre,
/* text formatting elements 文本格式元素 */
fieldset,
lengend,
button,
input,
textarea,
/* form elements 表单元素 */
th,
td,
/* table elements 表格元素 */
div {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a:focus {
	outline: none;
}

/* 设置默认字体 */
body,
button,
input,
select,
textarea {
	font: 12px/1 "Microsoft YaHei", Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;
	/* 用 ascii 字符表示，使得在任何编码下都无问题 */
}

body,
a {
	color: #666;
}

h1 {
	font-size: 18px;
	/* 18px / 12px = 1.5 */
}

h2 {
	font-size: 16px;
}

h3 {
	font-size: 14px;
}

h4,
h5,
h6 {
	font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

i,
em,
b {
	font-style: normal;
}

address,
cite,
dfn,
em,
var {
	font-style: normal;
}

/* 将斜体扶正 */
code,
kbd,
pre,
samp,
tt {
	font-family: "Courier New", Courier, monospace;
}

/* 统一等宽字体 */
small {
	font-size: 12px;
}

/* 小于 12px 的中文很难阅读，让 small 正常化 */
/* 重置列表元素 */
ul,
ol {
	list-style: none;
}

/* 重置浏览器默认样式 select */
select,
option,
option select {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

/* 重置文本格式元素 */
a,
s {
	text-decoration: none;
	outline: none;
	blur: expression(this.onFocus=this.blur());
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
}

/*a:hover { text-decoration: underline;}*/
abbr[title],
acronym[title] {
	/* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
	border-bottom: 1px dotted;
	cursor: help;
}

q:before,
q:after {
	content: '';
}

/* 重置表单元素 */
legend {
	color: #000;
}

/* for ie6 */
fieldset,
img {
	border: none;
	/* img 搭车：让链接里的 img 无边框  注：optgroup 无法扶正*/
}

button,
input,
select,
textarea {
	font-size: 100%;
	/* 使得表单元素在 ie 下能继承字体大小 */
}

/* 重置表格元素 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

table th,
table td {
	border: 1px solid #ddd;
}

/* 重置 hr */
hr {
	border: none;
	height: 1px;
}

/* 表单 在浏览器上的默认样式*/
input,
input:focus,
button,
button:focus,
textarea,
textarea:focus {
	outline: none;
	border: none;
}

/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
html {
	overflow-y: scroll;
}

/* ie7以下两个以上的 li浮动产生的空白间隙bug */
li {
	+vertical-align: top;
	_vertical-align: top;
}

/* ie下li元素的内联元素底部产生空白 */
li * {
	*zoom: 1;
}

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/* ie下图片标签上有空白 */
img {
	vertical-align: middle;
	*vertical-align: top;
}

/* ie下input标签文本居中 */
input {
	vertical-align: middle;
}

input[type=number] {
	-moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* 以下为自用公共样式 */
/* 浮动 */
.fl,
.fl-li li,
.fl-a {
	float: left;
	_display: inline;
}

.fr,
.fr-li li,
.fr-a {
	float: right;
	_display: inline;
}

.w1200 {
	width: 1200px;
	margin: 0 auto;
}

.padd {
	padding: 0.1px;
}

.opacity {
	filter: alpha(opacity=80);
	/* IE */
	-moz-opacity: 0.8;
	/* 老版Mozilla */
	-khtml-opacity: 08;
}

/* 清除浮动 */
.cb:after {
	content: ".";
	display: block;
	height: 0px;
	overflow: hidden;
	visibility: hidden;
	clear: both;
}

/* 内联块级元素 */
.ib,
.flexslider .hd ul li {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

.transition {
	transition: all .5s cubic-bezier(0, 0.93, 1, 1);
	-webkit-transition: all .5s cubic-bezier(0, 0.93, 1, 1);
	-moz-transition: all .5s cubic-bezier(0, 0.93, 1, 1);
	-ms-transition: all .5s cubic-bezier(0, 0.93, 1, 1);
	-o-transition: all .5s cubic-bezier(0, 0.93, 1, 1);
}

.db {
	display: block;
}

.th {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.es {
	overflow: hidden;
	display: -webkit-box;
	text-align: justify;
	line-height: 1.5;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.es.es-1 {
	-webkit-line-clamp: 1;
}

.es.es-3 {
	-webkit-line-clamp: 3;
}

.wh {
	width: 100%;
	height: 100%;
}

.w {
	width: 100%;
}

.h {
	height: 100%;
}

.pr {
	position: relative;
}

.oh {
	overflow: hidden;
}

.br {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#BF000000, endColorstr=#BF000000);
}

.bg {
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.container {
	padding-left: 2%;
	padding-right: 2%;

}

.df {
	display: box;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.fz {
	font-size: 0;
}

.align-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.df-between {
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
}

.df-justify-center {
	justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
}

.df-flex-auto {
	-webkit-box-flex: auto;
	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex: auto;
	/* OLD - Firefox 19- */
	-webkit-flex: auto;
	/* Chrome */
	-ms-flex: auto;
	/* IE 10 */
	flex: auto;
}

.df-flex-1 {
	-webkit-box-flex: 1;
	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex: 1;
	/* OLD - Firefox 19- */
	-webkit-flex: 1;
	/* Chrome */
	-ms-flex: 1;
	/* IE 10 */
	flex: 1;
}

.flex-flow {
	-webkit-flex-flow: column;
	-ms-flex-flow: column;
	flex-flow: column;
}

.df-shrink {
	flex-shrink: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
}

.flex-wrap {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.text-center {
	text-align: center;
}

.title {
	line-height: 1.5;
}

.text-center {
	text-align: center;
}

.hide {
	display: none;
}

/*公共样式结束*/
/*header*/
#header {}

.mobile-logo {
	display: none;
}

.mobile-btn-all {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	right: 3%;
	z-index: 99999999999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-50%);
}

.mobile-btn-all a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	transition: all .3s;
}

.mobile-btn-all a svg {
	width: 100%;
	height: 100%;
	fill: #333;
}

.mobile-btn-all #btn-close {
	opacity: 0;
	visibility: hidden;
	transform: scale(0);
}

.mobile-btn-all.on #btn-close {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.mobile-btn-all.on #btn-close svg {
	fill: #fff;
}

.mobile-btn-all.on #btn-open {
	transform: scale(0);
	opacity: 0;
	visibility: hidden;
}

.mobile-nav {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 999999;
	opacity: 0;
	visibility: hidden;
	background-color: rgba(51, 51, 51, .3);
	transition: all .55s cubic-bezier(0.4, 0, 0, 1);
}

.mobile-nav ul {
	width: 85%;
	height: 100%;
	padding: 5%;
	background-color: #fff;
	overflow-y: auto;
	overflow-x: hidden;
}

.mobile-nav.on {
	opacity: 1;
	left: 0;
	visibility: visible;
	overflow-y: auto;
}

.mobile-nav .head_menu ul {
	display: flex;
	flex-wrap: wrap;
}

.mobile-nav .head_menu ul li {
	width: 100%;
	padding: 0 3%;
	border-bottom: 1px solid #f0f0f0;
}

.mobile-nav .head_menu ul li span a {
	font-size: 16px;
	line-height: 40px;
	font-weight: bold;
}

.mobile-nav .head_menu ul li.active span a::after,
.mobile-nav .head_menu ul li:hover span a::after {
	width: 2px;
	height: 20px;
	top: 50%;
	margin-top: -10px;
}

.mobile-nav .head_menu ul li .erji {
	height: auto;
	background: #FFF;
	margin-bottom: 12px;
	padding: 0;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}

.mobile-nav .head_menu ul li:hover .erji {
	background: #f1f1f1;
}

.mobile-nav .head_menu ul li .erji a {
	width: 49%;
	font-size: 14px;
	text-align: left;
	line-height: 40px;
	color: #444;
	float: left;
	text-align: center;
	background-color: #F1F1F1;
	margin-top:5px;
}

.mobile-nav .head_menu ul li .erji a::after {
	display: none;
}

.mobile-nav .head_menu ul li .erji::after {
	opacity: 1;
	box-shadow: none;
	background: #f1f1f1;
	top: auto;
	bottom: 0;
	height: 2px;
}

/*header*/
/*footer*/
#footer {}

/*footer*/
@media (max-width:1440px) {
	.zd-fz-12 {
		font-size: 12px !important;
	}

	.zd-fz-13 {
		font-size: 13px !important;
	}

	.zd-fz-14 {
		font-size: 14px !important;
	}

	.zd-fz-15 {
		font-size: 15px !important;
	}

	.zd-fz-16 {
		font-size: 16px !important;
	}

	.zd-fz-17 {
		font-size: 17px !important;
	}

	.zd-fz-18 {
		font-size: 18px !important;
	}

	.zd-fz-19 {
		font-size: 19px !important;
	}

	.zd-fz-20 {
		font-size: 20px !important;
	}

	html,
	body {
		font-size: calc(100vw / 100);
	}

	.container {
		padding-left: 5%;
		padding-right: 5%;
	}

	.banner .mySwiperbanner .title-box .bottom-box a {
		font-size: 0.875rem;
	}

	.banner .mySwiperbanner .title-box .bottom-box i {
		padding: 0 5px;
	}
	
	.footer .footer-top{
	  padding: 1rem 19.5%;
	  left:-18.5%;
	  width:138%;
	}

	.footer .footer-top .link-box {
		width: 10rem;
	}
	
	.footer .footer-top .left p{
	  font-size:0.875rem;
	}

	.page-News .right-box ul li {
		height: 13.35rem;
	}

	.page-News .right-box ul li a {
	  margin-bottom:9px;
	}
  
  .page-News .left-box .myNews .swiper-wrapper .swiper-slide{
    height:28rem;
  }
  
  .page-news-box4 .page-top-box ul{
    flex-wrap:wrap;
  }
  
  .page-news-box4 .page-top-box ul li{
    width:32%;
	margin-bottom:1rem;
  }
  
  .page-news-box4 .page-top-box ul li .social-share .social-share-icon{
    width:1.5rem;
    height:1.5rem;
    line-height:1.5rem;
    font-size:1.25rem;
    border:0px;
  }
  
  .page-Overview .right-box .bottom-box ul li{
    width:33.33333%;
    padding:0 1rem;
  }
  
  .surveyBox{
    zoom:0.8;
    width:106rem;
    left:-19rem;
  }
  
}

@media (max-width:1280px){
  .zd-fz-12 {
		font-size: 12px !important;
	}

	.zd-fz-13 {
		font-size: 13px !important;
	}

	.zd-fz-14 {
		font-size: 14px !important;
	}

	.zd-fz-15 {
		font-size: 15px !important;
	}

	.zd-fz-16 {
		font-size: 16px !important;
	}

	.zd-fz-17 {
		font-size: 17px !important;
	}

	.zd-fz-18 {
		font-size: 18px !important;
	}

	.zd-fz-19 {
		font-size: 19px !important;
	}

	.zd-fz-20 {
		font-size: 20px !important;
	}

	html,
	body {
		font-size: calc(100vw / 100);
	}
	
	.page-Overview .right-box .bottom-box ul li{
	  padding:0 10px;
	}
	
	.page-Overview .right-box .bottom-box ul li a .img-box{
	  height:13rem;
	}
	
	.page-Policy .bottom ul{
	  height:12.5rem;
	}
}

@media (max-width:1024px) {
	.ipad-fz-12 {
		font-size: 12px !important;
	}

	.ipad-fz-13 {
		font-size: 13px !important;
	}

	.ipad-fz-14 {
		font-size: 14px !important;
	}

	.ipad-fz-15 {
		font-size: 15px !important;
	}

	.ipad-fz-16 {
		font-size: 16px !important;
	}

	.ipad-fz-17 {
		font-size: 17px !important;
	}

	.ipad-fz-18 {
		font-size: 18px !important;
	}

	.ipad-fz-19 {
		font-size: 19px !important;
	}

	.ipad-fz-20 {
		font-size: 20px !important;
	}

	html,
	body {
		font-size: 80%;
	}

	.mobile-btn-all {
		opacity: 1;
		visibility: visible;
	}

	#header .pc-header {
		display: none;
	}

	.mobile-logo {
		display: flex;
	}
	
	.mobile-logo>.box1{
	  width:22vw;
	}
	
	.mobile-logo>.box2{
	  width:5vw;
	}
	
	.mobile-logo>.box2 img{
	  width:100%;
	  height:100%;
	}

	.mobile-logo {
		width: 30vw;
		position: absolute;
		top: 50%;
		left: 3%;
		z-index: 100;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	#header {
		height: 5rem;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		background-color: #fff;
		box-shadow: 0px 0px 10px #ddd;
	}

	.banner {
		margin-top: 5rem;
		height: 100vh;
	}

	.banner .mySwiperbanner .title-box {
		padding: 10px;
	}

	.banner .mySwiperbanner .title-box .top-box {
		padding: 0 1%;
		justify-content: center;
	}

	.banner .mySwiperbanner .title-box h2 {
		font-size: 1.25rem;
	}

	.banner .mySwiperbanner .title-box .bottom-box a {
		padding: 0 4px;
	}
	
	.index_nav {
		width: 100%;
		height: auto;
		background: #ac1512;
		color: #FFF;
		display: flex;
		flex-wrap: wrap;
	}

	.index_nav li {
		width: calc(100% / 3);
		height: 45px;
		line-height: 45px;
		text-align: center;
		border-bottom: 1px #991519 solid
	}
	
	.index_nav li::marker{
		content: '';
	}

	.index_nav li a {
		color: #FFF;
		font-size: 1.125rem;
	}
	
	.page-Policy .left-box .tabs a{
	  font-size:1rem;
	  padding:4px 10px;
	}
	
	.footer .footer-top{
	  padding:1rem 3%;
	}
	
	.footer .footer-top .link-box{
	  width:11rem;
	}

	/* 新闻 */
	.page-News {
		flex-direction: column;
	}

	.page-News .left-box {
		width: 100%;
	}

	.page-News .right-box {
		margin-left: 0px;
		margin-top: 2rem;
	}

	.page-News .right-box ul li {
		width: 24%;
		margin-bottom: 0px;
	}

	.footer .footer-top .link-box {
		width: 12.5rem;
	}
	
	.page-news-box4 .page-top-box ul li{
	  width:50%;
	}

	/* 02省社概况-现任领导-1 */
	.page-Overview .right-box .bottom-box ul {
		justify-content: space-between;
	}

	.page-Overview .right-box .bottom-box ul li {
		width: 30%;
		padding: 0;
	}

	/* page-paging */
	.page-paging-box a:nth-child(2),
	.page-paging-box a:nth-last-child(2) {
		display: none;
	}

	.page-paging-box {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	/* 04省社概况-省社机关 */

	/* 05省社要情 */
	.page-Overview .right-box .page-lie .left {
		height: 15rem;
	}

	.page-Overview .right-box .page-lie .right {
		padding: 0 10px;
	}

	.page-Overview .right-box .page-lie .right .title-box p {
		-webkit-line-clamp: 3;
	}

	.page-Overview .right-box .page-lie .right .details-right-sher {
		bottom: 0;
	}

	.page-Overview .right-box .page-lie .right .box-top {
		padding-bottom: 10px;
	}

	.page-Overview .right-box .page-lie .right .title-box {
		margin-top: 1rem;
	}

	.page-lie .page-bottom-box li .info {
		padding-left: 1rem;
	}

	.page-lie .page-bottom-box li .info .bottom-nav {
		bottom: 1rem;
		right: 1.25rem;
	}

	/* 07专题专栏 */
	.page-news-box3 ul li a .page-img-box {
		height: 9.5rem;
	}

	.page-news-box3 ul li a .page-title-box .details-right-sher {
		margin-top: 1rem;
	}

	/* 08详情页 */
  .page-news-box4 .page-top-box ul li{
    width:32%;
    margin-bottom:1rem;
  }
  
  .page-news-box4 .page-top-box ul li:nth-last-child(4){
    width:50%;
  }
  
	.page-news-box4 .page-top-box ul li .social-share .social-share-icon {
		width: 24px;
		height: 24px;
		line-height: 24px;
		font-size: 16px;
	}

	/* page-box3 */
	.page-box3 {
		margin-top: 5rem;
	}
	
	
}

@media (max-width:768px) {
	.mb-fz-12 {
		font-size: 12px !important;
	}

	.mb-fz-13 {
		font-size: 13px !important;
	}

	.mb-fz-14 {
		font-size: 14px !important;
	}

	.mb-fz-15 {
		font-size: 15px !important;
	}

	.mb-fz-16 {
		font-size: 16px !important;
	}

	.mb-fz-17 {
		font-size: 17px !important;
	}

	.mb-fz-18 {
		font-size: 18px !important;
	}

	.mb-fz-19 {
		font-size: 19px !important;
	}

	.mb-fz-20 {
		font-size: 20px !important;
	}
	
	body{
	  padding: 0 3%!important;
	}

	.container {
		padding-left: 3%;
		padding-right: 3%;
	}

	.mobile-btn-all {
		opacity: 1;
		visibility: visible;
	}

	#header .pc-header {
		display: none;
	}

	.mobile-logo {
		display: flex;
	}

	.mobile-logo {
		width: 80vw;
		position: absolute;
		top: 50%;
		left: 3%;
		z-index: 100;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	#header {
		height: 5rem;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		background-color: #fff;
		box-shadow: 0px 0px 10px #ddd;
	}

	.banner {
		height: 20rem;
	}

	.banner .mySwiperbanner .title-box h2 {
		overflow: hidden;
		display: -webkit-box;
		text-align: justify;
		line-height: 1.5;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}

	.banner .mySwiperbanner .title-box .bottom-box {
		display: none;
	}
	
	.page-News .left-box .myNews .swiper-wrapper .swiper-slide{
	  height:20rem;
	}

	.page-News .right-box ul li {
		width: 100%;
		height: auto;
		padding: 10px;
		margin-bottom: 2rem;
	}

	.page-News .right-box ul li:last-child {
		margin-bottom: 0px;
	}

	.top h1 {
		font-size: 1.25rem;
	}

	.page-News .right-box ul li a p {
		font-size: 1rem;
	}

	.page-News .left-box .myNews .btns {
		right: 10px;
		width: 20%;
	}

	.page-News .left-box .myNews .swiper-wrapper .swiper-slide .bottom-box {
		padding: 0 10px;
		width: 100%;
	}
	
	.page-News .left-box .myNews .swiper-wrapper .swiper-slide .bottom-box p{
	  width:70%;
	}

	.page-News .right-box ul li a:last-child {
		margin-bottom: 0px;
	}

	.page-Policy {
		flex-direction: column;
		padding-top: 2rem !important;
		padding-bottom: 2rem;
	}

	.page-Policy .left-box .tabs a {
		font-size: 1rem;
		padding: 0 1rem;
	}

	.page-Policy .right-box {
		width: 100%;
		margin-left: 0px;
		margin-top: 2rem;
	}

	.page-Policy .bottom ul {
		height: auto;
	}

	.page-Service .box1 {
		width: 100%;
	}

	.page-Service .box1 .bottom ul {
		height: auto;
	}

	/* footer */
	.footer .footer-bottom {
		flex-direction: column;
		padding: 10px;
		margin-bottom:60px;
	}

	.footer .footer-top {
		flex-direction: column;
		position:initial;
		width:100%;
		padding:1rem 10px;
	}

	.footer .footer-top .left {
		width: 100%;
		flex-direction: column;
	}

	.footer .footer-top .link-box {
		width: 100%;
		margin: 0;
		margin-top: 1rem;
	}

	.footer .footer-top .right {
		margin-top: 1rem;
	}

	.footer .footer-bottom .left-box ul {
		flex-direction: column;
	}

	.footer .footer-bottom .left-box ul li+li {
		margin-left: 0px;
		margin-top: 1.25rem;
	}

	.footer .footer-bottom .left-box span {
		line-height: 1.5;
	}

	.footer .footer-bottom .right-box {
		width: 100%;
		margin-left: 0px;
	}

	.footer .footer-bottom .right-box .right-img {
		text-align: center;
		margin-top: 1rem;
	}

	.footer .footer-bottom .right-box .fang {
		margin-top: 1rem;
		text-align: center;
	}
	.bottom-boxs a .right {
    width: 30%;
}

	/* 02省社概况-现任领导-1 */
	.page-Overview {
		flex-direction: column;
		min-height: auto;
		padding:0px;
	}

	.page-Overview .left-box {
		display: none;
	}

	.page-Overview .right-box .bottom-box ul {
		justify-content: space-between;
		padding: 0;
		flex-direction:column;
	}

	.page-Overview .right-box .bottom-box ul li {
		width: 48%;
		padding: 0;
		margin:0 auto;
	}

	.page-Overview .right-box .bottom-box ul li a .img-box {
		height: 17.25rem;
	}

	/* page-paging */
	.page-paging-box {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	/* 省社概况-现任领导-1 */
	.bannerTwo {
		height: 20rem;
		margin-top: 5rem;
	}

	/* 现任领导详情 */
	.page-Overview .right-box .bottom-box .page-top {
		margin-left: 0;
	}

	.page-Overview .right-box .top-box h1 {
		padding-left: 0px;
		font-size:1.5rem;
	}

	.page-news-box2 {
		margin-left: 0px;
		margin-top: 2rem;
	}

	.page-news-box2 .news-bottom li .info {
		margin-right: 0px;
	}

	.page-news-box2 .news-bottom li a {
		padding: 2rem 0px;
	}

	.page-Overview .right-box .bottom-box .page-top .imgs {
		width: 13.375rem;
		height: 17.25rem;
	}

	.page-Overview .page-nav-box {
		display: flex;
		margin-top: 2rem;
	}

	.page-Overview .page-nav-box img {
		margin-right: 10px;
	}

	.page-Overview .page-nav-box a {
		font-size: 1.25rem;
		color: #a3a3a3;
	}

	.page-Overview .page-nav-box i {
		font-size: 1.25rem;
		padding: 0 4px;
	}

	.page-Overview .right-box .top-box {
		margin-top: 2rem;
	}

	/* 04省社概况-省社机关 */
	.page-Overview .right-box .page-jiguan ul {
		margin-left: 0px;
		justify-content: space-between;
		margin-bottom: 2rem;
	}

	

	/* 05省社要情 */
	.page-Overview .right-box .page-lie {
		margin-left: 0;
		margin-top: 2rem;
	}

	.page-Overview .right-box .page-lie .left {
		width: 50%;
		height: 11rem;
	}

	.page-Overview .right-box .page-lie .right .details-right-sher {
		display: none;
	}

	.page-Overview .right-box .page-lie .right {
		width: 50%;
		padding-right: 0px;
	}

	.page-lie .page-bottom-box ul {
		margin-top: 2rem;
	}

	.page-lie .page-bottom-box li>a {
		padding-right: 0px;
	}

	.page-lie .page-bottom-box li .img-box {
		width: 50%;
		height: 11rem;
	}

	.page-lie .page-bottom-box li .info .bottom-nav {
		display: none;
	}

	.page-lie .page-bottom-box li .info {
		height: auto;
	}

	.page-lie .page-bottom-box .page-paging-box {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	/* 06通知公告 */
	.page-box1 {
		flex-direction: column;
		padding-top: 6rem;
	}

	.page-box1 .left-box {
		padding: 0 10px;
	}

	.page-box1 .left-box .bottom-box ul .page-paging-box {
		text-align: center;
	}

	.page-paging-box a {
		font-size: 1rem;
	}

	.page-box1 .right-box {
		width: 100%;
		padding: 0 10px;
	}

	/* 07专题专栏 */
	.page-news-box3 .page-top-box>ul {
		flex-wrap: wrap;
	}

	.page-news-box3 .page-top-box>ul>li {
		width: 100%;
		margin-bottom: 10px;
	}

	.page-news-box3 ul li a .page-img-box {
		height: 16.5rem;
	}

	/* 08详情页 */
	.page-news-box4 {
		margin-left: 0;
		margin-top: 2rem;
	}

	.page-news-box4 .page-top-box ul {
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.page-news-box4 .page-top-box ul li {
		margin-bottom: 10px;
		width:50%;
	}
	
	.page-news-box4 .page-top-box ul li:nth-last-child(4){
	  width:100%;
	}


	.page-news-box4 .page-top-box ul li:last-child {
		width: 100%;
	}

	.page-news-box4 .page-fanhui {
		padding-top: 2rem;
		padding-bottom: 2rem;
		flex-direction:column;
	}
	
	.page-news-box4 .page-fanhui .right{
	  margin-left:0px;
	  margin-top:2rem;
	}

	/* 09图片新闻 */
	.page-box2 .right-box .bottom-box ul li {
		width: 49%;
		height: ;
	}

	.page-box1 .right-box .bottom-box .img-box {
		height: 8.375rem;
	}

	.page-box2 .right-box .bottom-box ul li a .title-box {
		padding: 10px;
	}

	/* 11网站地图 */
	.content_nei {
		margin: 10px;
	}

	.guide_b {
		flex-wrap: wrap;
	}

	.guide_b li {
		width: 100%;
		font-size: 0.875rem;
		margin-right: 10px;
	}

	.guide_b li>a {
		font-size: 1.125rem;
	}

	.guide_c>a {
		font-size: 1rem;
	}

	/* 12意见反馈 */
	.page-form-box .img-box,
	.page-form-box .right-form::before {
		display: none;
	}

	.page-box3 .page-content-info-box .container {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.page-box3 .page-content-info-box .box-wrap {
		padding: 10px;
	}

	.page-box3 .page-form-box,
	.page-box3 .page-form-box .right-form {
		padding: 0;
		border: none;
	}

	.page-box3 .page-form-box .right-form .gropu-box .form-gropu:last-child {
		width: 70%;
	}
	
	.page-box3 .page-form-box .right-form::before{
		display: none;
	}
	
	
	/* 13简介 */
	.page-Overview .right-box .page-news-box5{
		margin-left: 0px;
		margin-top: 2rem;
		padding-bottom: 2rem;
	}
	
	.xs-box a{
	  height:auto;
	}
	
	.index_foot{
	  display:flex;
	  left:0px;
	}
	
	/* 15子网站 */
	.page-zwz-nav{
		margin-top: 7rem;
	}
	
	.page-wz-box{
		flex-direction: column;
	}
	
	.page-wz-box .left-box .wz-bottom{
		flex-direction: column;
		margin-bottom: 2rem;
	}
	
	.page-wz-box .left-box .wz-bottom .left-zwz,
	 .page-wz-box .left-box .wz-bottom .left-zwz{
		width: 100%;
	}
	
	.page-wz-box .left-box .wz-bottom .right-zwz{
		width: 100%;
	}
	
	.page-wz-box .left-box{
		width: 100%;
	}
	
	.page-wz-box .right-box{
		width: 100%;
		margin-left: 0px;
	}
	
	.articleList-box .articleList-box2{
		width: 100%;
	}
	
	.articleList1{
		margin-bottom: 10px;
	}
	
	.page-News2 .left-box{
	  width:100%;
	}
	
	.footer .footer-bottom .left-box ul li:first-child{
	  flex-direction:column;
	}
	
	.footer .footer-bottom .left-box ul li div{
	  width:100%;
	}
	
	.footer .footer-bottom .left-box ul li div+div{
	  margin-left:0px;
	  margin-top:10px;
	}
	
	.footer .footer-bottom .left-box ul{
	  margin-bottom:1rem;
	}
	
	.xs-box{
	  padding:10px!important;
	}
	
	.footer .footer-bottom .left-box .title-box{
	  flex-direction:column;
	}
	
	.footer .footer-bottom .left-box .title-box p{
	  text-align:left;
	}
	
	.footer .footer-bottom .left-box .title-box p+p{
	  margin-top:10px;
	}
	
	.footer .footer-bottom .left-box ul li a{
	  font-size:0.875rem;
	}
	
	.page-hotBox .hotBox .hot-swiper{
	  padding:0 10px;
	}
	
	.page-hotBox .hotBox .hot-swiper .myHot .swiper-wrapper .swiper-slide a .silde-img{
	  height:13rem;
	}
	
	.page-hotBox .hotBox .head{
	  height:19rem;
	  padding-top:0px;
	}
	
	.hotBox .hot-swiper .next,
	.hotBox .hot-swiper .prev{
	  display:none;
	}
	
	.page-Overview .right-box{
	  padding:0 10px;
	}
	
	.mobile-logo>.box1{
	  width:55vw;
	}
	
	.mobile-logo>.box2{
	  width:15vw;
	}
	
	.mobile-logo>.box2>img{
	  width:100%;
	}
}


#roll1,
#roll2,
#roll3 {
    /*width: 150px;
    height: 150px;*/
    padding: 5px;
    padding-top: 25px;
    padding-bottom: 5px;
    background: #fff;
    box-sizing: border-box;
    position: fixed;
    cursor: pointer;
    left: 0;
    top: 0;
    float: right;
    background: none;
    z-index: 999 !important;
}






#roll .close,
#roll2 .close,
#roll3 .close {
    position: absolute;
    width: 35px;
    height: 25px;
    border-radius: 50%;
    /* border:1px solid #ccc; */
    font-size: 14px;
    right: 12px;
    top: 5px;
    /* background:url(../images/index/close.png); */
    /* background-color:#fff; */
}
#roll2 .pcer {
    width: 150px;
    height: 150px;
    /* background: url(../images/ztzl/allztimg/sylzlddzztpc.jpg) no-repeat bottom center; */
    margin: 0 auto;
}
#roll2 a {
    display: block;
    width: 120px;
    height: 100%;
}

