.header {
	background-color: #83cbc5;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9;
}
.header .logo {
	padding-left: 60px;
	width: 323px;
	height: 60px;
}
.header .logo img {
	width: 100%;
}
.header .box-menu {
	width: 1270px;
	display: flex;
	justify-content: center;
}
.box-menu ul {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}
.box-menu ul > li {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	gap: 0 28px;
}
.box-menu ul > li > a {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	padding: 10px 0;
	min-width: 106px;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
}
.box-menu ul > li.active a,
.box-menu ul > li:hover a {
	color: #595858;
}
.box-menu ul > li.active:after,
.box-menu ul > li:hover:after {
	content: " ";
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0;
	height: 2px;
	border-radius: 50px;
	background: #595858;
}
.box-menu .li-body {
	display: none;
	position: absolute;
	top: 44px;
	left: 50%;
	transform: translatex(-50%);
	width: 100%;
	padding-top: 50px;
	z-index: 5;
}
.box-menu ol {
	border-radius: 0 0 10px 10px;
	box-shadow: 0 0 0 2px rgba(150, 150, 150, 0.1);
}
.box-menu ol li a {
	font-size: 18px;
	color: #999;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 40px;
	background: #fff;
	border-bottom: 1px solid #eee;
}
.box-menu ol li:last-child a {
	border-radius: 0 0 10px 10px;
	border: none;
}
.box-menu ul > li:hover .li-body {
	display: block;
}

.box-search {
	width: 50px;
	height: 50px;
	position: relative;
}
.box-search .search,
.box-search .search-close {
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center;
	cursor: pointer;
}
.box-search.show .search,
.box-search .search-close {
	display: none
}
.box-search.show .search-close {
	display: block
}
.box-search .search-form {
	box-sizing: border-box;
	position: absolute;
	top: 95px;
	left: -280px;
	width: 344px;
	height: 50px;
	border: 1px solid #666;
	display: none;
	align-items: center;
	z-index: 9;
	background-color: #fff;
}
.box-search.show .search-form {
	display: flex;
}
.box-search .search-form .s2 {
	width: 48px;
	height: 50px;
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center;
}
.box-search .search-form .input {
	width: 220px;
	height: 48px;
	padding: 5px 10px;
	font-size: 18px;
	border: none;
	outline: none;
	color: #83cbc5;
}
.box-search .search-form .input::-webkit-input-placeholder {
	color: #83cbc5;
}
.box-search .search-form .cancel {
	width: 74px;
	height: 48px;
	border-left: 1px solid #666;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #83cbc5;
	font-size: 18px;
	color: #fff;
	cursor: pointer;
}
.box-search .box-search-type {
	display: none;
	position: absolute;
	top: 145px;
	left: -280px;
	background-color: #fff;
	width: 344px;
	height: 280px;
	padding: 5px 22px;
	z-index: 9;
}
.box-search .box-search-type.active {
	display: block;
}
.box-search .box-search-type li {
	height: 44px;
	padding-left: 23px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	border-bottom: 1px solid #ccc;
	color: #666;
	font-size: 18px;
	cursor: pointer;
}
.box-search .box-search-type li:last-child {
	border: none;
}


.box-user {
	margin-left: 120px;
}
.box-user .login {
	font-size: 18px;
	color: #fff;
	white-space: nowrap;
	cursor: pointer;
}
.box-user .login:hover {
	color: #595858;
}

