body {
	margin: auto;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover,
a:visited,
a:link,
a:active {
	color: inherit;
	/* 或其他颜色值 */
	text-decoration: none;
}


.top {
	width: 1920px;
	background: linear-gradient(90deg, rgba(204, 146, 106, 0) 0%, #CC926A 70%, rgba(204, 146, 106, 0) 100%);
	border-radius: 0px 0px 0px 0px;
	height: 186px;
	margin: auto;
}

.top .box {
	width: 1250px;
	margin: auto;
	padding-top: 92px;
	height: 46px;
	display: flex;
	justify-content: space-between;
}


.box .nav{
	display: flex;
	justify-content: space-between;
	font-family: 'Microsoft YaHei', '微软雅黑', 'Arial', sans-serif;
	font-weight: bold;
	font-size: 16px;
	color:#fff;
	text-transform: none;
}

.box .nav a{
	margin-right:30px;
	height: 36px;
	line-height: 36px;
	display:block;
	text-align: center;
	cursor: pointer;
}
.box .nav a:nth-child(3) {
	position: relative;
}
.nav  img{
	width: 20px;
}
.nolan:hover{
	border-bottom:none !important;
}
.box .nav a:hover{
	color: #3D5564;
	border-bottom:4px solid #3D5564;
}


.midden {
	width: 100%;
	min-height: 2000px;
	background-color: #fff;
}

.info {
	width: 1250px;
	margin: 0 auto;
	padding: 0 150px;
	margin-bottom: 170px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.info_l {
	width: 595px;
	height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.information {
	width: 100%;
	height: 300px;
}

.info_title {
	width: 100%;
	height: 32px;
	font-size: 32px;
	color: #CC926A;
	margin: 0 auto;
	text-align: center;
}

.sub_title {
	width: 100%;
	height: 62px;
	border-radius: 31px;
	border: 1px solid #707070;
	text-align: left;
	padding-left: 27px;
	font-size: 42px;
	color: #3D5564;
	margin-top: 31px;
}

.sub_content{
	width: 100%;
	padding-left: 27px;
	margin-top: 35px;
	height: 30px;
	color: #CC926A;
	font-size: 27px;
}

.content {
	width: 100%;
	margin-top: 42px;
	height: 160px;
	font-size: 22px;
	color: #4D4D4D;
	text-align: left;
	padding-left: 67px;
}


.info_r {
	width: 450px;
	height: 100%;
	text-align: center;
}

.info_r image {
	width: 100%;
	height: 100%;
}


.bottom {
	width: 100%;
	height: 94px;
	margin: auto;
	background: #1A1A1A;
	border-radius: 0px 0px 0px 0px;
	display: flex;
	justify-content: flex-start;
	
}
.bottom .box {
	width: 1250px;
	margin: auto;
	height: 90px;
	display: flex;
	justify-content: flex-start;
}

.bottom .logo img{
	width: 121px;
	height: 45px;
	padding-top: 20px;
}

	
.bottom .tip{
	height: 16px;
	font-family: 'Microsoft YaHei', '微软雅黑', 'Arial', sans-serif;
	font-weight: normal;
	font-size: 11px;
	color: #FFFFFF;
	line-height: 90px;
	margin-left: 80px;
	text-align: left;
	font-style: normal;
	text-transform: none;
}

/* 隐藏下拉内容 */
.dropdown-content {
  display: none;
  position: absolute;
  left: -18px;
  top: 40px;
  background-color: #f9f9f9;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content div{
	height: 40px;
	line-height: 40px;
	color: #3D5564;
	font-size: 14px;
}

 
/* 鼠标悬停时显示下拉内容 */
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content div:hover{
	background: #CC926A;
	color: #fff;
}