* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Helvetica, "PingFang SC", "Microsoft Yahei", sans-serif;
	font-size: 20px;
}

[v-cloak] {
	display: none;
}

body {
	overflow-x: hidden;
	background-color: #f3f3f3;
	min-width: 1200px;
}

a {
	text-decoration: none;
	color: #333;
}

a:hover,
a:visited,
a:link,
a:active {
	color: #333;
}



/* 版心 */
.type-center {
	width: 60em;
	/* border: 1px solid black; */
}

/* ================= 头部================== */

/* 头部 */
header {
	/* 用于定位导航菜单 */
	position: relative;
	z-index: 2000;
}


/* 页面下滑时固定导航，背景设置为白色 */
header.sticky {
	position: fixed;
	box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
	animation: dropDown 0.5s ease-in-out forwards;
}

/* 头部 */






/* logo部分 */
.logo-top-box {
	display: flex;
	justify-content: center;
	width: 100%;
	min-width: 1200px;
	height: 6em;
	/* 用于定位导航菜单 */
	position: relative;
	z-index: 200;
}

.logo-top-box .bg-box {
	position: absolute;
	z-index: 201;
	width: 100%;
	height: 100%;
}

.logo-top-box .bg-box img {
	width: 100%;
	height: 100%;
}


.logo-top-box .logo-top-warp {
	position: absolute;
	z-index: 202;
	top: 50%;
	transform: translate(0, -50%);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-top-box .logo-top-warp .left-logo-box {
	display: flex;
	align-items: center;
}

.logo-top-box .logo-top-warp .left-logo-box .logo img {
	/* width: 3em;
  height: 3em; */
	vertical-align: middle;
}

.logo-top-box .logo-top-warp .left-logo-box .name {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	padding-left: 0.75em;
	height: 3em;
}

.logo-top-box .logo-top-warp .left-logo-box .name .name-zh span {
	font-weight: 400;
	font-size: 1.3em;
	text-align: left;
	color: #fff;
}

.logo-top-box .logo-top-warp .left-logo-box .name .name-en {
	display: flex;
	align-items: center;
}

.logo-top-box .logo-top-warp .left-logo-box .name .name-en span {
	font-weight: 400;
	font-size: 0.55em;
	letter-spacing: 0.03px;
	text-align: left;
	color: #fff;
}

.logo-top-box .logo-top-warp .right-logo-box .tips .top-tips {
	display: flex;
	justify-content: flex-end;
}

.logo-top-box .logo-top-warp .right-logo-box .tips .top-tips span {
	font-weight: 700;
	font-size: 0.7em;
	letter-spacing: 0.05px;
	line-height: 1.25em;
	text-align: right;
	color: #fff;
}

/* 固定导航下滑动画 */
@keyframes dropDown {
	from {
		transform: translateY(-100px);
	}

	to {
		transform: translateY(0);
	}
}

/* ========================导航条部分======================== */
.nav-box {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
}

.nav-box .nav-warp {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 2.5em;
}

.nav-box .nav-warp .left-item-box {
	display: flex;
	/* justify-content: space-around; */
	align-items: center;
	min-width: 42em;
	height: 100%;
}

.nav-box .nav-warp .left-item-box .nav-item-box {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 2.5em;
	padding: 0 2.5em;
}

.nav-box .nav-warp .left-item-box .nav-item-box:hover {
	display: flex;
	align-items: center;
	padding: 0.75em 2.5em;
	background-color: #78171A;
}

.nav-box .nav-warp .left-item-box .nav-item-box a {
	color: #000000ff;
	font-size: 0.85em;
	font-weight: 700;
	letter-spacing: 0.7px;
}
.nav-box .nav-warp .left-item-box .nav-item-box:hover a {
	color: #ffffff;
}

.nav-box .nav-warp .left-item-box .nav-item-box.navActive {
	display: flex;
	align-items: center;
	padding: 0.75em 2.5em;
	background-color: #78171A;
}

.nav-box .nav-warp .left-item-box .nav-item-box.navActive a {
	color: #ffffff;
	font-size: 0.85em;
	font-weight: 700;
	letter-spacing: 0.7px;
}


.item-child {
	display: none;
	position: absolute;
	z-index: 1111;
	bottom: 0em;
	width: 100%;
	height: 0;
	background-color: #fff;
	box-shadow: 0 0 0.8em 0 #333;
}


.item-child .child-box {
	display: none;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0.75em 0;
	background-color: #fff;
	border-bottom: 1px dashed #f2f2f2;
}

.item-child .child-box span {
	color: #000000ff;
	font-size: 0.8em;
	font-weight: 400;
	letter-spacing: 0.7px;
}

.nav-box .nav-warp .left-item-box .nav-item-box:hover .item-child .child-box {
	display: flex;
	animation: show1 0.5s 0s;
}

.nav-box .nav-warp .left-item-box .nav-item-box .item-child .child-box:hover {
	background: rgba(233, 233, 233, 0.9);
}

.nav-box .nav-warp .left-item-box .nav-item-box:hover .item-child {
	display: block;
}

@keyframes show1 {
	0% {
		/*动画开始时*/
		padding: 0em 0em;
	}

	100% {
		/*动画结束时*/
		padding: 0.75em 0em;
	}
}

.nav-box .nav-warp .right-input-box .right-input-warp {
	display: flex;
	align-items: center;
	height: 1.95em;
	background-color: #A60A11;
}

.nav-box .nav-warp .right-input-box .right-input-warp .right-input {
	display: flex;
	height: 1.85em;
	padding-left: 0.05em;

}

.nav-box .nav-warp .right-input-box .right-input-warp .search-title {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4.15em;
	height: 1.85em;
	background-color: #A60A11;
}

.nav-box .nav-warp .right-input-box .right-input-warp .search-title span {
	font-weight: 700;
	font-size: 0.7em;
	letter-spacing: 0.05px;
	line-height: 1.25em;
	text-align: left;
	color: #fff;
}


/* ====================================轮播图部分 */
.banner-box{
	min-width: 1200px;
}
.banner-box .banner img {
	width: 100%;
}

/* 中部内容部分 */
.content-box {
	display: flex;
	justify-content: center;
	align-items: center;
}

.top-introduce-btn-box {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2.5em 0;
}

.top-introduce-btn-box .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.55em 2.2em;
	background: #ffffff;
	border-radius: 1.1em;
}

