* {
	padding: 0;
	margin: 0;
	position: relative;
	box-sizing: border-box;
	outline:none;
	list-style: none;
	text-decoration: none;
	outline: none;
	color: rgb(74,74,74);
}

p {
	line-height: 32px;
}

@font-face {
  font-family: "iconfont"; /* project id 4757523 */
  src:  format('woff2'),
        format('woff'),
        format('truetype');
}

.animate {
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-open:before {
  content: "\e002";
}

.icon-close:before {
  content: "\e001";
}

.icon-dot:before {
  content: "\e003";
}

html , body {
	font-size: 16px;
	font-family: microsoft yahei;
}

body {
	background: url(/uploads/image/xxiimages/information-background.png) no-repeat center top;
	background-size: 100% 1099px;
}

header {
	width: 1100px;
	height: 365px;
	margin: 0 auto;
}

header h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-size: 100px;
	font-family: microsoft yahei;
	font-weight: bold;
	color: rgba(255, 255, 255, 1);
	text-shadow: 0 5px 0 rgb(0 0 0 / 20%);
	text-align: center;
	padding-top: 10px;
}

header h1::after {
	content: "";
	position: absolute;
	height: 2px;
	width: 488px;
	bottom: 100px;
	right: 150px;
	background: #fff;
}

header .group {
	position: absolute;
	z-index: 9;
	top: 20px;
	left: 0;
	width: 100%;
	height: 80px;
	line-height: 75px;
	font-size: 35px;
	color: #fff;
	background: url(/uploads/image/xxiimages/emblem.png) no-repeat;
	background-size: 70px auto;
	background-position: left center;
	padding-left: 80px;
}

header .group * {
	color: #fff;
}

section {
	width: 1100px;
	margin: 0 auto;
	padding: 0 36px;
	background: rgb(242, 242, 242);
}

footer {
	margin-top: 50px;
	width: 100%;
	height: 180px;
	background: #2d66a5;
	background: url(/uploads/image/xxiimages/information-background.png) no-repeat center top;
	background-size: 100% 1099px;
	background-position: center top;
}

.footer {
	width: 100%;
	max-width: 1100px;
	height: 100%;
	margin: 0 auto;
	display: flex;
}

.footer .site {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: left;
	justify-content: center;
}

.footer .site p * {
	color: #fff;
	display: inline-block;
	margin: 0 30px 0 0;
}

.footer .site p a {
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 30px;
}

.footer .site p a:hover {
	color: #ccc;
}

.footer .logo {
	flex: 1 1 auto;
	display: flex;
	justify-content: right;
	align-items: center;
}

.footer .logo a {
	margin-right: 15px;
}

.footer .logo img {
	height: 60px;
}

.search-box {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 218px;
}

.search-box input , .search-box button {
	height: 50px;
	border: rgb(45, 102, 165) 2px solid;
	background: #fff;
	padding: 10px;
}

.search-box input {
	border-top-left-radius: 9px;
	border-bottom-left-radius: 9px;
	border-right: none;
	width: 450px;
}

.search-box button {
	border-top-right-radius: 9px;
	border-bottom-right-radius: 9px;
	border-left: none;
	width: 60px;
	background: url(/uploads/image/xxiimages/search-icon.png) no-repeat center center #fff;
	background-size: 50%;
	cursor: pointer;
}

.search-box::before , .search-box::after {
	position: absolute;
	content: "";
	width: 240px;
	height: 2px;
	background: rgb(224, 224, 224);
}

.search-box::before {
	left: 0;
}

.search-box::after {
	right: 0;
}

.content {
	display: flex;
	justify-content: space-between;
	padding-bottom: 36px;
}

.content .left-sub {
	width: 240px;
	
}

.left-sub .sub-item {
	margin-bottom: 15px;
	background: #fff;
}

.left-sub .sub-item .sub {
	display: flex;
	width: 240px;
	height: 70px;
	flex: 1 1 auto;
	cursor: pointer;
}

.left-sub .sub-item.curr .sub , .left-sub .sub-item:hover .sub {
	color: #fff;
	background-color: rgb(45,102,165);
}

