

@font-face {
	font-family: "BebasNeue";
	src: url(../font/BebasNeue-1.otf);
}

@font-face {
	font-family: "SourceHanSansSC";
	font-weight: 600;
	src: url(../font/SourceHanSansSC-Bold-2.otf);
}
@font-face {
	font-family: "SourceHanSansSC";
	font-weight: 300;
	src: url(../font/SourceHanSansSC-ExtraLight-2.otf);
}
@font-face {
	font-family: "SourceHanSansSC";
	font-weight: 500;
	src: url(../font/SourceHanSansSC-Regular-2.otf);
}

*, body, html {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	font: 14px/1.8 "SourceHanSansSC";
	margin: 0 auto;
	letter-spacing: 0.5px;
	color: #333;
	background-color: #fff;
	box-sizing: border-box;
}

ol, ul {
	list-style: none;
}

input {
	outline: none;
}

a {
	color: #333;
	text-decoration: none;
	cursor: pointer;
}

img {
	border: 0;
	/* width: 100%; */
	vertical-align: middle;
	border: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

.wgt-fade-animate {
	-webkit-transform: scale(0.3);
	transform: scale(0.3);
	-webkit-transform: translateY(150px);
	transform: translateY(150px);
	opacity: 0;
}

.wgt-fade-animate-left {
	-webkit-transform: scale(0.3);
	transform: scale(0.3);
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	opacity: 0;
}

.wgt-fade-animate-right {
	-webkit-transform: scale(0.3);
	transform: scale(0.3);
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	opacity: 0;
}

.appear {
	-wewgtit-animation: opacity_show 1.5s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	-webkit-animation: opacity_show 1.5s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	animation: opacity_show 1.5s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	opacity: 1 !important;
}

.appear_left {
	-wewgtit-animation: opacity_show_left 1.5s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	-webkit-animation: opacity_show_left 1.5s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	animation: opacity_show_left 1.5s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	opacity: 1 !important;
}

.appear_right {
	-wewgtit-animation: opacity_show_right 1.5s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	-webkit-animation: opacity_show_right 1.5s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	animation: opacity_show_right 1.5s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	opacity: 1 !important;
}

@-webkit-keyframes opacity_show {
	0% {
		-webkit-transform: scale(0.3);
		transform: scale(0.3);
		-webkit-transform: translateY(150px);
		transform: translateY(150px);
		opacity: .1;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes opacity_show {
	0% {
		-webkit-transform: scale(0.3);
		transform: scale(0.3);
		-webkit-transform: translateY(150px);
		transform: translateY(150px);
		opacity: .1;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

/* 左出现 */

@keyframes opacity_show_left {
	0% {
		-webkit-transform: scale(0.3);
		transform: scale(0.3);
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		opacity: .1;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}
}

@-webkit-keyframes opacity_show_left {
	0% {
		-webkit-transform: scale(0.3);
		transform: scale(0.3);
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		opacity: .1;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}
}

/* 右出现 */

@keyframes opacity_show_right {
	0% {
		-webkit-transform: scale(0.3);
		transform: scale(0.3);
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		opacity: .1;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}
}

@-webkit-keyframes opacity_show_right {
	0% {
		-webkit-transform: scale(0.3);
		transform: scale(0.3);
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		opacity: .1;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}
}

/* ========================================================= header */

/* 900导航 */

.headMenu {
	display: none;
	cursor: pointer;
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
}

.headMenu span {
	display: block;
	width: 20px;
	height: 2px;
	background: #333;
	margin-top: 4px;
	border-radius: 6px;
	transition: all 0.48s;
}

.headMenu span:first-of-type {
	margin-top: 0;
}

.headMenu.on .headMenu_span1 {
	-webkit-transform: rotate(45deg) translate(2px, 3px);
	-moz-transform: rotate(45deg) translate(2px, 3px);
	-ms-transform: rotate(45deg) translate(2px, 3px);
	-o-transform: rotate(45deg) translate(2px, 3px);
	transform: rotate(45deg) translate(2px, 3px);
}

.headMenu.on .headMenu_span2 {
	opacity: 0;
}

.headMenu.on .headMenu_span3 {
	-webkit-transform: rotate(-45deg) translate(5px, -7px);
	-moz-transform: rotate(-45deg) translate(5px, -7px);
	-ms-transform: rotate(-45deg) translate(5px, -7px);
	-o-transform: rotate(-45deg) translate(5px, -7px);
	transform: rotate(-45deg) translate(5px, -7px);
}

.headMenuB {
	height: 5px !important;
}

/*  */

.bannerTit {
	-webkit-animation: chuxian 2s forwards;
	animation: chuxian 2s forwards;
}

.nav {
	-webkit-animation: chuxian2 2s forwards;
	animation: chuxian2 2s forwards;
}

/*轮播图片自动放大*/

.meng {
	-webkit-animation: hei 8s forwards;
	animation: hei 8s forwards;
}

.swiper-slide-active .banImg img {
	-webkit-animation: img1 12s forwards infinite;
	animation: img1 12s forwards infinite;
}

@keyframes chuxian {
	0% {
		transform: translateY(100px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@-webkit-keyframes chuxian {
	0% {
		transform: translateY(100px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes chuxian2 {
	0% {
		transform: scale(0.1);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@-webkit-keyframes chuxian2 {
	0% {
		transform: scale(0.1);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@-webkit-keyframes img1 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}

@keyframes img1 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}

@keyframes hei {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0.5;
	}
}

@-webkit-keyframes hei {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0.5;
	}
}

@keyframes hei2 {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

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

/* ========================================================= header  e */

/* <!-- 内页导航 --> */

.headerMain-bg {
	box-shadow: 0px 0 20px 5px rgba(0, 0, 0, 0.2);
}

.headerMain-bg .Nav_n ul li {
	padding: 25px 0;
	transition: all .48s;
}

.dH {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	background: #fff;
}

.dH .inner94 {
	position: relative;
	display: flex;
	justify-content: flex-end;
}

.logo_n {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.logo_n img {
	width: 200px;
}

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

.Nav_n ul {
	display: flex;
	justify-content: center;
	align-items: center;
}

.Nav_n ul li {
	font-size: 16px;
	padding: 30px 0;
	margin: 0 30px;
}

.Nav_n ul li:hover {
	color: linear-gradient(#0078ff, #031d36);
}

.SS {
	margin-left: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

.souSuo_n img {
	width: 28px;
	cursor: pointer;
}

.souSuo_nXq {
	width: 0;
	margin-right: 10px;
	transition: all .48s;
	display: flex;
	align-items: center;
}

.souSuo_nXq img {
	width: 20px;
	margin-right: 10px;
	display: none;
}

.souSuo_nXq input {
	width: 100%;
	padding: 5px;
	border: none;
	outline: none;
	/* opacity: 0; */
}

.souSuo_nXq.show {
	width: 180px;
	transition: all .48s;
}

.souSuo_nXq.show img {
	display: block;
}

.NavMenu_n {
	margin-left: 20px;
	background: linear-gradient(#0078ff, #031d36);
	padding: 5px 12px;
}

.NavMenu_n img {
	width: 20px;
	height: 15px;
}

.NavMenu_n span {
	display: block;
	color: #fff;
	font-size: 12px;
}

/*900px导航*/

.headerMain-bg .headMenu_Box {
	top: 78px;
}

.head.headZk {
	position: fixed;
	z-index: 999;
	width: 100%;
	background: #fff;
}

.headMenu_Box {
	position: fixed;
	top: 80px;
	right: 0;
	width: 100%;
	height: 100vh;
	background: #fff;
	padding-top: 15px;
	padding-bottom: 38px;
	z-index: 10;
	display: none;
}

.scroll {
	padding: 2% 5%;
	height: 100%;
	overflow: auto;
}

.headMenu_li {
	margin-bottom: 5%;
	position: relative;
}

.headMenu_li a {
	display: block;
	font-size: 18px;
	color: #323232;
	border-bottom: 1px solid #ddd;
	line-height: 2;
	font-family: "BebasNeue";
	font-weight: bold;
}

.headMenu_li img {
	width: 25px;
	height: 25px;
	position: absolute;
	right: 0;
	top: 10px;
	transition: all 1s;
}

.headMenu_sq {
	display: none;
}

.headMenu_a {
	display: none;
}

.headMenu_a a {
	font-size: 16px;
	padding-left: 20px;
	border-bottom: none;
}

/* 900px导航按钮 */

.menuBox {
	width: 100%;
	position: relative;
}

.menuBox_l, .menuBox_r {
	position: fixed;
	-webkit-transition: left .8s ease, right .8s ease;
	-o-transition: left .8s ease, right .8s ease;
	transition: left .8s ease, right .8s ease;
	/* width: 50vw; */
	height: 100vh;
	top: 0;
}

.menuBox_r {
	width: 38vw;
	right: -50vw;
	/* background-color: linear-gradient(#0078ff, #031d36); */
	background: #fff;
	z-index: 9;
	transition: all .48s;
}

.menuText {
	width: 60%;
	position: absolute;
	left: 45%;
	top: 50%;
	transform: translate(-50%, -50%);
	overflow-y: auto;
	/* color: #fff; */
	margin-top: -20px;
}

.menuText li {
	/* margin-top: 20px; */
	/* border-bottom: 1px solid #e5e5e5; */
	position: relative;
	display: flex;
}

.menuText li::after {
	content: "";
	width: 100%;
	height: 1px;
	background: rgba(229, 229, 229, 0.6);
	position: absolute;
	left: 0;
	bottom: 0;
}

.menuText li span {
	display: inline-block;
	font-size: 26px;
	margin-right: 5px;
	font-family: "BebasNeue";
	line-height: 91px;
}

.menuText li a {
    font-weight: 600;
    font-size: 68px;
    color: #333;
    letter-spacing: 4px;
    line-height: 1.8;
    text-transform: uppercase;
	font-family: "BebasNeue";
}

.menuText li:hover a {
	background: linear-gradient(to right, #0078ff, #031d36);
	-webkit-background-clip: text;
	color: transparent;
	transition: all .48s;
}

.menuText li:hover span {
	transition: all .48s;
}

.head_nav.show .Toolbar {
	background: #d7d6d6;
	transition: all .48s;
}

.head_nav.show .kongBai {
	background: #d7d6d6;
	transition: all .48s;
}

.head_nav.show .souSuo {
	background: #d7d6d6;
	transition: all .48s;
}

.menuR {
	right: 0 !important;
	transition: all .48s;
}

/* 首页详情 */

.box {
	width: 100%;
	height: 100vh;
	background: url(../images/banner2.jpg) no-repeat;
	background-size: cover;
	display: flex;
	position: relative;
	overflow: hidden;
}

.meng {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	position: absolute;
	left: 0%;
	top: 0%;
}

.banner {
	width: 94%;
	position: relative;
	display: flex;
	align-items: center;
}

.logo {
	position: fixed;
	left: 7%;
	top: 0;
	padding: 30px 0;
}

.logo img {
	width: 200px;
}

.banner_xq {
	width: 86%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.foot {
	position: fixed;
	left: 7%;
	bottom: 0;
	padding: 20px 0;
	width: 80%;
}

.foot p {
	color: rgba(255, 255, 255, 0.4);
	font-size: 12px;
}

.bannerTit {
	color: #fff;
}

.bannerTit span {
	font-size: 52px;
	letter-spacing: 1px;
}

.bannerTit p {
	font-size: 40px;
	letter-spacing: 1px;
}

.bannerTit a {
	color: #fff;
	display: inline-block;
	padding: 10px 35px;
	background: rgba(255, 255, 255, 0.4);
	margin-top: 5%;
	transition: all .48s;
}

.bannerTit a:hover {
	background: rgba(0, 0, 0, 1);
	text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FFDD1B, 0 0 70px #FFDD1B, 0 0 80px #FFDD1B, 0 0 100px #FFDD1B, 0 0 150px #FFDD1B;
	transition: all .48s;
}

.nav {
	width: 48%;
	display: flex;
	color: #fff;
}

.nav_l {
	width: 28%;
	height: 48vh;
}

.nav_l ul {
	height: 100%;
}

.nav_l ul a {
	color: #fff;
}

.nav_l li {
	/*padding: 43px 0;*/
	height: calc(30% - 5px);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.3);
	margin-bottom: 5px;
	border-radius: 3px;
	position: relative;
	font-size: 12px;
	transition: all .48s;
}

.nav_l li:hover {
	background: rgba(0, 0, 0, 1);
	/*text-shadow: 2px 1px 3px #f7eac1;*/
	text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FFDD1B, 0 0 70px #FFDD1B, 0 0 80px #FFDD1B, 0 0 100px #FFDD1B, 0 0 150px #FFDD1B;
	transition: all .48s;
}

.nav_l li.nav_li3 {
	height: 40%;
}

/* .nav_l li:last-child{			
				height: 40%;
			}		 */

.nav_l .nav_l_img img {
	width: 25px;
}

.nav_l li img {
	width: 5px;
}

.kg_icon1, .kg_icon2 {
	position: absolute;
	top: 40%;
	color: rgba(255, 255, 255, 0.3);
}

.kg_icon1 {
	left: 5%;
}

.kg_icon2 {
	right: 5%;
}

.zm_icon1, .zm_icon2 {
	position: absolute;
	left: 5%;
}

.zm_icon3, .zm_icon4 {
	position: absolute;
	right: 5%;
}

.zm_icon1, .zm_icon3 {
	top: 5%;
}

.zm_icon2, .zm_icon4 {
	bottom: 5%;
}

.JJ_icon1, .JJ_icon2, .JJ_icon3, .JJ_icon4 {
	position: absolute;
	/*color: rgba(255,255,255,0.3);*/
}

.JJ_icon1 {
	left: 50%;
	top: 5%;
	color: #fff;
	transform: translateX(-50%);
}

.JJ_icon2 {
	width: 50px !important;
	left: 50%;
	transform: translateX(-50%);
	bottom: 5%;
}

.JJ_icon3, .JJ_icon4 {
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
}

.JJ_icon3 {
	left: 5%;
}

.JJ_icon4 {
	right: 5%;
}

.nav_r {
	width: 72%;
	color: #fff;
}

.tianQi {
	height: calc(60% - 5px);
	background: rgba(255, 255, 255, 0.3);
	margin-left: 5px;
	border-radius: 3px;
	position: relative;
}

.tianQi:hover {
	box-shadow: 0px 0px 50px rgba(255, 255, 255, 0.8) inset;
}

.tianQi .tianQi_city {
	padding-top: 5%;
	padding-left: 20px;
	padding-right: 25%;
}

.logo_head {
	position: absolute;
	right: 5%;
	top: 5%;
}

.logo_head img {
	width: 120px;
}

.tianQi_xq {
	padding: 0 20px;
	padding-right: 20%;
	margin-top: 20px;
}

.tianQi_xq ul {
	display: flex;
	justify-content: space-between;
	color: #fff;
}

.tianQi_xq ul li {
	width: 22%;
	border-radius: 25px;
	background: rgba(255, 255, 255, 0.3);
	font-size: 12px;
	text-align: center;
	/*padding: 0px 15px;*/
}

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

.tianQi_city ul li {
	font-size: 12px;
}

.tianQi_city ul li img {
	width: 13px;
}

.tianQi_city p img {
	width: 20px;
}

.wenDu {
	margin-top: 50px;
}

.wenDu b {
	font-size: 42px;
	font-weight: normal;
}

.nav_bot {
	margin-top: 5px;
	height: 40%;
}

.nav_bot ul {
	height: 100%;
	display: flex;
	align-items: center;
}

.nav_bot ul a {
	display: block;
	width: 25%;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
	margin-left: 5px;
	border-radius: 3px;
	font-size: 12px;
	cursor: pointer;
	position: relative;
	transition: all .48s;
	color: #fff;
}

.nav_bot ul li {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.nav_bot li:hover {
	/*box-shadow: 0px 0px 50px rgba(255,255,255,0.8) inset;*/
	background: rgba(0, 0, 0, 1);
	text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FFDD1B, 0 0 70px #FFDD1B, 0 0 80px #FFDD1B, 0 0 100px #FFDD1B, 0 0 150px #FFDD1B;
	transition: all .48s;
}

.nav_bot ul li::after {
	content: ".";
	position: absolute;
	color: rgba(255, 255, 255, 0.3);
	left: 50%;
	bottom: 30px;
}

.nav_bot ul li img {
	width: 20px;
	margin-bottom: 10px;
}

.head_nav {
	width: 6%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 99;
	min-width: 70px;
}

.head_nav img {
	width: 30px;
}

.Toolbar {
	height: 10.61%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	background: rgba(255, 255, 255, 0.3);
	position: relative;
	cursor: pointer;
}

.sS {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.souSuo {
	width: 320px;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-100%, -100%);
	transition: all .48s;
}

.souSuoXq {
	width: 250px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	/* background: #fff; */
	border-bottom: 1px solid #bcbcbc;
	display: flex;
	align-items: center;
	/* border-radius: 5px; */
}

.souSuo input {
	width: calc(100% - 40px);
	line-height: 20px;
	margin: 10px 20px;
	margin-left: 0;
	border: none;
	background: none;
	color: #fff;
}

.souSuo input::-webkit-input-placeholder {
	color: #fff;
}

.souSuo img {
	width: 20px;
	/* margin-right: 20px; */
	cursor: pointer;
}

.souSuo.show {
	top: 50%;
	transform: translate(-100%, -50%);
	transition: all .48s;
}

.ewm_show {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-110%, -50%);
	opacity: 0;
}

.ewm_show img {
	width: 100%;
}

.saoYisao:hover .ewm_show {
	opacity: 1;
	transition: all .48s;
}

.kongBai {
	height: 33.33%;
	background: rgba(255, 255, 255, 0.3);
}

.menu {
	cursor: pointer;
}

.menuShow {
	display: none;
}

.menu.show .menuShow {
	display: block;
}

.menu.show .menuNone {
	display: none;
}

@media(max-width:1680px) {
	/*/* ===================================================================================    */
	.wenDu {
		margin-top: 30px;
	}
	.nav_l {
		height: 45vh;
	}
}

@media(max-width:1480px) {
	/*/* ===================================================================================    */
	.tianQi .tianQi_city {
		padding-right: 10%;
	}
	.tianQi_xq {
		padding-right: 8%;
	}
	.tianQi_xq ul li {
		width: 22%;
	}
}

@media(max-width:1368px) {
	/*/* ===================================================================================    */
	.bannerTit span {
		font-size: 42px;
	}
	.bannerTit p {
		font-size: 30px;
	}
	.bannerTit a {
		font-size: 12px;
		padding: 6px 25px;
	}
	.logo img {
		width: 180px;
	}
	.tianQi_xq {
		margin-top: 10px;
	}
	.wenDu b {
		font-size: 36px;
	}
	.nav_bot ul li span, .nav_l li span {
		font-size: 12px;
	}
}