.top-introduce-btn-box .btnActive {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.55em 2.2em;
	background-color: #A50A11;
	border-radius: 1.1em;
}

.top-introduce-btn-box .btn:hover {
	box-shadow: 0 0 0.8em 0 #282828;
	background: url(../static/icons/icon5.png);
	background-repeat: no-repeat;
	background-size: 2em 2em;
	background-position: 100% 50%;
	animation: logoShow 1s;
}

@keyframes logoShow {
	from {
		background-position: 136% 50%;
	}

	to {
		background-position: 100% 50%;
	}
}

.top-introduce-btn-box .btn {
	margin: 0 1em;
}

.top-introduce-btn-box .btnActive {
	margin: 0 1em;
}


.top-introduce-btn-box .btn span {
	font-weight: 400;
	font-size: 0.9em;
	text-align: center;
	color: #000000;
}

.top-introduce-btn-box .btnActive span {
	font-weight: 400;
	font-size: 0.9em;
	text-align: center;
	color: #ffffff;
}

/* 简介部分 */
.bottom-introduce-content-box {
	background-color: #fff;
	padding: 1em;
}

.bottom-introduce-content-box .top-title {
	display: flex;
	align-items: center;
}

.bottom-introduce-content-box .top-title .line {
	width: 0.4em;
	height: 1.2em;
	border-radius: 0.2em;
	background-color: #A50A11;
}

.bottom-introduce-content-box .top-title .title span {
	font-weight: 700;
	letter-spacing: 0.05px;
	line-height: 1.5em;
	text-align: left;
	color: #a50a11;
	padding-left: 0.5em;
	font-size: 0.85em;
}

.bottom-introduce-content-box .bottom-introduce-content .content-msg {
	padding: 1.1em 0 2.2em;
}

.bottom-introduce-content-box .bottom-introduce-content .content-msg span {
	font-weight: 700;
	font-size: 0.6em;
	line-height: 1.25em;
	text-align: left;
	color: #000;
}

.bottom-introduce-content-box .bottom-introduce-content .img-box {
	display: flex;
	justify-content: center;
}

.bottom-introduce-content-box .bottom-introduce-content .img-box img {
	width: 38.35em;
}

/* 联系方式部分 */

.contact-warp {
	background-color: #ffffff;
	padding: 1em;
}

.contact-warp .top-title {
	display: flex;
	align-items: center;
}

.contact-warp .top-title .line {
	width: 0.4em;
	height: 1.2em;
	border-radius: 0.2em;
	background-color: #A50A11;
}

