.header{
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 99;
}
.header-container{
	width: 100%;
	/* max-width: 1920px; */
	height: 103px;
	padding: 0 110px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
}
/* logo */
.logo{
	width: 148px;
}
/* 导航条 */
.navigation{
	display: flex;
}
.navigation a{
	height: 30px;
	color: #fff;
	font-size: 20px;
	margin-left: 40px;
	padding: 0 4px;
	position: relative;
}

.navigation .shift{
	height: 30px;
	color: #fff;
	font-size: 17px;
	margin-left: 40px;
	padding: 2px 4px 0px 4px;
	position: relative;
}

.navigation a:after{
	content: " ";
	width: 0%;
	height: 1px;
	background-color: #00a0e9;
	position: absolute;
	bottom: 0;
	left: 0;
}
.navigation a:hover:after{
	animation: navigation ease-in-out 0.5s forwards;
}
@keyframes navigation{
	from{
		width: 0%;
		left: 50%;
	}
	to{
		width: 100%;
		left: 0%;
	}
}
.nav-hover:after{
	width: 100% !important;
}
.header-shadow{
	width: 100%;
	height: 103px;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(rgba(0,0,0,0.3), rgba(255,255,255,0));
	z-index: 1;
}
/* 箭头 */
.tips-arr{
	width: 43px;
	height: 26px;
	position: fixed;
	left: -21.5px;
	z-index: 99;
	margin-left: 50%;
	animation: tipArr 1s linear infinite alternate;
}
@keyframes tipArr{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
	}
}
/* 头部大图 */
.header-img{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 120px;
	object-fit: cover;
	overflow-y: hidden;
	position: relative;
}
.detail-header-img{
	background: no-repeat center center;
	background-size: cover;
}
.header-img:before{
	content:" ";
	display:table;
}
.header-img .bg{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	object-fit: cover;
}
.header-img div{
	width: 44%;
}
.header-img div img:first-of-type{
	width: 30%;
}
.menu{
	width: 0.36rem;
	height: 0.26rem;
	display: none;
	position: fixed;
	right: 0.34rem;
	top: 0.43rem;
	z-index: 99;
}
.menu-container{
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	background-color: rgba(0,0,0,0.9);
	padding: 0.38rem 0.34rem 0;
	z-index: 99;
	opacity: 0;
}
.menu-container div{
	width: 100%;
	height: 100%;
	font-size: 0.52rem;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	flex-direction: column;
}
.menu-container img{
	width: 0.3rem;
	margin-bottom: 0.76rem;
}
.menu-container a{
	color: #fff;
	margin: 0.32rem 0;
	transform: translateX(150%);
}
.menu-container span{
	margin-right: 0.1rem;
	font-size: 0.32rem;
}
.menu-hover{
	color: #00a0e9 !important;
}
.showing{
	animation: showing 1s forwards;
}
@keyframes showing{
	from{
		transform: translateX(150%);
	}
	to{
		transform: translateX(0%);
	}
}
/* 底部跳转 */
.bottom-btn{
	width: 100%;
	text-align: center;
	margin: 200px 0 200px;
	position: relative;
}
.bottom-btn a{
	margin: 0 auto;
	background-color: #fff;
	position: relative;
	z-index: 2;
}
.bottom-btn p{
	width: 100%;
	height: 1px;
	position: absolute;
	top: 35%;
	border-bottom: 1px solid #b2b2b2;
}

