/* 菜单按钮样式 */
.menu-btn {
	position: relative;
	display: flex;
	margin: 0.42rem 0 0.42rem 0.45rem;
	z-index: 2;
}

.menu-label {
	width: 0.65rem;
	font-size: 0.22rem;
	margin-left: 0.1rem;
	cursor: pointer;
}

.cn-en-box{
	margin-left: 0.6rem;
	font-size: 0.16rem;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.lang-text{
	padding: 0 0.15rem;
	line-height: 0.24rem;
	box-sizing: border-box;
	border: 1px solid transparent;
}

.lang-center{
	width: 2px;
	height: 0.1rem;
	margin: 0 0.15rem;
	background-color: #fff;
}

.lang-active{
	color: #22B7AD;
	/* margin: 0 0.15rem; */
	border: 1px solid #22B7AD !important;
	box-sizing: border-box;
}

.logo {
	position: absolute;
	top: 0.24rem;
	right: 0.44rem;
	width: 2.08rem;
	height: 0.66rem;
}
#menuBtn {
	display: none;
}

#menuBtn+label {
	position: relative;
	width: 0.36rem;
	height: auto;
	display: inline-block;
	cursor: pointer;
	transition: all .5s;
	text-align: left;
}

#menuBtn+label div,
#menuBtn+label div:before,
#menuBtn+label div:after {
	background: #fff;
	position: absolute;
	height: 0.05rem;
	width: 0.36rem;
	border-radius: 0.04rem;
	transition: all .5s;
}

#menuBtn+label div:first-child {
	top: 0;
}

#menuBtn+label div:nth-child(2) {
	top: 0.13rem;
}

#menuBtn+label div:nth-child(3) {
	top: 0.26rem;
}

#menuBtn+label div:first-child {
	transition: top .15s .15s, transform .15s;
}

#menuBtn+label div:nth-child(2),
#menuBtn+label div:nth-child(3) {
	transition: top .15s .15s, transform .15s;
}

#menuBtn+label div:nth-child(3) {
	top: 0.26rem;
}

#menuBtn:checked+label div:first-child {
	top: 0.13rem;
	transform: rotate(45deg);
	transition: top .15s, transform .15s .15s;
}

#menuBtn:checked+label div:nth-child(2),
#menuBtn:checked+label div:nth-child(3) {
	top: 0.13rem;
	transform: rotate(-45deg);
	transition: top .15s, transform .15s .15s;
}

/* 菜单面板样式 */
#menuDetails {
	position: absolute;
	top: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.45);
	height: 0;
	overflow: hidden;
	transition: height .5s;
}
#menuDetails.active-menu-details{
	height: 3.7rem;
}
.menu-first{
	width: 95%;
	margin: 1rem auto 0;
	display: flex;
	justify-content: space-between;
}
.menu-first-item {
	/* float: left; */
	/* margin-right: 0.4rem; */
	text-align: center;
	font-size: 12px;
}

.menu-first-title {
	font-size: 0.26rem;
	padding: 0.04rem 0.23rem;
	cursor: pointer;
	margin-bottom: 0.2rem;
	display: inline-block;
}

.menu-first-title:hover, .active-menu-first-title {
	background-color: #22B7AD;
}
.menu-bordr{
	position: relative;
}
.menu-bordr::after{
	content: ' ';
	width: 100%;
	height: 1px;
	background-color: #6A6766;
	position: absolute;
	bottom: -0.21rem;
	left: 0;
}
.menu-second-box {
	padding: 0.2rem 0.2rem 0;
	/* border-top: 1px solid #6A6766; */
	position: relative;
}
.menu-second-box::after{
	content: ' ';
	width: 100%;
	height: 1px;
	background-color: #6A6766;
	position: absolute;
	top: 0;
	left: 0;
}


.menu-second-item {
	margin-bottom: 0.2rem;
}

.menu-second-item {
	position: relative;
	font-size: 0.12px;
	width: auto;
	height: auto;
}

.menu-first-title a {
	color: #fff;
}

.menu-second-item a {
	display: inline-block;
	color: #fff;
	font-size: 0.2rem;
	padding: 0.08rem 0.2rem;
	opacity: 0.8;
	position: relative;
	transition: 0.3s;
	top: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
}
.menu-second-a a{
	padding: 0.08rem 0.3rem;
}
.menu-second-b a{
	padding: 0.08rem 0.27rem;
}
.menu-second-item::before,
.menu-second-item::after {
	position: absolute;
	content: "";
	width: 0;
	height: 0.02rem;
	background-color: #22B7AD;
	z-index: 2;
}

.menu-second-item::before {
	right: 50%;
}

.menu-second-item::before,
.menu-second-item::after {
	top: 0;
	transition: width 0.2s 0.35s ease-out;
}

.menu-second-item::after {
	left: 50%;
}

.menu-second-item:hover::before,
.menu-second-item:hover::after {
	width: 50%;
	transition: width 0.2s ease-in;
}

.menu-second-item a::before,
.menu-second-item a::after {
	position: absolute;
	content: "";
	display: none;
}

.menu-second-item a::before {
	top: 0;
	left: 0;
	border-left: 2px solid #22B7AD;
	border-bottom: 2px solid #22B7AD;
}

.menu-second-item a::after {
	top: 0;
	right: 0;
	border-right: 2px solid #22B7AD;
	border-bottom: 2px solid #22B7AD;
}

.menu-second-item a:hover::before,
.menu-second-item a:hover::after {
	display: block;
	width: 50%;
	height: 96%;
	opacity: 1;
	transition: height 0.2s 0.2s ease-in, width 0.2s 0.4s linear, opacity 0s 0.2s;
}

.menu-second-item a:hover {
	color: #22B7AD;
	opacity: 1;
}