<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
	box-sizing: border-box;
	font-family: "Microsoft YaHei";
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

a{
	text-decoration:none;
	color: #444;
}

header,
main,
footer {
	width: 100%;
	min-width: 1000px;
}

.header_container,
.main_container,
.footer_container {
	width: 1000px;
	margin: auto;
}

.header_container {
	display: flex;
	position: relative;
	padding: 10px 0 0 0;
	justify-content: center;
}

header .login {
	background-color: #3c7028;
	border-radius: 0 0 10px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 1%;
	top: 0;
	width: 19%;
	height: 32px;
	overflow: hidden;
	padding: 5px;
}

header .login img {
	width: 16px;
	margin: 3px;
}

header .login_go{
	margin-top: -1px;
}

header .login_go a{
	text-decoration: none;
	color: white;
}

header .login_go a:hover{
	text-decoration: none;
	color: white;
}

header .logo {
	width: 30%;
	display: flex;
	height: 80px;
}

header .logo img {
	height: 85%;
/*	width: 100px;*/
}

header .logo_text {
	margin-top: 20px;
}

header .logo_text_now {
	font-size: 24.1px;
}

header .nav {
	width: 70%;
	display: flex;
	align-items: flex-end;
    margin-bottom: 16px;
}

header .nav ul {
	display: flex;
	justify-content: space-around;
	list-style: none;
	width: 100%;
	font-size: 16px;
	/* font-weight: bold; */
}

header .nav li {
	padding: 1px 10px;
	text-decoration: none;
	border-bottom:2px solid white;
}

header .nav li a {
	text-decoration: none;
	color: black;
}
header .nav li:hover, .nav li.active{
	border-bottom: 2px solid darkgreen;
}
header .nav li:hover a, .nav li.active a{
	color: darkgreen;
}
</pre></body></html>