/* 顶部 */
.site-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding-right: 1em;
	background-image: url(/images/phonebg.jpg);
}

.site-head .wza-bar {
	display: none;
}
.site-head .header-con {
	width: 100%;
	height: 9em;
	margin: 0 auto;
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-position: center 1px;
	background-size: 100% auto;
}
.site-head .header-con h1 {
	font-size: 2em;
	font-weight: 700;
	color: #b50000;
	text-align: left;
	margin-left: 1em;
}
.site-head .header-con .mongo-title {
	margin-left: 2em;
}
.site-head .mongo-title img {
	width: 20%;
}

.site-head .header-con .search-box {
	width: 90%;
	margin: 1em;
}
.site-head .header-con .search-box input {
	float: left;
	width: 55%;
	height: 3em;
	border: 2px solid #b50000;
	/* 分别按四个角进行设置 */
	border-radius: 10px 0 0 10px;
	/* 取消默认的外线（外线是文本框特有的东西） */
	outline: none;
	padding-left: 1em;
}
.site-head .header-con .search-box .search-btn {
	float: left;
	width: 18%;
	height: 3em;
	background-color: #b50000;
	color: white;
	text-align: left;
	font-weight: 700;
	border-radius: 0 10px 10px 0;
}

/* 导航栏 */
.site-head details {
	top: 0;
}
.site-head summary {
	position: relative;
	cursor: pointer;
	list-style: none;
	width: 3rem;
	height: 2.8rem;
	top: 0;
	right: 0;
}
.site-head summary span {
	display: block;
	width: 3rem;
	height: 0.6rem;
	background-color: #b50000;
	transition: 0.3s;
	position: absolute;
}
.site-head summary span:first-child {
	top: 0;
}
.site-head summary span:nth-child(2) {
	top: calc(50% - 0.3rem);
}
.site-head summary span:last-child {
	bottom: 0;
}

.site-head details[open] span:first-child {
	top: calc(50% - 0.3rem);
	transform: rotate(-45deg);
}
.site-head details[open] span:last-child {
	bottom: calc(50% - 0.3rem);
	transform: rotate(45deg);
}
.site-head details[open] span:nth-child(2) {
	display: none;
}

.site-head .main-nav {
	position: absolute;
	right: 0;
	top: 100%;
	width: 100%;
	height: 0;
	background-color: #cc2121;
	transition: height 0.75s ease;
	overflow: hidden;
}

.site-head details[open] ~ .main-nav {
	height: calc(50em - 100%);
	overflow: auto;
}
.site-head .main-nav ul {
	padding: 0 1em;
}
.site-head .main-nav ul li {
	font-size: 1.5em;
	border-bottom: 1px solid #eee;
	padding-block: 0.8em;
}

.site-head .main-nav ul li:first-child {
}
.site-head .main-nav ul li:last-child {
}

.site-head .main-nav ul li a {
	color: #fff;
}

.float-container {
	display: none;
}
.aadd1 {
	display: none;
}
/* 热点新闻 */
.news-main {
	margin-top: 2px;
}
.news-left {
	width: 100%;
	height: auto;
}
.news-left .topnews {
	width: 100%;
	height: 12.5em;
}
.news-left .topnews ul {
	width: 100%;
	height: 12em;
	margin-bottom: 1em;
}

.news-left .topnews ul li {
	float: left;
	width: 49%;
	height: 12em;
}

