body {
	margin: 0;
}

.container {
	width: 100%;
	height: 100%;
}

.top-picture {
	width: 100%;
	min-width: 1200px;
	height: 210px;
	/* background-color: #999999; */
	background: url(../img/index/banner.jpg);
	background-size: 100% 100%;
}

.top-name {
	width: 100%;
	line-height: 210px;
	text-align: center;
	font-size: 46px;
	letter-spacing: 3px;
	color: #FFFFFF;
}

.main {
	width: 1200px;
	margin: 0 auto;
	margin-top: 32px;
	margin-bottom: 52px;
}

.nav {
	cursor: pointer;
	/* 设置宽度高度背景颜色 */
	height: 52px;
	width: 100%;
	box-shadow: 0px 2px 3px 0px rgba(164, 180, 190, 0.26);
}

.nav ul {
	/* 清除ul标签的默认样式 */
	width: 1200px;
	height: 52px;
	list-style-type: none;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
	display: flex;
	flex: 1;
}

.nav li {
	width: 120px;
	height: 52px;
	line-height: 52px;
}

.nav li a {
	/* 设置链接内容显示的格式*/
	display: block;
	/* 把链接显示为块元素可使整个链接区域可点击 */
	color: #333333;
	text-align: center;
	text-decoration: none;
	/* 去除下划线 */
}

.nav li a:hover {
	background-color: #00D59C;
	color: white;
}

.active {
	background-color: #00D59C;
	color: white !important;
}

.nav ul li ul {
	/* 设置二级菜单 */
	width: auto;
	background: rgb(189, 181, 181);
	position: absolute;
	display: none;
	/* 默认隐藏二级菜单的内容 */
}

.nav ul li ul li {
	/* 二级菜单li内容的显示 */
	margin-right: 0;
	float: none;
	text-align: center;
}

.nav ul li:hover ul {
	/* 鼠标选中二级菜单内容时 */
	display: block;
}

.footer {
	width: 100%;
	height: 225px;
	min-width: 1200px;
}

.footer-main {
	width: 100%;
	height: 183px;
	background: #F8F8F8;
	display: flex;
	justify-content: space-around;
}

.footer-left {
	font-size: 32px;
	font-weight: bold;
	color: #00D59C;
	line-height: 183px;
}

.footer-right {
	width: 100px;
	height: 100px;
	background: #FFFFFF;
	margin-top: 41px;
}

.footer-bottom {
	width: 100%;
	height: 42px;
	background: #00D59C;
	font-size: 12px;
	color: #FFFFFF;
	line-height: 42px;
	text-align: center;
}

.footer-center {
	margin-top: 47px;
}

.footer-center-nav a {
	font-size: 14px;
	font-family: MicrosoftYaHei;
	color: #333333;
	text-decoration: none;
	padding: 0 11px;
}

.footer-center-text {
	font-size: 12px;
	font-family: MicrosoftYaHei;
	color: #999999;
	margin-top: 16px;
	text-align: center;
}

.right {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 50%;
	right: 42px;
}

.right-img {
	width: 45px;
	height: 45px;
}

.phone_title {
	width: 176px;
	height: 38px;
	background: #FFFFFF;
	box-shadow: 0px 2px 7px 3px rgba(23, 27, 36, 0.09);
	font-size: 13px;
	color: #00D59C;
	line-height: 38px;
	text-align: center;
	position: absolute;
	right: 55px;
	top: 2px;
}
.code_img{
	width: 100px;
	height: 100px;
	background: #FFFFFF;
	box-shadow: 0px 2px 7px 3px rgba(23, 27, 36, 0.09);
	position: absolute;
	right: 55px;
	top: 50px;
}


.isnotShow {
	display: none;
}


