* {
	margin: 0;
	padding: 0;
}

body {
	background-color: #f7fafb;
	position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
em,
i {
	font-weight: 100;
	font-style: normal;
}

ul,
ol,
li {
	list-style-type: none;
}

a {
	color: #666;
	text-decoration: none;
	outline: 0;
	font-weight: 400;
	font-family: "微软雅黑";
}

a:hover {
	text-decoration: none;
}

/* footer end */
/* 滚动条 */
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

/* 滚动槽 */
::-webkit-scrollbar-track {
	box-shadow: inset 6px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 6px rgba(161, 73, 73, 0.3);
	-moz-box-shadow: inset 6px rgba(0, 0, 0, 0.3);
	-ms-box-shadow: inset 6px rgba(0, 0, 0, 0.3);
	-o-shadow: inset 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.3);
	/* background: linear-gradient(360deg, #3991F5 0%, #3067E3 100%); */
	box-shadow: inset 6px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: inset 6px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: inset 6px rgba(0, 0, 0, 0.5);
	-ms-box-shadow: inset 6px rgba(0, 0, 0, 0.5);
	-o-shadow: inset 6px rgba(0, 0, 0, 0.5);
}

/* ::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(48, 106, 228, 1);
} */
/* 滚动条 end */
#header {
	width: 100%;
	height: 632px;
	box-sizing: border-box;
	background: url(../image/header-bg.jpg) no-repeat center center;
	background-size: cover;
	display: flex;
	justify-content: center;
	position: relative;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
}

.header-top {
	width: 100%;
	height: 43px;
	box-sizing: border-box;
	background-color: rgba(63, 101, 226, .2);
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 999;
}