.news-left .topnews img {
	width: 99%;
	height: 12em;
}
.news-left .news-content {
	width: 100%;
	height: auto;
	background-color: #cc2121;

	box-sizing: border-box;
}
.news-left .news-content .news-nav {
	width: 100%;
	height: 43px;
	display: inline;
}
.news-left .news-content .news-nav span a {
	float: right;
	color: #ffffff;
	width: 2em;
	line-height: 2em;
	font-size: 2em;
	font-weight: 700;
}
.news-left .news-content .news-nav ul {
	height: 43px;
}
.news-left .news-content .news-nav ul li {
	float: left;
	margin-right: 60px;
	font-size: 24px;
	font-weight: 700;
	line-height: 43px;
}
.news-left .news-content .news-nav ul li a {
	color: #ffffff;
}
.news-left .news-content .news-list {
	width: 766px;
	height: 242px;
	display: inline;
}
.news-left .news-content .news-list ul {
	margin-top: 20px;
}
.news-left .news-content .news-list ul li {
	color: #ffffff;
	height: 32px;
	line-height: 32px;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 10px;
}
.news-left .news-content .news-list ul li span {
	float: right;
	color: #ffffff;
}
.news-left .news-content .news-list ul li a {
	color: #ffffff;
}
.news-left .news-content .news-list li:hover {
	background-color: #b50000;
	transition: all 0.5s;
}
/* 通知公告 */
.news-right {
	width: 100%;
	height: auto;
}
.news-right .notice {
	width: 100%;
	height: auto;
	opacity: 1;
	background-color: #fff;
	padding: 0.5em;
	box-sizing: border-box;
}
.news-right .notice .spec-title {
	width: 100%;
	font-size: 3em;
	font-weight: 700;
	color: #242424;
	text-align: left;
}
.news-right .notice .notice-word {
	height: auto;
	margin: 1em auto;
}

.news-right .notice .notice-word ul {
	width: 100%;
	height: auto;
}
.news-right .notice .notice-word ul li {
	float: left;
	margin-bottom: 1em;
	width: 100%;
	height: 5em;
	border-bottom: 1px solid #666666;
}
.news-right .notice .notice-word ul li:last-child {
	border: none;
}
.news-right .notice .notice-word ul li .word-box .notice-time {
	float: left;
	width: 20%;

	border-right: 1px solid #666666;
	box-sizing: border-box;
	padding-top: 4px;
}