.left-sub .sub-item .sub .icon {
	display: flex;
	width: 70px;
	height: 70px;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.left-sub .sub-item .sub .icon img {
	display: block;
	width: 40px;
	height: 40px;
	filter: drop-shadow(70px 0 0 rgb(45,102,165));
	margin-left: -140px;
}

.left-sub .sub-item:hover .sub .icon img , .left-sub .sub-item.curr .sub .icon img {
	filter: drop-shadow(70px 0 0 rgb(255,255,255));
}

.left-sub .sub-item .sub h4 , .left-sub .sub-item .sub a {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 23px;
	font-weight: normal;
	
}

.left-sub .sub-item .sub * {
	color: rgb(45,102,165);
}

.left-sub .sub-item.curr .sub * , .left-sub .sub-item:hover .sub * {
	color: #fff;
}

.left-sub .sub-item .sub label {
	width: 70px;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
}

.left-sub .sub-item .sub label.iconfont {
	cursor: pointer;
}

.left-sub .sub-item ul {
	height: 0;
	overflow: hidden;
}

.left-sub .sub-item ul.open {
	height: auto;
}

.left-sub .sub-item ul a {
	display: flex;
	align-items: center;
	height: 32px;
	padding-bottom: 2px;
	padding-left: 40px;
	margin: 5px 0;
}

.left-sub .sub-item ul a::before {
	margin-right: 10px;
	content: "\e003";
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
}

.left-sub .sub-item ul a:hover , .left-sub .sub-item ul a.curr {
	background: rgb(230, 245, 255);
}

/*
信息公开通用内容区域
*/
.content .right-box {
	width: 770px;
	overflow: hidden;
	background: #fff;
}

/*
滚动条盒子
*/
.content .right-box .scroll-box {
	overflow-x: hidden;
	overflow-y: auto;
}
/*
单页面内容
*/
.content .right-box .page {
	height: 937px;
	padding: 0 15px 30px 15px;
	margin: 0 15px;
}

.content .right-box .page.scroll-box * {
	max-width: 100%;
}
/*
3级栏目
*/
.content .right-box .child-box {
	height: 1172px;
}

/*
文章列表页
*/
.content .right-box .list-box {
	height: 735px;
	padding: 30px 20px 35px 20px;
}


/*
信息公开区域滚动条
*/
.content .right-box .scroll-box::-webkit-scrollbar {
    box-sizing: border-box;
    width: 10px;
    height: 10px;
	border-radius: 5px;
}

.content .right-box .scroll-box::-webkit-scrollbar-thumb {
    background-color: #2d66a5;
    border-radius: 5px;
}

.content .right-box .scroll-box::-webkit-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0.15);
	border-radius: 5px;
}

/*
信息公开内容页标题
*/
.content .right-box .content-title {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 108px;
	font-size: 32px;
	font-weight: bold;
	color: rgb(45, 102, 165);
	padding: 10px 15px;
	line-height: 140%;
}

.content .right-box .sub-title {
	display: flex;
	height: 40px;
	font-size: 15px;
	justify-content: space-evenly;
}

.content .right-box .sub-title i {
	font-style: normal;
	display: inline-block;
	margin: 0 5px;
	cursor: pointer;
}

/*
三级栏目内容盒子
*/
.content .right-box .child-box .child-item {
	padding-bottom: 30px;
}

.right-box .child-title {
	color: #fff;
	height: 35px;
}

.right-box .child-title::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: #ccc;
}

.right-box .child-title label {
	display: block;
	float: left;
	min-width: 110px;
	height: 35px;
	line-height: 34px;
	letter-spacing: 1px;
	text-align: center;
	background: rgb(45,102,165);
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	padding: 0 15px;
}

.child-box .child-item .child-list {
	padding: 30px 25px 25px 25px;
}

.child-box .child-item .child-list a {
	display: block;
	margin-bottom: 15px;
}

.child-box .child-item .child-list a span {
	float: right;
	color: rgb(151, 151, 151);
}

.child-box .child-item .child-list a:hover {
	color: rgb(45,102,165);
}


.child-box .child-item .child-more a {
	display: block;
	width: 100px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: rgb(230,230,230);
	margin: 0 auto;
}

.child-box .child-item .child-more a:hover {
	background: rgb(45,102,165);
	color: #fff;
}

/*
文章列表页
*/
.list-box {
	display: flex;
	flex-direction: column;
}

.list-box .list {
	flex: 1 1 auto;
}

.list-box .list a {
	display: block;
	padding: 15px 0;
	letter-spacing: 1px;
}

.list-box .list .top:last-child {
	border-bottom: #ccc 1px solid;
	padding-bottom: 30px;
}

.list-box .list a:hover {
	color: rgb(45, 102, 165);
}

.list-box .list a span {
	display: inline-block;
	float: right;
	color: rgb(151, 151, 151);
}

/*
分页样式
*/
#page-div{margin:0 auto;text-align: center;margin-top: 20px;flex-shrink: 0;height: 60px;}
.pagination-first,.pagination-last{margin: 10px 0;}
.pagination-index,.pagination-num{border: 1px solid #3871a6;margin: 0 3px;padding:0 15px;display: inline-block;border-radius: 3px;color: #3871a6;}
.pagination-num.active,.pagination-index:hover,.pagination-num:hover{background: #3871a6;color: white;}
.pagination-last span{margin: 0 5px;}
.pagination-last input{height: 18px;width: 30px;text-align: center;}