.bottom-btn img:nth-of-type(1){
	height: 22px;
}
.bottom-btn img:nth-of-type(2){
	height: 36px;
	margin: 16px 60px;
}
.bottom-btn img:nth-of-type(3){
	height: 41px;
}
.bottom-btn span{
	width: 20%;
	height: 5px;
	background-color: #00a0e9;
	display: block;
	margin: 20px auto 0;
}
.bottom-btn:hover span{
	animation: line 0.5s linear forwards;
}
@keyframes line{
	from{
		width: 0%;
	}
	to{
		width: 20%;
	}
}
/* 底部 */
.bottom{
	width: 78.125%;
	margin: 55px auto 40px;
	border-top: 1px solid #e3e3e3;
	border-bottom: 1px solid #e3e3e3;
}
.bottom-container{
	display: flex;
	justify-content: center;
}
.bottom-list{
	text-align: center;
	margin: 40px 5% 30px;
}
.bottom-list:first-of-type{
	margin: 40px 0 30px;
}
.bottom-list:last-of-type{
	margin: 40px 0 30px;
}
.bottom-container p{
	color: #a0a0a0;
	font-size: 24px;
}
.bottom-container span{
	color: #a0a0a0;
	font-size: 18px;
	display: block;
	margin: 5px 0 30px;
}
.stock{
	font-size: 20px !important;
}
.stock i{
	color: #008000;
	font-style: inherit;
}
.bottom-container div div{
	color: #a0a0a0;
	font-size: 16px;
	margin: 10px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bottom-container div div a{
	color: #a0a0a0;
	font-size: 16px;
}
.bottom-container div div a:hover{
	color: #00a0e9;
}
.bottom-container div div span{
	font-size: 16px;
	margin: 0;
}
.bottom-arr{
	margin-right: 10px;
}
.social{
	margin-top: 20px;
}
.social img{
	margin-right: 10px;
}
.bottom-under{
	width: 78.125%;
	text-align: center;
	margin: 40px auto 40px;
	color: #a0a0a0;
	font-size: 16px;
}
.bottom-under a{
	color: #a0a0a0;
	font-size: 16px;
}
.bottom-under a:hover{
	color: #00a0e9;
}
.share-layer{
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,0.86);
	z-index: 999;
	display: none;
}
.share-layer img{
    width: 2rem;
	position: absolute;
    right: 0.2rem;
    top: 0.2rem;
}
/* ---------------------------分割线--------------------------- */
@media screen and (max-width:1280px) {
	.navigation{
		display: none;
	}
	.menu{
		display: block;
	}
	.header-container{
		height: 1.03rem;
	}
}
/* 手机端 */
@media screen and (max-width:768px) {
	body{
		width: 100%;
		overflow-x: hidden;
	}
	.web{
		display: none !important;
	}
	.phone{
		display: block !important;;
	}
	
	
	.logo{
		width: 1.61rem;
		left: 0.34rem;
		top: 0.34rem;
		position: absolute;
	}
	.header-shadow{
		height: 1.03rem;
	}
	.tips-arr{
		display: none !important;
	}
	.header-img{
		margin-bottom: 0.6rem;
	}
	.border{
		width: 100%;
		height: 1px;
		border-bottom: 0.35rem solid #eee;
	}
	.boundary-line{
		width: 0.02rem;
		height: 0.24rem;
		margin: 0.12rem auto;
	}
	.title{
		height: 0.33rem !important;
		margin-top: 0.12rem !important;
	}
	.title:nth-last-of-type(even){
		margin-top: 0.6rem !important;
	}
	.title:first-of-type{
		margin-top: 0 !important;
	}
	.bottom-btn{
		margin: 1rem auto 0.7rem;
	}
	.bottom-btn img:nth-of-type(1){
		height: 0.22rem;
	}
	.bottom-btn img:nth-of-type(2){
		height: 0.36rem;
		margin: 0.16rem;
	}
	.bottom-btn img:nth-of-type(3){
		height: 0.41rem;
	}
	.bottom-btn p{
		top: 36%;
	}
	.bottom-btn span{
		height: 0.05rem;
		margin: 0.2rem auto 0;
	}
	.bottom,.bottom-under{
		width: 91.2%;
		margin: 0 auto 0.4rem;
	}
	.bottom-container{
		flex-direction: column;
	}
	.bottom-list{
		margin: 0.4rem 0 0;
	}
	.bottom-list:first-of-type{
		margin: 0.4rem 0 0;
	}
	.bottom-container span{
		font-size: 0.2rem;
	}
	.bottom-container p{
		font-size: 0.26rem;
	}
	.stock{
		font-size: 0.2rem !important;
	}
	.bottom-container div div{
		font-size: 0.2rem;
		margin: 0.1rem 0;
	}
	.bottom-container div div a{
		display: flex;
		align-items: center;
		font-size: 0.18rem;
	}
	.bottom-container div div span{
		display: flex;
		align-items: center;
		font-size: 0.18rem;
	}
	.bottom-container div div a img{
		margin: 0 0 0 0.1rem !important;
	}
	.bottom-arr{
		width: 0.1rem;
		margin: 0 0.1rem 0 0 !important;
	}
	.bottom-list:last-of-type{
		margin: 0.4rem 0 0.3rem;
	}
	.social img{
		width: 0.24rem;
		margin-right: 0.2rem;
	}
	.bottom-under{
		font-size: 0.2rem;
		text-align: center;
	}
	.bottom-under a{
		font-size: 0.2rem;
	}
}