@charset='utf-8';

/* 首页公共 */
body,
html {
	padding: 0;
	margin: 0;
	font-size: 14px;
	color: #666;
	font-family: "Microsoft YaHei", "SimSun", "SimHei", "PingFang SC", "Hiragino Sans GB", "Heiti SC", sans-serif !important;
}

ul,
li,
p,
h1,
h2,
h3,
dl,
dt,
dd,
input {
	padding: 0;
	margin: 0;
	list-style: none;
}

a {
	text-decoration: none;
	color: #666;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

a:hover {
	color: #00569b !important;
	text-decoration: none;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

.demo {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
}

.clear {
	clear: both;
}

img {
	vertical-align: top;
	border: none;
}

input {
	font-family: "微軟正黑體", "Microsoft Yahei", "Hiragino Sans GB", "SimHei", "STHeiti" !important;
}

input:focus {
	outline: none;
}

textarea:focus {
	outline: none;
}

.center {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* 头部 */
.pc-head-box {
	width: 100%;
	height: 80px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	transition: all .4s;
}

/* 往上隐藏 */
#navbar.hide {
	transform: translateY(-100%);
}

.pc-head-box .pc-head-cent {
	display: flex;
	align-items: center;
	width: 1350px;
	height: 80px;
	margin: 0 auto;
}

.pc-head-box .pc-head-cent .logo {
	width: 300px;
	height: 100%;
	float: left;
	box-sizing: border-box;
	position: relative;
}

.pc-head-box .pc-head-cent .logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pc-head-box .pc-head-cent .menu {
	width: 770px;
	height: 80px;
	float: right;
}

.pc-head-box .pc-head-cent .menu .link {
	width: 200px;
	height: 40px;
	float: right;
	padding: 5px 0;
}

.pc-head-box .pc-head-cent .menu .link .code {
	width: 40px;
	height: 40px;
	float: left;
	cursor: pointer;
	margin-left: 10px;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
	position: relative;
	z-index: 3;
}

.pc-head-box .pc-head-cent .menu .link .code:hover {
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	filter: grayscale(0%);
}

.pc-head-box .pc-head-cent .menu .link .code .code-list {
	width: 260px;
	height: 160px;
	background: #fff;
	position: absolute;
	top: 51px;
	left: 50%;
	margin-left: -130px;
	border-radius: 5px;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
	box-sizing: border-box;
	padding-top: 10px;
	padding-left: 15px;
	display: none;
}

.pc-head-box .pc-head-cent .menu .link .code .code-list-icon {
	width: 23px;
	height: 13px;
	position: absolute;
	top: 33px;
	left: 50%;
	margin-left: -16.5px;
	z-index: 2;
	display: none;
}

.pc-head-box .pc-head-cent .menu .link .code .code-list ul li {
	display: block;
	width: 115px;
	height: 160px;
	float: left;
	text-align: center;
}

.pc-head-box .pc-head-cent .menu .link .code .code-list ul li img {
	width: 115px;
}

.pc-head-box .pc-head-cent .menu .link .code:hover .code-list-icon {
	animation: fadeInUp 1s linear 0s alternate forwards;
	display: block;
}

.pc-head-box .pc-head-cent .menu .link .code:hover .code-list {
	display: block;
	animation: fadeInUp 0.5s linear 0s alternate forwards;
}

.pc-head-box .pc-head-cent .menu .link .tel {
	width: 150px;
	height: 40px;
	float: left;
	line-height: 40px;
	color: #e72c24;
	position: relative;
}

.pc-head-box .pc-head-cent .menu nav {
	display: block;
	width: 100%;
	height: 100%;
	float: right;
}

.pc-head-box .pc-head-cent .menu nav ul li {
	display: block;
	width: 96px;
	height: 100%;
	line-height: 80px;
	text-align: center;
	float: left;
}

.pc-head-box .pc-head-cent .menu nav ul li a {
	position: relative;
	display: block;
	width: 80%;
	margin: 0 auto;
	font-size: 16px;
	height: 100%;
}

.pc-head-box .pc-head-cent .menu nav ul li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	transition: all .4s;
	height: 2px;
	background-color: #00569b;
}

.pc-head-box .pc-head-cent .menu nav ul li a:hover::after {
	width: 100%;
}

.pc-head-box .pc-head-cent .menu nav ul li a.nav {
	position: relative;
	color: #00569b;
}

.pc-head-box .pc-head-cent .menu nav ul li a.nav::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	transition: all .4s;
	height: 2px;
	background-color: #00569b;
}

