﻿@charset "utf-8";
/*头部导航*/
.menu0004{
	width: 100%;
	display: flex;
	justify-content: center;
}
.menu0004 a{
	position: relative;
	padding: 1rem 1.5rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.menu0004 a:after{
	position: absolute;
	content: '';
	width: 100%;
	height: 2px;
	bottom: -2px;
	left: 0px;
	background: var(--OneColor);
	transform: scaleX(0);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.menu0004 a:hover:after{
	transform: scaleX(1);
}

.menu0004 a.menu0004_a:after{
	transform: scaleX(1);
}

@media screen and (max-width:1023px)and (min-width:300px){
.menu0004{
	width: 96vw;
	margin: 0px auto;
	height:auto;
	flex-wrap: wrap;
	border-bottom: none;
}
.menu0004 a{
	position: relative;
	border-bottom:none;
	padding: 1rem 1.5rem;

}


}