.contact-warp .top-title .title span {
	font-weight: 700;
	letter-spacing: 0.05px;
	line-height: 1.5em;
	text-align: left;
	color: #a50a11;
	padding-left: 0.5em;
	font-size: 0.85em;
}

.contact-content-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1.5em;
}


.contact-left-box {
	flex: 1;
}

.contact-left-box .left-top {
	display: flex;
}

.contact-left-box .left-top .logo {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-right: 0.4em;
}

.contact-left-box .left-top .logo img {
	width: 1.2em;
}

.contact-left-box .left-top .name span {
	font-weight: 900;
	font-size: 1.1em;
	text-align: left;
	color: #000;
}

.contact-left-box .bottom-content {
	padding: 1.1em;
}

.contact-left-box .bottom-content .item {
	padding-bottom: 0.6em;
}

.contact-left-box .bottom-content .item:last-child {
	padding-bottom: 0em;
}

.contact-left-box .bottom-content .item span {
	font-weight: 700;
	font-size: 0.8em;
	line-height: 1.75em;
	text-align: left;
	color: #7a7a7a;
}

.contact-right-box {
	flex: 1;
}

.contact-right-box .contact-right-warp {
	display: flex;
	justify-content: space-evenly;
}

.contact-right-box .contact-right-warp .img-item .top-img img {
	width: 10em;
}

.contact-right-box .contact-right-warp .img-item .bottom-title {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 0.75em;
}

.contact-right-box .contact-right-warp .img-item .bottom-title span {
	font-weight: 700;
	font-size: 0.8em;
	line-height: 1.75em;
	text-align: left;
	color: #131313;
}



/* 地图部分 */
.map-content-box {
	padding: 2.25em 0 0;
}

.map-content-box .map-content-warp {
	background-color: #fff;
	padding: 1em;
}

.map-content-box .map-content-warp .top-title {
	display: flex;
	align-items: center;
}

.map-content-box .map-content-warp .top-title .line {
	width: 0.4em;
	height: 1.2em;
	border-radius: 0.2em;
	background-color: #A50A11;
}

.map-content-box .map-content-warp .top-title .title span {
	font-weight: 700;
	letter-spacing: 0.05px;
	line-height: 1.5em;
	text-align: left;
	color: #a50a11;
	padding-left: 0.5em;
	font-size: 0.85em;
}

.map-content-box .map-content-warp .map-box {
	padding-top: 1.5em;
}

.map-content-box .map-content-warp .map-box #map {
	width: 58em;
	height: 32em;
}

/* 底部部分 */
footer {
	padding-top: 2.2em;
}

.foot-warp {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #282828;
}

.top-foot {
	display: flex;
	background-color: #282828;
	padding: 1.75em 0;
}


.top-foot .bottom-left-logo-box {
	display: flex;
	align-items: center;
	padding-right: 2em;
}

.top-foot .bottom-left-logo-box .logo img {
	/* width: 3em;
  height: 3em; */
	vertical-align: middle;
}

.top-foot .bottom-left-logo-box .name {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	padding-left: 0.75em;
	height: 3em;
	width: 22em;
}

.top-foot .bottom-left-logo-box .name .name-zh span {
	font-weight: 400;
	font-size: 1.3em;
	text-align: left;
	color: #666;
}

.top-foot .bottom-left-logo-box .name .name-en {
	display: flex;
	align-items: center;
}

.top-foot .bottom-left-logo-box .name .name-en span {
	font-weight: 400;
	font-size: 0.55em;
	letter-spacing: 0.03px;
	text-align: left;
	color: #666;
}


.top-foot .foot-nav-box {
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-foot .foot-nav-box .foot-nav-warp {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.top-foot .foot-nav-box .foot-nav-warp .nav-item span {
	font-weight: 700;
	font-size: 0.8em;
	letter-spacing: 0.05px;
	line-height: 1.25em;
	text-align: right;
	color: #666;
}


.bottom-foot {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.8em 0 0.7em;
	background-color: #000;
	width: 100%;
}

.bottom-foot span {
	font-weight: 700;
	font-size: 0.7em;
	line-height: 1.25em;
	text-align: left;
	color: #fff;
}


/* 返回顶部按钮，默认不显示 */
.scrollToTop {
	display: none;
	position: relative;
	z-index: 2000;
}

/* 返回顶部按钮 */
.scrollToTop .scr-top-box {
	width: 2em;
	height: 2em;
	border-radius: 0.4em;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #a50a11;
	position: fixed;
	bottom: 60px;
	right: 30px;
}

.scrollToTop .scr-top-box img {
	width: 2em;
	height: 2em;
}
