#header{
	width:1920px;
	left:50%;
	transform:translateX(-50%);
	padding:30px 50px;
	box-sizing:border-box;
	display:flex;
	justify-content:space-between;
	position:fixed;
	z-index:9;
	transition:all 0.5s;
	background: rgb(17 17 17 / 50%);
}

#header .logo{
	width:250px;
	height: auto;
	place-self:Center;
}

#header .logo img{
	width:100%;
}

#header .rtA{
	display:flex;
}

#header .rtA .menu{
	place-self:center;
	padding:16px 40px;
	background:rgba(255,255,255,0.5);
	display:flex;
	gap:40px;
	border-radius:50px;
}

#header .rtA .menu li{
	place-self:center;
	font-size:15px;
	color:#fff;
}

#header .rtA .menu li a{
	color:#fff;
}

#header .rtA .menu li:hover a{
	color:#FF3939;
}

#header .rtA .menu li.current a{
	color:#FF3939;
}

#header .rtA .link{
	place-self:center;
	margin-left:20px;
	width:32px;
}

#header .rtA .link img{
	width:100%;
}


#header .rtA .moMenu{
	place-self:center;
	margin-left:20px;
	width:32px;
	display:none;
}

#header .rtA .moMenu img{
	width:100%;
}

.moSlideMenu{
	display:none;
}

#footer{
    width:1920px;
	left:50%;
	transform:translateX(-50%);
    background:#111;
    border-top:1px solid #444;
    padding:120px 50px;
    box-sizing:border-box;
    position:relative;
}



#footer .topLine{
    width:100%;
    display:Flex;
}


#footer .topLine .logo{
    width:200px;
    place-self:Center;
}

#footer .topLine .logo img{
    width:100%;
}

#footer .topLine .footMenu{
    place-self:Center;
    padding-left:100px;
    box-sizing:border-box;
    display:flex;
    gap:40px;
}

#footer .topLine .footMenu li{
    font-size:16px;
    color:#777;
}

#footer .topLine .footMenu li a{
    color:#777;
}


#footer .topLine .footMenu li.white a{
    color:#fff;
}


#footer .info{
    font-size:16px;
    color:#777;
    padding-left:300px;
    box-sizing:border-box;
    margin-top:50px;
    line-height:26px;
}






















