.top-link {
	width: 1260px;
	display: flex;
	justify-content: space-between;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.top-link.en-enter {
	display: none;
}

.link-left {
	display: flex;
	height: 43px;
	align-items: center;
}

.link-left-item {
	margin-right: 20px;
}

.right-grzx {
	/* margin-left: 79px; */
	display: flex;
	align-items: center;
}

.link-left-item label {
	font-size: 14px;
	color: #d9e6f3;
}

.right-grzx img {
	margin-right: 8px;
}

.link-left-item a {
	font-size: 14px;
	color: #d9e6f3;
}

.link-left-item:last-child {
	margin-right: 0;
}

.link-left-item a:hover {
	color: #fcff41 !important;
}

.code-rain {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 632px;
	left: 0;
	top: 0;
	background: url(../image/code-rain.png) no-repeat center center;
	background-size: cover;
	opacity: 0;
	animation: digitalFlow 5s infinite linear;
	-webkit-animation: digitalFlow 5s infinite linear;
	-webkit-animation-delay: 1.2s;
	-moz-animation-delay: 1.2s;
	-ms-animation-delay: 1.2s;
	-o-animation-delay: 1.2s;
	animation-delay: 1.2s;
	z-index: 1;
}

@keyframes digitalFlow {
	0% {
		opacity: 0;
		transform: translateY(-632px);
		-webkit-transform: translateY(-632px);
		-moz-transform: translateY(-632px);
		-o-transform: translateY(-632px);
		-ms-transform: translateY(-632px);
	}

	50% {
		opacity: 1;
		transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-o-transform: translateY(0px);
		-ms-transform: translateY(0px);
	}

	100% {
		opacity: 0.5;
		transform: translateY(632px);
		-webkit-transform: translateY(632px);
		-moz-transform: translateY(632px);
		-o-transform: translateY(632px);
		-ms-transform: translateY(632px);
	}
}

/* header-center */
.header-center {
	width: 1260px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	padding-top: 34px;
	position: relative;
	z-index: 998;
}

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

.header-center .logo img {
	max-height: 220px;
}

.search {
	width: 725px;
	height: 57px;
	background: #ffffff;
	border-radius: 29px;
	margin-top: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.search select {
	width: 124px;
	height: 100%;
	border: none;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	box-sizing: border-box;
	padding-left: 34px;
	padding-right: 20px;
	color: #3c3c3c;
	font-size: 16px;
	border-right: 1px solid rgba(231, 231, 231, 1);
	background: url(../image/seact-sanj.png) no-repeat 85% center;
	display: none;
}

.search input {
	width: calc(100% - (119px + 124px));
	height: 100%;
	box-sizing: border-box;
	outline: none;
	border: none;
	padding-left: 60px;
	font-family: "微软雅黑";
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
}

.search input::placeholder,
.search input::-webkit-input-placeholder,
.search input::-moz-placeholder,
.search input::-o-placeholder,
.search input::-ms-placeholder {
	color: #b3b3b3;
	font-size: 16px;
}

.search input:focus {
	outline: none;
	border: none;
}

.search-btn {
	width: 119px;
	height: 100%;
	background-color: #3f65e2;
	border: none;
	outline: none;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
}

.search-btn:focus {
	border: none;
	outline: none;
}

.hot-search {
	margin-top: 19px;
	box-sizing: border-box;
	text-align: center;
	display: inline-block;
	width: 100%;
}

.hot-search span,
.hot-search a {
	font-size: 14px;
	color: #fefefe;
	display: inline-block;
}

.hot-search a {
	margin-right: 18px;
}

.hot-search a:hover {
	color: #fcff41 !important;
}

.hot-search a:last-child {
	margin-right: 0px;
}

#nav {
	width: 100%;
	/*height: 90px;*/
	background: rgba(63, 101, 226, .7);
	display: flex;
	justify-content: center;
	/* align-items: center; */
	box-sizing: border-box;
	position: relative;
	z-index: 9999;
}

.nav-list {
	width: 1260px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

select::-ms-expand {
	display: none;
}

.nav-item {
	width: calc(100% / 6);
	height: 90px;
	background: url(../image/nav-item_bg1.png) no-repeat left center;
	text-align: center;
	cursor: pointer;
	position: relative;
}

.nav-item::before {
	content: "";
	width: 99%;
	height: 8px;
	background-color: rgba(255, 255, 255, 0.33);
	display: inline-block;
	position: absolute;
	top: -8px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

.nav-item:hover {
	background: url(../image/nav-item_bg2.png) no-repeat left center;
}

.nav-item.curcol {
	background: url(../image/nav-item_bg2.png) no-repeat left center;
}

.nav-item:hover::before {
	background: rgba(63, 101, 226, .33);
	display: none;
}

.nav-item:last-child {
	box-shadow: 8px 0px 8px rgba(25, 68, 211, .25);
}

.nav-item>a {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	display: inline-block;
	width: 100%;
	line-height: 90px;
}

.nav-item>a:hover {
	color: #fff;
}

.sub-box {
	position: absolute;
	width: 92%;
	height: auto;
	bottom: 90px;
	background: rgba(63, 101, 226, .6);
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	display: none;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.subnav-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	box-sizing: border-box;
	padding-top: 8px;
}

.subnav-item {
	width: calc(100% / 2);
	height: 45px;
	text-align: center;
	display: inline-block;
	box-sizing: border-box;
	/*border-bottom: 1px solid rgba(59, 133, 240, 1);*/
	border-bottom: 1px solid rgba(59, 168, 240, 1);
	position: relative;
	padding-left: 5px;
}

.subnav-item>a {
	font-size: 14px;
	color: #fff;
	line-height: 45px;
	font-weight: bold;
}

.subnav-item:hover a {
	color: #0BD2AD;
	font-weight: bold;
}

/* header-center end */
/* friendlink */
.friendlink {
	width: 100%;
	height: 70px;
	box-sizing: border-box;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.friendlink-list {
	width: 1260px;
	/* height: 44px; */
	align-items: center;
	display: flex;
	/* justify-content: space-between; */
	position: relative;
	background-color: #EEF3F4;
	box-sizing: border-box;
	padding: 0 20px;
}

.friendlink-list>span {
	font-size: 16px;
}

.friendlink-list>li {
	width: calc((100% / 6) - 14px);
	height: 40px;
	text-align: center;
	border-radius: 5px;
	line-height: 40px;
	font-size: 16px;
	color: #414141;
}

.friendlink-list li a {
	font-size: 14px;
	display: block;
	width: 100%;
	height: 100%;
}

.friendlink-list li a:hover {
	color: #EF6210;
}

.friendlink-item span {
	display: inline-block;
	width: 100%;
	height: 100%;
	position: relative;
	padding-right: 14px;
	box-sizing: border-box;
	font-size: 14px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.friendlink-item span::after {
	content: "";
	width: 9px;
	height: 5px;
	display: inline-block;
	position: absolute;
	background: url(../image/jt.png) no-repeat center center;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
}

.friendlink-item:hover span::after {
	transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
}

.subfriendlink-list {
	width: 100%;
	background-color: #fff;
	position: absolute;
	bottom: 44px;
	z-index: 9999;
	box-sizing: border-box;
	left: 0;
	padding: 10px;
	text-align: left;
	display: none;
}

.subfriendlink-item {
	padding: 5px;
	box-sizing: border-box;
	display: inline-block;
	text-align: left;
	width: 172px;
}

/* friendlink end */
/* footer */
#footer {
	width: 100%;
	height: 220px;
	background-color: #3f65e2;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-layout {
	width: 1260px;
	height: 177px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transiton: all 0.3s;
	-o-transition: all 0.3s;
}

.footer-link {
	width: 476px;
	height: 124px;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 5px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	padding: 30px;
}

.footer-link li {
	width: calc(100% / 3);
	box-sizing: border-box;
	text-align: center;
	line-height: 30px;
}

.footer-link li a:hover {
	color: #fcff41 !important;
}

.footer-link a {
	font-size: 14px;
	color: #d9e4ee !important;
}

.footer-host {
	width: 319px;
	height: 124px;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 5px;
	box-sizing: border-box;
	/*text-align: center;*/
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.footer-host p {
	font-size: 14px;
	color: #d9e4ee;
	line-height: 30px;
	margin-left: 65px;
}

.dzjg {
	margin-left: 10px;
}

.dzjg {
	width: 20%;
	height: 124px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	/* background: rgba(0, 0, 0, 0.05); */
	border-radius: 5px;
}

/* .qr {
	width: 7%;
	height: 124px;
} */

.qr p {
	color: #fff;
	text-align: center;
	margin-top: 8px;
}

.qr img {
	width: 100%;
}

@media (max-width: 768px) {
	.qr {
		text-align: center;
		margin-top: 10px;
		width: 100%;
	}

	.qr img {
		max-width: 100px;
	}

	.qr p {
		margin-top: 0;
	}
}

/* copyright */
.copyright {
	width: 100%;
	height: 42px;
	background-color: #365BD4;
	display: flex;
	justify-content: center;
	align-items: center;
}

.copyright-list {
	width: 1260px;
	height: 100%;
	display: flex;
	align-items: center;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.copyright-list li {
	margin-right: 52px;
	color: #d9e4ee;
}

.copyright-list li:last-child {
	margin-right: 0px;
}

.copyright-list,
.copyright-list a {
	font-size: 14px;
	color: #d9e4ee;
}

.copyright-list a:hover {
	color: #fcff41 !important;
	;
}

.wangbei {
	display: flex;
	align-items: center;
}

.wangbei img {
	margin-right: 10px;
}

/* copyright end */
/* footer end */
.mobile-box {
	display: none;
}

.canvi-navbar {
	background: rgba(5, 95, 178, 1) !important;
}

.mobile-nav {
	width: 100% !important;
	background: rgba(5, 95, 178, 1) !important;
}

.close-new {
	display: inline-block;
	text-align: right;
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
}

.close-new img {
	width: 20px;
	height: 20px;
}

.layui-nav-tree .layui-nav-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.canvi-content {
	background: transparent !important;
}

.main_32221 {
	font-size: 16px;
	display: flex;
	justify-content: start;
}

.main_32221 a {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: calc(100% - 100px);
}

.main_32221 a:hover {
	color: #055fb2;
}

.main_32221-pic {
	font-size: 16px;
}

.main_32221-pic a {
	overflow: hidden;
}

.main_32221-pic a:hover {
	color: #055fb2;
}



.main_3212 {
	font-size: 16px;
}

.main_3212:hover {
	color: #055fb2;
}

.return_assist {
	position: absolute;
	right: 0;
	line-height: 40px;
	color: #666;
}

.return_assist a {
	color: #666;
	border: 1px solid #666;
	border-radius: 10px;
	padding: 0 10px;
	font-size: 16px;
}

.return_assist.white {
	position: absolute;
	right: 0;
	line-height: 40px;
	color: #ffffff;
}

.return_assist.white a {
	color: #ffffff;
	border: 1px solid #FFFFFF;
	border-radius: 10px;
	padding: 0 10px;
	font-size: 16px;
}

.return_assist.top0 {
	top: 0px;
}

.return_assist.top-28 {
	top: -28px;
}

.return_assist.top-400 {
	top: -400px;
}

@media screen and (max-width: 1440px) {
	.top-link {
		box-sizing: border-box;
		padding: 0 20px;
	}

	.footer-layout {
		width: 100%;
		box-sizing: border-box;
		padding: 0 20px;
	}

	.dzjg {
		margin-left: 0;
	}

	.copyright-list {
		width: 100%;
		box-sizing: border-box;
		padding: 0 15px;
	}
}

@media screen and (max-width: 1280px) {
	.friendlink-list {
		width: 100%;
	}

	.friendlink-item {
		width: 185px;
	}

	.header-center {
		width: 100%;
	}
}

/* @media screen and (max-width: 1024px) {
	.link-left li,
	.link-right li {
		display: none;
	}
	.link-left li:first-child,
	.link-right li:last-child {
		display: block;
	}
} */
@media screen and (max-width: 996px) {
	.footer-link {
		padding: 30px 40px;
	}

	.dzjg,
	.jiucuo,
	.footer-link,
	.footer-host {
		width: 50%;
	}

	.friendlink {
		display: block;
		height: 120px;
		margin-bottom: 20px;
	}

	.friendlink-list {
		display: inherit;
		/* height: 120px; */
	}

	.friendlink-list>span {
		display: none;
	}

	.friendlink-list>li {
		/* float: left; */
		width: calc((100% / 2));
	}

	.subfriendlink-list {
		bottom: 120px;
	}

	.friendlink-list .friendlink-item:nth-child(5) .subfriendlink-list {
		bottom: 120px;
	}

	.friendlink-list .friendlink-item:nth-child(6) .subfriendlink-list {
		bottom: 120px;
	}

	#footer,
	.footer-layout {
		height: auto;
	}

	.footer-layout {
		width: 750px;
		flex-wrap: wrap;
	}

	.copyright-list {
		width: 750px;
		flex-wrap: wrap;
	}

	#nav {
		height: 60px;
	}

	#header {
		height: auto;
	}

	.nav-container {
		margin-top: 20px;
		padding: 0 20px;
	}

	.mobile-box {
		width: 750px;
		/* height: 55px; */
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.mobile-btn {
		width: 90px;
		display: flex;
		/* height: 55px; */
		justify-content: flex-end;
		align-items: center;
		cursor: pointer;
	}

	.mobile-btn img {
		width: 25px;
		height: 25px;
	}

	.mobile-btn span {
		color: #fff;
		font-size: 16px;
		font-family: "微软雅黑";
	}
}

@media screen and (max-width: 768px) {
	#header {
		height: auto;
	}

	.header-top {
		height: auto;
	}

	.link-left {
		height: auto;
		flex-wrap: wrap;
	}

	.link-left-item {
		margin-right: 15px;
	}

	.dzjg {
		padding: 10px 0;
		width: 100%;
	}

	.copyright {
		height: auto;
	}

	.friendlink {
		height: auto;
		display: flex;
	}

	.copyright-list li:first-child {
		margin-top: 5px;
	}

	.copyright-list li {
		margin-right: 0;
		margin-bottom: 3px;
	}

	.copyright-list {
		justify-content: center;
	}
}

@media screen and (max-width: 616px) {

	.nav-container,
	.footer-layout {
		padding: 0 10px;
	}

	.footer-link,
	.footer-host {
		padding: 0;
		width: 100%;
	}

	.footer-link li {
		width: calc(100% / 3);
	}

	.search input {
		padding-left: 10px;
	}

	.top-link.en-enter {
		display: flex;
		justify-content: end;
		width: 100%;
		padding: 0 10px;
		padding-top: 15px;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 999;
	}

	.top-link.en-enter a {
		border: 1px solid #ffffff;
		border-radius: 11px;
		text-align: center;
		color: #4ba6a7;
		margin-top: 10px;
		background: #c0ecf9;
		font-weight: bold;
		padding: 5px 20px;
	}
}

@media screen and (max-width: 515px) {
	.search-btn {
		width: 75px;
	}

	.search {
		height: 40px;
	}

	.search select {
		width: 75px;
		padding-left: 5px;
		padding-right: 0px;
	}

	.search input {
		width: calc(100% - (75px * 2));
	}
}


.znwd-span {
	height: 180px;
	width: 130px;
	right: 115px;
	position: fixed;
	bottom: 0px;
	z-index: 9999;
}

.znwd-span span {
	width: 20px;
	height: 20px;
	display: block;
	background: url(../image/jiqiren_close.png) center no-repeat;
	cursor: pointer;
	position: absolute;
	display: none;
}

.bubble {
	-webkit-box-shadow: 0 0 3px #bba4a4;
	box-shadow: 0 0 3px #bba4a4;
	background-color: #fff;
	height: 60px;
	line-height: 20px;
	width: 200px;
	border-radius: 5px;
	padding: 8px 10px;
	font-size: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 22px;
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
	position: absolute;
	margin-left: 20px;
	top: -75px;
	display: none;
}

.bubble:before {
	position: absolute;
	left: 40px;
	top: 72px;
	content: " ";
	width: 0;
	height: 0;
	opacity: 1;
	border: 10px solid;
	border-color: #fff transparent transparent transparent;
	-webkit-transform: rotate(22deg);
	transform: rotate(22deg);
}

.press-img {
	position: fixed;
	top: 30%;
	left: 0;
	z-index: 998;
}

.press-box {
	position: fixed;
	top: 30%;
	left: 0;
	z-index: 999;
	display: none;

}

.press .con {
	height: 500px;
	background-color: #fff;
	border: 1px solid #333;
	border-top: none;
}

.press .tit {
	font-size: 20px;
	font-weight: bold;
	padding-top: 5px;
	padding-bottom: 5px;
	font-family: '宋体';
	text-align: center;
}

.press .subtit {
	font-size: 18px;
	font-weight: bold;
	padding-top: 5px;
	padding-bottom: 5px;
	font-family: '宋体';
	text-align: center;
}

.press .list {
	display: flex;
	width: 90%;
	margin: 0 auto;
	text-align: center;
	margin-top: 10px;
	background: #e6eaea;
	border: 1px solid #ccc;
	color: #333;
}

.press .list p {
	width: 25%;
	padding: 5px 0;
}

.press .list p:nth-child(2) {
	width: 50%;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

.press .desc {
	width: 90%;
	margin: 0 auto;
	font-family: "宋体";
	font-size: 12px;
	color: #333;
	max-height: 300px;
	overflow: auto;
	padding-bottom: 10px;
}

.press .desc p {
	padding-top: 10px;
}

#nav .searchBtn {
	display: none;
}

@media (max-width: 768px) {
	.press-box {
		width: 100%;
		height: 100%;
		top: 0;
	}

	.press-img {
		position: fixed;
		top: 30%;
		left: 0;
		height: 140px;
	}

	.press {
		width: 78%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.press img {
		height: 30px;
		max-width: 100%;
	}

	.press .con {
		max-height: 400px;
		height: auto;
		min-height: 200px;
	}

	.press .tit {
		font-size: 16px;
	}

	.press .subtit {
		font-size: 14px;
	}

	.press .list p {
		font-size: 12px;
	}

	#nav .searchBtn {
		position: absolute;
		border: 1px solid #fff;
		padding: 3px 20px;
		border-radius: 50px;
		color: #fff;
		display: flex;
		left: 10px;
		top: 4px;
	}

	#nav .searchBtn img {
		width: 20px;
	}

	#nav .searchBtn span {
		color: #fff;
	}
}

.list,
.detail,
.contact {
	max-width: 1260px;
	margin: 0 auto;
	margin-bottom: 20px;
	color: #333;
}

.crumb {
	padding: 10px 20px;
	border-bottom: 1px solid #dbdbdb;
	margin-bottom: 20px;
}

.list .content {
	display: flex;
	justify-content: space-between;
}

.list .left-gn {
	padding: 2.5%;
	background-color: #fff;
	width: 20%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	box-sizing: border-box;
	align-content: flex-start;
}

.list .left-gn .item {
	width: 45%;
	display: flex;
	justify-content: center;
	margin-bottom: 15px;
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}

.list .left-gn .item:nth-child(2n-1) {
	margin-right: 10%;
}

.list .left-gn .item div {
	padding: 13px 0;
}

.list .right-list {
	width: 77%;
	background-color: #fff;
	padding: 2%;
	box-sizing: border-box;
}

.right-list .tit {
	font-size: 22px;
	font-weight: bold;
	color: #055fb1;
	height: 50px;
	line-height: 50px;
}

.right-list .item ul li {
	height: 54px;
	line-height: 54px;
}

.right-list .item ul li a {
	display: block;
	width: 100%;
	height: 100%;
	background: url(../image/yd.png) no-repeat left center;
}

.right-list .item ul li:hover a {
	background: url(../image/yd_on.png) no-repeat left center;
}

.right-list .item ul li a p {
	padding-left: 15px;
	display: inline-block;
	font-size: 16px;
	color: #000;
	width: calc(100% - 130px);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.right-list .item ul li:hover a p {
	color: #176ab7;
}

.right-list .item ul li a span {
	font-size: 16px;
	color: #333;
}

.list .page {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.list .left-type {
	padding: 2%;
	background-color: #fff;
	width: 23%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.list .left-type .item {
	width: 80%;
	border: 1px solid #055fb1;
	margin-bottom: 15px;
	border-radius: 10px;
	text-align: center;
}

.list .left-type .item:last-child {
	margin-bottom: 0;
}

.list .left-type .item:hover {
	background-color: #3f65e2;
	color: #fff;
}

.list .left-type .item div {
	padding: 10px 0;
}

.detail .tit {
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

.contact .info {
	display: flex;
	justify-content: space-around;
	text-align: center;
	border: 1px solid #ccc;
	background-color: #fff;
}

.contact .info .row {
	padding: 20px 0;
	width: calc(100% / 3);
	font-size: 16px;
}

.contact .info .row:nth-child(2) {
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

.contact .info .row p:nth-child(1) {
	margin-bottom: 10px;
	font-weight: bold;
}

@media (max-width: 768px) {
	.list .content {
		flex-direction: column;
	}

	.list .left-gn {
		width: 96%;
		margin: 10px auto;
		justify-content: space-around;
	}

	.list .right-list {
		width: 96%;
		margin: 10px auto;
	}

	.list .left-gn .item {
		width: 26%;
	}

	.list .left-gn .item:nth-child(2n-1) {
		margin-right: 0;
	}

	.right-list .tit {
		text-align: center;
	}

	.list .left-type {
		width: 96%;
		margin: 0 auto;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: space-between;
	}

	.list .left-type .item {
		width: 48%;
		margin: 10px 0 !important;
	}

	.detail .tit {
		font-size: 22px;
		width: 92%;
		margin: 0 auto;
		margin-bottom: 20px;
	}

	.detail .desc {
		width: 92%;
		margin: 0 auto;
	}

	.detail .desc img {
		max-width: 100%;
		height: auto !important;
	}

	.contact .info,
	.map {
		flex-direction: column;
		width: 90%;
		margin: 0 auto;
	}

	.contact .info .row {
		width: 100%;
	}

	.contact .info .row:nth-child(2) {
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		border-left: none;
		border-right: none;
	}
}