*{
	padding: 0;
	margin: 0;
	text-decoration: none;
}
body,html{
	width: 100%;
	height: 100%;
}

body::-webkit-scrollbar,
object::-webkit-scrollbar{
	width: 0;
}
.nav{
	width: 100%;
	height: 1rem;
	background-image: url(../img/nav@2x.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.nav .active{
	color: #6FCFF3;
	font-weight: bold;
}
.navtit{
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: space-between;
	width: 70%;
	margin: auto;
	color: white;
}
.navtit .logo{
	display: flex;
	align-items: center;
}
.navtit .logo img{
	width: 0.7rem;
	height: 0.7rem;
	margin-right: 0.2rem;
}
.navtit .logo h1{
	font-size: 0.36rem;
	text-align: center;
}
.navtit .logo p{
	font-size: 0.18rem;
	text-align: center;
}
.navtit ul{
	display: flex;
	align-items: center;
	cursor: pointer;
	list-style: none;
	height: 100%;
}
.navtit a{
	color: white;
	text-decoration: none;
}
.navtit ul li{
	font-size: 0.14rem;
	width: 1.4rem;
	position: relative;
	text-align: center;
	height: 100%;
	line-height: 1rem;
}
.navtit li:hover a{
	font-weight: bold;
	color: #6FCFF3;
}
.navtit li:hover .menu{
	display: block;
}
img{
	width: 100%;
	height: 100%;
}
.menu{
	width: 100%;
	padding: 0.1rem 0;
	box-sizing: border-box;
	background-color: rgba(255,255,255,0.8);
	position: absolute;
	top: 0.8rem;
	left: 0;
	border-top: 0.03rem solid #00C2FF;
	box-shadow: 0px 0.05rem 0.06rem 0.01rem rgba(145,145,145,0.16);
	text-align: center;
	font-size: 0.17rem;
	font-weight: normal;
	color: #333;
	display: none;
	z-index: 100;
}
.menu:hover{
	box-shadow: 0px 0.03rem 0.06rem 0.01rem rgba(145,145,145,0.5);
}
.menu::before{
	content: '';
	width: 0;
	height: 0;
	border: 0.11rem solid;
	border-color:transparent transparent #00C2FF transparent;
	position: absolute;
	top: -0.22rem;
	left: 50%;
	transform: translateX(-50%);
}
.menu p{
	line-height: 0.4rem;
}
.mactive{
	color: #00C2FF;
	font-weight: bold;
}
.menu p:hover{
	color: #00C2FF;
	font-weight: bold;
}

.cont{
	width: 70%;
	margin: auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cont div{
	width: 55%;
}
.cont div img{
	width: 0.80rem;
	height: 0.80rem;
	margin-bottom: 0.30rem;
}
.cont b{
	font-size: 0.30rem;
	color: #434343;
	display: block;
}
.cont p{
	font-size: 0.16rem;
	color: #000000;
	margin-top: 0.20rem;
	width: 100%;
}
.cont .product{
	width: 40%;
	height: 5.50rem;
}
.navurl{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	right: 0.5rem;
	top: 0;
	z-index: 100;
	height: 100%;
}

.navurl div{
	width: 0.35rem;
	height: 0.35rem;
	margin-bottom: 0.2rem;
	display: flex;
	transition: all 3s ease-in-out;
	position: relative;
	cursor: pointer;
}
.navurl a{
	display: flex;
	cursor: pointer;
}
.navurl img{
	border-radius: 50%;
	cursor: pointer;
	width: 100%;
	height: 100%;
}
.navurl div:hover img{
	transform: scale(1.3);
}