@charset "utf-8";

body {
	padding: 0;
	margin: 0 auto;
	border: 0;
	font-family: "Microsoft YaHei", "arial";
	position: relative;
}


/**宽度**/
.container {
	margin: 0 auto;
	transition: 0.5s;
	max-width: 1200px;
}



/* header */
header {
	background: #fff;
	position: relative;
	z-index: 1000;
}

header>.container {
	display: flex;
	justify-content: space-between;

}

header .logo {
	display: block;
}

header .logo img {
	display: block;
	width: 100%;
}

header nav {
	display: flex;
	align-items: center;
	font-size: 18px;
	line-height: 106px;
}

header nav p {
	width: 1px;
	height: 1em;
	background: #ccc;
	margin: 0 10px;
}

header nav div {
	position: relative;
}

header nav a {
	display: block;
	padding: 0 1.5em;
	position: relative;
	z-index: 2;
	color: #666;
}

header nav a:hover {
	color: var(--col1);
}

header nav div.index::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 90%;
	background: var(--col2);
	border-radius: 0 0 1em 1em;
}

header nav div.index a {
	color: #fff !important;
}

.nav-find {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
	transition: .5s;
	transform: translateY(-200px);
	display: flex;
	justify-content: center;
	font-size: 16px;
	line-height: 2;
	background: rgba(255, 255, 255, .8);
	padding: 20px;
}

.nav-find li {
	margin: 0 15px;
}

.nav-find li a {
	color: #333;
}

.nav-find li a:hover {
	color: var(--col3);
}

.nav-find.show {
	transform: translateY(106px);
}

header .search-btn {
	display: flex;
	align-items: center;
}

header .search-btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: #000;
}

header .search-btn.show a,
header .search-btn a:hover {
	color: var(--col3);
}

.search-box {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.2);
	z-index: 990;
	transition: .5s;
}

.search-box.show {
	top: 106px;
}

.search-box form {
	display: flex;
	justify-content: flex-end;
	padding: 15px 0;
}

.search-box input[type='text'] {
	background: #fff;
	width: 300px;
	font-size: 14px;
	line-height: 2.5em;
	height: 2.5em;
	padding: 0 10px;
	color: #666;
}

.search-box input[type='submit'] {
	background: var(--col2);
	width: 6em;
	font-size: 14px;
	line-height: 2.5em;
	height: 2.5em;
	padding: 0 10px;
	color: #fff;
	cursor: pointer;
	transition: .5s;
}

.search-box input[type='submit']:hover {
	background: var(--col3);
}

/* 底部样式 */
footer {
	background-position: top center;
	background-size: auto 100%;
	background-repeat: no-repeat;
	color: #fff;
	line-height: 2em;
	font-size: 14px;
	text-align: center;
	padding-top: 45px;
	height: 340px;
}

footer a {
	color: #ccc;
}

footer a:hover {
	color: #fff;
}

footer .logo {
	display: block;
	margin: 0 auto 15px;
}

footer .container {
	position: relative;
}

footer .erweima {
	position: absolute;
	display: block;
	width: 120px;
	right: 10%;
	top: 50%;
	margin-top: -60px;
}

/* 板块标题 */
.column-title {
	position: relative;
	margin-bottom: 50px;
	color: var(--col2);
	font-size: 24px;
	line-height: initial;
	text-transform: uppercase;
	text-align: center;
}

.column-title p {
	line-height: 45px;
	background: url(../img/bg-tit.png) no-repeat center center;
}

.column-title.bt2 * {
	color: #fff !important;
}

.column-title .title {
	z-index: 3;
	font-size: 46px;
	font-weight: bold;
	color: #333;
}

/* 图片标题 */
.img-bt {
	display: block;
	height: 90px;
	margin: 0 auto 50px;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}



/* 按钮 */
.moreBtn {
	width: 46px;
	height: 46px;
	border-radius: 100%;
	background: var(--col2) url('../img/icon-btn.png') no-repeat center center / 100%;
	display: block;
	cursor: pointer;
	margin: 60px auto 0;
}

.moreBtn.hover,
.moreBtn:hover {
	background-color: var(--col1);
}

/***分页***/
.pagebox {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 0 80px;
}

.pagelist {
	background: var(--col2);
	padding: 10px;
	display: flex;
	justify-content: center;
	font-size: 20px;
	text-align: center;
	position: relative;
	z-index: 2;
}

.pagelist li {
	color: #666 !important;
	margin: 0 5px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px #fff;
}

.pagelist li:nth-child(1),
.pagelist li:nth-child(2),
.pagelist li:nth-last-child(2),
.pagelist li:last-child {
	width: 6em;
}

.pagelist li a {
	display: block;
	color: #fff;
	text-decoration: none;
	transition: 0.5s;
}

.pagelist strong {
	margin: 0 5px;
	font-weight: normal;
}

.pagelist .thisclass {
	width: 400px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border: solid 1px #fff;
}

.pagelist li.active {
	background: #fff;
	border: none;
}


.pagelist li a[href]:hover {
	color: #fff;
}

.pagelist li.active a {
	color: var(--col2);
}


/* 上一页 下一页 */
.prenext {
	font-size: 16px;
	line-height: 2em;
	color: #333;
	position: relative;
	margin: 3em auto 0;
	border-top: solid 1px #ccc;
	padding-top: 3em;
}

.prenext .return {
	display: block;
	width: 6em;
	text-align: center;
	font-size: 24px;
	color: var(--col2);
	font-weight: bold;
	line-height: 1.5em;
	border-left: solid 3px var(--col2);
	border-right: solid 3px var(--col2);
	margin-bottom: 15px;
}

.prenext a {
	color: #333;
}

.prenext a:hover {
	color: var(--col2);
}



/* 弹出层 */
#outerdiv {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999999999999;
	width: 100%;
	height: 100%;
	display: none;
}

#outerdiv #innerdiv {
	left: 0 !important;
	top: 0% !important;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

#outerdiv #innerdiv img {
	display: block;
	max-height: 90vh;
}


.showImg {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999;
	left: 0;
	top: 0;
	display: none;
}

.showImg.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

.showImg .showImg-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.showImg .showImg-box img {
	display: block;
	max-width: 60vw;
	border: solid 5px #fff;
}

.showImg .bg {
	background: rgba(0, 0, 0, .7);
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	left: 0;
	top: 0;
}