*{
	margin:0;
	padding:0;
}
html{
	font-family: Source Han Sans;
}
body{
	background: #F7F7F7;
}
nav a:hover{
	color:var(--text-color);
	border-bottom:3px solid var(--text-color);
}
a{
	font-size: 14px;
	text-decoration:none;
}
li{
	list-style:none;
}
button,button:active,input,input:active{
	border:none;
	outline:none;
}
table{
	border-collapse: collapse;
}
.width_margin{
	width:1200px;
	margin:0 auto;
}
.width_1200{
	width:1200px;
	margin:0 auto;
}
.logo_img{
	cursor:pointer;
}
/* 全局css变量 */
:root {
	--bg-color: #009143; /* 定义背景色 */
	--text-color: #009143; /* 定义文本颜色 */
	--foot-color: #007938;
	--orange-color: #EA5504;
}
/* 登录成功提示颜色 */
.toast-success{
	background-color: var(--bg-color);
}

/* footer */
.footer_top{
	height: 241px;
	background-color:var(--bg-color);;
}
.footer_top .footer{
	display:flex;
	justify-content:space-between;
}
.footer_list {
	margin-top:32px;
	font-weight:500;
}
.footer_list div{
	font-size:14px;
	margin-bottom:16px;
	color:rgba(255,255,255);
	/* ,0.4 */
}
.footer_list .footer_title{
	font-size: 18px;
	color:#fff;
	margin-bottom:19px;
}
.footer_list img{
	width:115px;
	height:115px;
}
.footer_list a{
	color:rgba(255,255,255);
	/* ,0.4 */
}
.footers_bottom{
	color:#fff;
	text-align:center;
	margin-top:10px;
}
.footer_bottom{
	height: 46px;
	background: var(--foot-color);
	display:flex;
	justify-content:center;
	align-items:center;
}
.footer_bottom div{
	font-size: 14px;
	color:#fff;
}
.footer_bottom div:first-child{
	margin-right:88px;
}
