* {
	margin: 0;
	padding: 0;
}

/* 在Firefox中隐藏滚动条 */
html {
    scrollbar-width: none; /* Firefox */
}

a {
	text-decoration: none;
	color: white;
}

li {
	list-style-type: none;
}

html {
	font-size: 16px;
}

.clearf::after {
	content: '';
	display: block;
	clear: both;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

/**********头部样式**********/
.header {
	width: 100%;
	height: 120px;
	/* background: #3765f9; */
	background: #18afff;
}

.header-content {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.company {
	position: absolute;
	top: 1rem;
	left: 50%;
	transform: translateX(-50%);
	width: 20vw;
	height: 20vw;
	border-radius: 20vw;
	overflow: hidden;
}

.company>img {
	width: 100%;
}

.nav-li {
	display: inline-block;
	width: 80px;
	height: 120px;
	line-height: 120px;
	box-sizing: border-box;
	color: white;
	text-align: center;
	margin-right: 30px;
}

.nav-li:hover {
	border-bottom: 4px solid white;
}

.active {
	border-bottom: 4px solid white;
}

.content {
	padding: 6px;
}

.about {
	width: 80%;
	margin: 50px auto;
	display: none;
}

.call {
	width: 80%;
	margin: 50px auto;
	display: none;
}

.image-wraper{
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 6px;
}

.image {
	display: block;
	width: 100%;
}


/**********底部样式**********/
.footer {
	width: 100%;
	height: 100px;
	line-height: 100px;
	text-align: center;
	background: #18afff;
	color: white;
}

/* 隐藏滚动条的样式 */
::-webkit-scrollbar {
    display: none;
}