/* .pc-head-box .pc-head-cent .menu nav ul li:hover a {
	border-bottom: solid 4px #00569b;
	height: 56px;
	line-height: 56px;
	color: #e72c24;
} */

.pc-head-box .pc-head-cent .menu nav ul li span {
	display: block;
	width: 96px;
	height: 60px;
	position: relative;
}

.pc-head-box .pc-head-cent .menu nav ul li .submenu-box {
	width: 100%;
	height: 50px;
	background: rgba(51, 51, 51, 0.85);
	position: absolute;
	top: 110px;
	left: 0;
	display: none;
}

.pc-head-box .pc-head-cent .menu nav ul li span .about-nav {
	width: 1200px;
	height: 50px;
	position: absolute;
	top: 60px;
	left: 50%;
	margin-left: -600px;
	z-index: 2;
	text-align: center;
	line-height: 50px !important;
	display: none;
}

.pc-head-box .pc-head-cent .menu nav ul li span .about-nav>a {
	text-align: center;
	color: #fff;
	font-size: 13px;
	padding: 0 10px;
}

.pc-head-box .pc-head-cent .menu nav ul li:hover>.submenu-box {
	display: block;
	animation: submenu 0.5s linear 0s alternate forwards;
}

.pc-head-box .pc-head-cent .menu nav ul li span:hover .about-nav {
	display: block;
}

.head-box-white {
	width: 100%;
	height: 110px;
}

/* 底部广告 */
.bottom-ban {
	width: 100%;
	height: 204px;
	position: relative;
	overflow: hidden;
}

.bottom-ban img {
	width: 1920px;
	height: 204px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -960px;
}

.footer {
	margin-top: 30px;
}

.footer a:hover {
	color: #fff !important;
}

/* 底部 */
.bottom-box {
	width: 1200px;
	height: auto;
	padding: 20px 0;
	margin: 0 auto;
}

.bottom-box .bottom_top {
	margin-bottom: 10px;
	color: #fff;
}

.bottom-box .bottom_top a {
	color: #fff;
}

.bottom-box .bottom-left {
	display: flex;
	width: 100%;
	height: auto;
	color: #fff;
	font-size: 15px;
	box-sizing: border-box;
	padding: 20px 0;
	padding-bottom: 0;
}

.bottom-box .bottom-left a {
	padding: 0 7px 0 0;
	color: #fff;
	margin-right: 10px;
}

.bottom-box .bottom-left span {
	/* width: 100%;
	height: 40px;
	line-height: 40px; */
}

.bottom-box .bottom-right {
	width: 30px;
	height: 30px;
	float: right;
	margin-top: 25px;
	position: relative;
	cursor: pointer;
}

.bottom-box .bottom-right .bottom-code {
	display: none;
	min-width: 264px;
	height: 164px;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
	box-sizing: border-box;
	padding: 10px;
	position: absolute;
	bottom: 50px;
	right: -50px;
	background: #fff;
	animation: botcode 0.5s linear 0s alternate forwards;
}

.bottom-box .bottom-right .bottom-code ul li {
	width: 120px;
	height: 164px;
	float: left;
	text-align: center;
}

.bottom-box .bottom-right .bottom-code ul li img {
	width: 120px;
	height: 120px;
}

.bottom-box .bottom-right .bottom-codeicon {
	width: 29px;
	height: 16px;
	bottom: 37px;
	left: 50%;
	margin-left: -14.5px;
	z-index: 2;
	position: absolute;
	animation: botcode 0.5s linear 0s alternate forwards;
}

.bottom-box .bottom-right:hover .bottom-code {
	display: block;
	animation: botcodeh 0.5s linear 0s alternate forwards;
}

.bottom-box .bottom-right:hover .bottom-codeicon {
	animation: botcodeh 0.5s linear 0s alternate forwards;
}

.bottom-box .bottom-right:hover img {
	transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
}

.bottom-box .bottom-right img {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
}

.head-box {
	display: none;
}

.carousel-box {
	display: none;
}

.head-box-white {
	display: none;
}

/* CSS3动画区 */
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 20%, 0);
		transform: translate3d(0, 20%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 20%, 0);
		transform: translate3d(0, 20%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@-webkit-keyframes botcode {
	0% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes botcode {
	0% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@-webkit-keyframes botcodeh {
	0% {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes botcodeh {
	0% {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}