.news-right .notice .notice-word ul li .word-box .notice-time .d {
	color: #cc2121;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}
.news-right .notice .notice-word ul li .word-box .notice-time .ym {
	text-align: center;
}
.news-right .notice .notice-word ul li .word-box .notice-list {
	float: left;
	width: 80%;
	font-size: 1.3em;
	font-weight: 500;
	color: #666666;
	padding: 3px 0 0 15px;
	box-sizing: border-box;
}
.notice-list:hover {
	background-color: #eee;
	transition: all 0.5s;
}

/* 局长邮箱 */
.mail {
	height: auto;
	margin-bottom: 46em;
}
.mail ul {
	width: 100%;
	background-color: #b50000;

	float: left;
}
.mail ul li {
	float: left;
	width: 13%;
	text-align: center;
}
.mail ul li:first-child {
	/* margin-left: 0.5em; */
}
.mail ul li:last-child {
	/* margin-right: 0; */
}
.mail ul li img {
	text-align: center;
	width: 100%;
}
.mail ul li span {
	display: block;
	text-align: center;
	font-size: 1.5em;
	font-weight: 700;
	color: #ffffff;
}
/* 交互区 */
/* 意见征集 */
.yjzj {
	width: 100%;
	height: auto;
}
.yjzj .opinion {
	width: 100%;
	height: auto;
}
.yjzj .opinion .yjzj-word {
	width: 100%;
}
.yjzj .opinion .yjzj-word ul li {
	font-size: 1.5em;
	font-weight: 500;
	margin-bottom: 1em;
}
.yjzj-word li:hover {
	background-color: #eee;
	transition: all 0.5s;
}
.yjzj .opinion .yjzj-word span {
	float: right;
	font-size: 18px;
	font-weight: 500;
	color: #b3b3b3;
}
.yjzj .teacher {
	width: 100%;
	height: auto;
}
.yjzj .teacher .teacher1 {
	width: 100%;

	margin-bottom: 20px;
}
.yjzj .teacher ul {
	height: auto;
}
.yjzj .teacher ul li {
	width: 100%;
	font-size: 1em;
	font-weight: 400;
	color: #000000;
}
.yjzj .teacher ul li img {
	width: 100%;
}
.yjzj .teacher .teacher2 {
	height: 200px;
	float: left;
}
.yjzj .yjzj-title {
	background-image: url(../images/yjzj/line.png);
	background-repeat: repeat-x;
	background-position: left bottom;
	background-position: 0px 33px;
	background-size: 135px 9px;
	margin-bottom: 1em;
}

.yjzj h2 {
	font-size: 2em;
	font-weight: 500;
	color: #cc2121;
	text-align: left;
	margin-bottom: 10px;
	width: 100%;
}
/* 政府信息 */
.govinfo-content {
	width: 100%;
	height: auto;
	margin-bottom: 20em;
}
.govinfo-content .gov-title {
	width: 100%;
	height: 43px;
	font-size: 2em;
	font-weight: 700;
	color: #ffffff;
	text-align: left;
	padding-left: 10px;
}
.govinfo-content .gov-title span {
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 20px;
	font-weight: 500;
	color: #b50000;
	box-sizing: border-box;
	border: 1px solid #cc2121;
	border-radius: 44px;
	display: inline-block;
	text-align: center;
	padding: 5px;
	width: 107px;
	height: 30px;
	line-height: 20px;
}
.govinfo-content .gov-page {
	width: 100%;
	height: auto;
}
.govinfo-content .gov-page ul {
	width: 100%;
	float: left;
}
.govinfo-content .gov-page ul li {
	width: 32%;
	float: left;
	border: 1px solid #cc2121;
}
.govinfo-content .gov-page ul li:hover {
	border-right: 0px solid #616161;
}
.govinfo-content .gov-page ul li:last-child {
	margin-right: 0;
}
.govinfo-content .gov-page ul li img {
	margin: 20px 60px 10px 60px;
	width: 100%;
	height: 53px;
}
.govinfo-content .gov-page ul li h3 {
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
	color: rgba(77, 77, 77, 1);
	text-align: center;
}

.govinfo-content .gov-page div {
	width: auto;
	height: 54px;
	cursor: pointer;
	padding-top: 25px;
	padding-bottom: 25px;
	background-position: center 5px;
	background-repeat: no-repeat;
	overflow: hidden;
}

.govinfo-content .gov-page div:hover {
	background-color: #b50000;
	border-radius: 5px;
	color: #ffffff;
	background-position: center -54;
	transition: all 0.5s;
}
.govinfo-content .gov-page div p {
	height: 54px;
	line-height: 106px;
	text-align: center;
	font-size: 1.5em;
	font-weight: 600;
}

.spec-column {
	height: 180px;
	margin-bottom: 65px;
	display: none;
}
.spec-title {
	text-align: center;
	padding-top: 15px;
	box-sizing: border-box;
}

.spec-title-word {
	font-size: 2em;
	font-weight: 700;
}

.spec-title-word .st {
	color: #ba3232;
}

.spec-column .spec-list ul {
	float: left;
	margin-top: 30px;
	margin-left: 30px;
}
.spec-column .spec-list ul li {
	float: left;
	margin-right: 30px;
}

.more_nav {
	float: right;

	cursor: pointer;
	font-size: 0.8em;
	font-weight: 400;
	overflow: hidden;
}

.more_nav:hover {
	color: #ff6600;
	background-position: 56px center;
	transition: all 0.5s;
}

footer {
	background-color: #b50000;
	height: 19em;
}

footer .r1 ul {
	float: left;
	margin-top: 1em;
	margin-bottom: 1em;
	width: 100%;
	display: none;
}
footer .r1 ul li {
	float: left;
	width: 33%;
}
footer .r1 ul li:last-child {
	margin-right: 0;
}
footer .r1 ul li select {
	width: 100%;
	height: 3em;
	text-align: center;
	font-size: 1em;
	font-weight: 400;
	background-color: #fff;
}
footer .r2 {
	float: left;
	height: 275px;
}
footer .r2 .r2-img {
	width: 100%;
	text-align: left;
	margin: 0 1em;
	display: none;
}
footer .r2 .r2-img .img1 img {
	width: 150px;
	height: 75px;
	margin-right: 20px;
}
footer .r2 .r2-img .img2 img {
	width: 75px;
}
footer .r2 .r2-word {
}
footer .r2 .r2-word .short-links {
	margin: 0 1em;
	height: 3em;
}
footer .r2 .r2-word .short-links li a {
	color: #fff;
	float: left;
	font-size: 2em;
	font-weight: 700;
}
footer .r2 .r2-word .footer-text {
	margin: 0 1em;
}
footer .r2 .r2-word .footer-text li {
	color: #fff;
	font-size: 1em;
	font-weight: 400;
}
