body {
	margin: auto;
	padding: 0;
	width: 100%;
	background: #efcbaf;
}

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%;
	height: 100%;
}

.swiper-container {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	height: 100%;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.swiper-slide img{
	width: 100%;
	height: 100%;
}

.bottom {
	width: 100%;
	height: 88px;
	margin: auto;
	background: #1A1A1A;
	border-radius: 0px 0px 0px 0px;
	display: flex;
	justify-content: flex-start;
	position: fixed;
	bottom: 0;
	z-index: 1;
	
	
	
}
.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: 999999;
}
.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;
}