@charset "utf-8";

/* 公共样式 */
::-webkit-scrollbar {
	display: none;
}

/* 顶部 */
.Header-wrapper {
	width: 100%;
	background: #fff;
	/* position: fixed;
	left: 0;
	top: 0; */
	z-index: 99999;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
}

.Header-container {
	width: 100%;
	position: relative;
}

.winter .Header-navbarbox {
	display: block !important;
}

.Header-logo {
	overflow: hidden;
	margin: 30px auto;
}

.Header-logo a {
	height: 70px;
	line-height: 70px;
	float: left;
}

.Header-logo a img {
	display: block;
	height: 70px;
}

.Header-logo .search {
	float: right;
	width: 500px;
	height: 56px;
	line-height: 56px;
	margin-top: 12px;
	border-radius: 28px;
	border: 3px solid #D09960;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.Header-logo .search i {
	width: 20px;
	height: 20px;
	display: block;
}

.Header-logo .search input {
	width: calc(100% - 50px);
	padding: 0 20px;
}

.Header-logo .search button {
	width: 50px;
	height: 50px;
	border-radius: 50% 0 0 50%;
	background: url(../image/iconSearch1.png) #D09960 center no-repeat;
	background-size: 40% 40%;
}

.Header-navbar {
	color: #fff;
	/* background-color: #D09960; */

	background: url(../image/navBg.png) center;
	background-size: 100% 100%;
	position: relative;
}

.Header-navbar .H-nav {
	display: flex;
	flex-wrap: wrap;
}

.Header-navbar li {
	display: inline-block;
	width: 12.5%;
	text-align: center;
	height: auto;
}

.Header-navbar li i {
	width: 32px;
	height: 32px;
	display: block;
	margin: 7px auto 0;
	position: relative;
	z-index: 2;
}

.Header-navbar li i.iconHome01 {
	background: url(../image/iconHome01.png);
	background-size: 100% 100%;
}

.Header-navbar li i.iconHome02 {
	background: url(../image/iconHome02.png);
	background-size: 100% 100%;
}

.Header-navbar li i.iconHome03 {
	background: url(../image/iconHome03.png);
	background-size: 100% 100%;
}

.Header-navbar li i.iconHome04 {
	background: url(../image/iconHome04.png);
	background-size: 100% 100%;
}

.Header-navbar li i.iconHome05 {
	background: url(../image/iconHome05.png);
	background-size: 100% 100%;
}

.Header-navbar li i.iconHome06 {
	background: url(../image/iconHome06.png);
	background-size: 100% 100%;
}

.Header-navbar li i.iconHome07 {
	background: url(../image/iconHome07.png);
	background-size: 100% 100%;
}

.Header-navbar li i.iconHome08 {
	background: url(../image/iconHome08.png);
	background-size: 100% 100%;
}

.Header-Menu {
	display: block;
	text-align: center;
	font-size: 18px;
	transition: all .2s ease;
}

.H-nav li a {
	position: relative;
	z-index: 2;
	padding: 5px 0;
}

.H-nav>li>a::after {
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0, 0.1);
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
	transform: scale(0, 1);
	transition: all .36s;
	-webkit-transform: scale(0, 1);
	-moz-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	-o-transform: scale(0, 1);
	-webkit-transition: all .36s;
	-moz-transition: all .36s;
	-ms-transition: all .36s;
	-o-transition: all .36s;
}

.H-nav>li.cur a:after,
.H-nav>li:hover a:after {
	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
}

.H-nav li.cur {}


/* 下拉 */
.Header-arr {
	display: none;
}

.Header-sonMenu {
	position: absolute;
	left: 0;
	top: 76px;
	width: 100%;
	text-align: left;
	background: transparent;
	z-index: 90;
}

.Header-sonMenu:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(255, 255, 255, .98);
	left: 0;
	top: 0;
	z-index: 1;
	box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.Header-sonMenu-link {
	width: 70%;
	margin: 20px auto;
	display: none;
}

.Header-sonMenu-link ul {
	display: flex;
	flex-wrap: wrap;
	gap: 7%;
}

.Header-sonMenu-link ul li {
	width: 18%;
	margin: 0;
	height: 50px;
	line-height: 50px;
	text-align: left;
}

.Header-sonMenu a {
	font-size: 15px;
	display: inline-block;
	width: 100%;
	border-bottom: 1px solid #eee;
	color: #333;
	transition: all .4s ease;
	line-height: 50px;
	position: relative;
	z-index: 2;
	padding: 0 0 0 20px !important;
	text-align: left;
	height: 50px;
	line-height: 50px;
}

.Header-sonMenu a::before {
	width: 6px;
	height: 10px;
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -5px;
	left: 0;
	background: url(../image/iconMenu.png);
	background-size: 100% 100%;
}


.Header-sonMenu a:hover {
	color: #D09960;
	padding: 0 0 0 30px !important;
}
.Header-sonMenu a::before {
	width: 6px;
	height: 10px;
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -5px;
	left: 0;
	background: url(../image/iconMenu.png);
	background-size: 100% 100%;
}

.Header-sonMenu a:hover::before {
	background: url(../image/iconMenu-on.png);
	background-size: 100% 100%;
}

/* 手机版样式 */
.Header-navclick {
	height: 90px;
	cursor: pointer;
	float: right;
	user-select: none;
	display: none;
	width: 20px;
	margin-left: 8px;
}

.Header-navclick span {
	width: 100%;
	height: 2px;
	background: #333;
	display: block;
	position: relative;
	margin-top: 40px;
	transition: all .2s linear;
}

.Header-navclick span:before,
.Header-navclick span:after {
	content: "";
	position: absolute;
	height: 2px;
	background: #333;
	display: block;
	left: 0;
	width: 100%;
	transition: all .2s linear;
}

.Header-navclick span:before {
	top: -7px;
}

.Header-navclick span:after {
	top: 7px;
}

.Header-navclick.ontrue span {
	-moz-animation: buttonAnimation 0.3s ease forwards;
	-webkit-animation: buttonAnimation 0.3s ease forwards;
	animation: buttonAnimation 0.3s ease forwards;
}

.Header-navclick.ontrue span:before {
	-moz-animation: buttonAnimationBefore 0.3s ease forwards;
	-webkit-animation: buttonAnimationBefore 0.3s ease forwards;
	animation: buttonAnimationBefore 0.3s ease forwards;
}

.Header-navclick.ontrue span:after {
	-moz-animation: buttonAnimationAfter 0.3s ease forwards;
	-webkit-animation: buttonAnimationAfter 0.3s ease forwards;
	animation: buttonAnimationAfter 0.3s ease forwards;
}


/* 底部 */
.footer-wrapper {
	width: 100%;
	position: relative;
	z-index: 9;
	/* background: #F3F3F3; */
	background: url(../image/foot.png) center;
	background-size: 100% 100%;
	overflow: hidden;
	color: #666;
}

.footer-items {
	width: 100%;
	padding: 40px 0;
}

.footer-items .contain {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 80px;
}

.footer-copyright-txt {
	width: 100%;
	text-align: center;
}

.footer-copyright-txt p {
	width: 100%;
	text-align: center;
	padding: 0 3%;
	line-height: 24px;
}
.footer-items .title-select {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 600;
}

.footer-items .select {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 65px;
	margin-bottom: 40px;
}
.dropdown {
	position: relative;
	width: calc(20% - 56px);
}

.dropdown-btn {
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #fff;
	color: #333;
	cursor: pointer;
	position: relative;
	border: 1px solid #d9d9d9;
}

.dropdown-btn::after {
	position: absolute;
	content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #D09960 transparent transparent transparent;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #fff;
	width: 100%;
	max-height: 300px;
	overflow-y: auto;
	/* box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); */
	z-index: 1;
	border-right: 1px solid #d9d9d9;
	border-left: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
	text-align: center;
}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropdown-content a:hover {
	background-color: #D09960;
	color: #fff;
}

.dropdown.active .dropdown-content {
	display: block;
}

.footer-navbar {
	width: 100%;
	overflow: hidden;
	user-select: none;
}

.footer-navbar ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.footer-navbar li {
	width: calc(14.2% - 36px);
	text-align: left;
	font-size: 16px;
	position: relative;
	padding-left: 20px;
}

.footer-navbar li:nth-last-of-type(1) {
	width: 252px;
	padding-left: 0;
}

.footer-navbar li:nth-last-of-type(1)::before {
	display: none;
}

.footer-navbar li:nth-last-of-type(1) .footer-menu {
	/* background: linear-gradient(to right, rgb(255, 244, 206, .4), rgb(255, 244, 206, 0));
	padding-left: 16px; */
}

.footer-navbar li:nth-last-of-type(1) .footer-menu::before {
	display: none;
}

.footer-navbar li::before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 1px;
	content: '';
	background: linear-gradient(to bottom, rgb(204, 204, 204, .7), rgb(204, 204, 204, 0));
}


.footer-menu {
	font-size: 16px;
	display: block;
	position: relative;
	line-height: 18px;
	position: relative;
	color: #333;
}

.footer-menu::before {
	position: absolute;
	left: -20px;
	top: 0;
	height: 100%;
	width: 2px;
	content: '';
	background-color: #D09960;
}

.footer-drop {
	width: 100%;
	margin-top: 10px;
	display: block;
}

.footer-drop a {
	display: block;
	font-size: 14px;
	line-height: 1;
	padding: 8px 0;
	transition: all .4s ease;
}

.footer-drop a:hover {
	padding-left: 10px;
}

.footer-navbar li:nth-last-of-type(1) .footer-menu::after {
	height: 0;
}

.footer-navbar p {
	font-size: 14px;
	padding: 8px 0;
}

.footer-navbar p:nth-of-type(1) {
	margin-top: 10px;
}

.footer-copyright {
	width: 100%;
	padding: 16px 0;
	font-size: 14px;
	position: relative;
	background-color: #D09960;
	/* background: url(../image/footBg.png);
	background-size: 100%; */
	color: #fff;
}

.footerItme {
	display: none;
}

.flex-search {
	position: fixed;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99;
}

.list_box {
	width: 70px;
	height: 70px;
	position: fixed;
	right: 0px;
	bottom: 10%;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .2);
	z-index: 999;
}

.list_box .list {
	width: 70px;
	height: 70px;
	position: relative;
}

.list_box .list .iconList {
	display: block;
	width: 70px;
	height: 70px;
	background: url(../image/list.png);
	background-size: 100% 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 20;
	display: block;
	text-align: center;
	-webkit-transition: all 0.6s;
	-ms-transition: all 0.6s;
	-moz-transition: all 0.6s;
	text-decoration: none;
}

.list_box .list .sublist {
	position: absolute;
	left: 0px;
	bottom: 0;
	width: 70px;
	height: 420px;
	text-align: center;
	-webkit-transition: all 0.6s;
	-ms-transition: all 0.6s;
	-moz-transition: all 0.6s;
	background-color: #fff;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, .3);
	z-index: 10;
	display: none;
}

.list_box .list:hover .sublist {
	top: -420px;
	display: block;
}

.list_box .list .sublist ul {
	width: 100%;
}

.list_box .list .sublist ul li {
	position: relative;
	width: 70px;
	height: 70px;
	z-index: 1;
}

.list_box .list .sublist ul li:nth-last-of-type(1) {
	border-bottom: 0 solid #eee;
}

.list_box .list .sublist ul li .title {
	color: #D09960;
	width: 70px;
	height: 70px;
	font-size: 14px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 4;
	background-color: #fff;
	border-bottom: 1px solid #eee;
}

.list_box .list .sublist ul li .open {
	position: absolute;
	left: 0;
	top: 0;
	width: 370px;
	min-height: 50px;
	height: auto;
	text-align: left;
	z-index: 0;
	opacity: 0;
}

.list_box .list .sublist ul li .open .form-box {
	width: 300px;
	min-height: 50px;
	height: auto;
	text-align: left;
	-webkit-transition: all 0.6s;
	-ms-transition: all 0.6s;
	-moz-transition: all 0.6s;
	background-color: #fff;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, .3);
	position: relative;
}

.list_box .list .sublist ul li .form-box:before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	right: -5px;
	top: 20px;
	background-color: #fff;
	transform: rotate(45deg);
}

.list_box .list .sublist ul li:hover .open {
	left: -308px;
	opacity: 1;
}

.list_box .list .sublist ul li .open .sub {
	display: block;
	position: absolute;
	left: 13px;
	top: 50%;
	margin-top: -8px;
	width: 16px;
	height: 16px;
	background: url(../image/iconRight-search.png);
	background-size: 100% 100%;
	cursor: pointer;
}

.list_box .list .sublist ul li .open input {
	color: #666;
	height: 50px;
	line-height: 50px;
	width: 100%;
}

.list_box .list .sublist ul li .open .gsList {
	padding: 10px;
}

.list_box .list .sublist ul li .open .gsList a {
	display: block;
	text-align: left;
	border: 1px solid #ccc;
	color: #666;
	padding: 5px;
	margin-bottom: 5px;
}

.list_box .list .sublist ul li .open .gsList a:hover {
	border: 1px solid #D09960;
	color: #D09960;
}

.list_box .list .sublist ul li .open .gsList a:nth-last-of-type(1) {
	margin-bottom: 0;
}

.list_box .list .sublist ul li .open .ywList {
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.list_box .list .sublist ul li .open .ywList a {
	display: block;
	text-align: left;
	border: 1px solid #ccc;
	color: #666;
	padding: 5px;
	width: calc(50% - 2px);
}

.list_box .list .sublist ul li .open .ywList a:hover {
	border: 1px solid #D09960;
	color: #D09960;
}

.list_box .list .sublist ul li .open .ywList a:nth-last-of-type(1) {
	margin-bottom: 0;
}

.list_box .list .sublist ul li:hover .open .tel {
	line-height: 50px;
	padding: 0 20px;
}
.list_box .list .sublist ul li .open .ewm {
	padding: 20px;
	overflow: hidden;
}

.list_box .list .sublist ul li:hover .open .ewm {
	padding: 20px;
	overflow: hidden;
}

.list_box .list .sublist ul li .open .ewm img {
	width: calc(50% - 10px);
	float: left;
}

.list_box .list .sublist ul li .open .ewm img:nth-of-type(2) {
	float: right;
}

.list_box .list .sublist ul li .title i {
	display: block;
	margin: 0 auto;
	width: 40px;
	height: 40px;
}

.list_box .list .sublist ul li .title i.iconSearch {
	background: url(../image/iconSearch.png);
	background-size: 100% 100%;
}

.list_box .list .sublist ul li .title i.iconCompany {
	background: url(../image/iconCompany.png);
	background-size: 100% 100%;
}

.list_box .list .sublist ul li .title i.iconYw {
	background: url(../image/iconYw.png);
	background-size: 100% 100%;
}

.list_box .list .sublist ul li .title i.iconTel {
	background: url(../image/iconTel.png);
	background-size: 100% 100%;
}

.list_box .list .sublist ul li .title i.iconEwm {
	background: url(../image/iconEwm.png);
	background-size: 100% 100%;
}

.list_box .list .sublist ul li .title i.iconTop {
	background: url(../image/iconTop.png);
	background-size: 100% 100%;
}

.flex-item {
	position: relative;
	margin-bottom: 3px;
	cursor: pointer;
}

.flex-item:last-child {
	margin-bottom: 0;
}

.flex-item span {
	display: block;
	box-sizing: border-box;
	text-align: center;
	padding-top: 12px;
	width: 70px;
	height: 70px;
	border-radius: 3px;
	background: #D09960;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	transition: 0.38s;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.16);
}

.flex-item span i {
	display: block;
	margin: 0 auto 10px;
	width: 28px;
	height: 28px;
}

.flex-item span i.iconSearch {
	background: url(../image/iconSearch.png);
	background-size: 100% 100%;
}

.flex-item span i.iconCompany {
	background: url(../image/iconCompany.png);
	background-size: 100% 100%;
}

.flex-item span i.iconTel {
	background: url(../image/iconTel.png);
	background-size: 100% 100%;
}

.flex-item span i.iconEwm {
	background: url(../image/iconEwm.png);
	background-size: 100% 100%;
}

.flex-item span i.iconTop {
	background: url(../image/iconTop.png);
	background-size: 100% 100%;
}

.flex-item:hover .search-box {
	opacity: 1;
	visibility: visible;
	pointer-events: visible;
	transform: translateX(0px);
}

.search-box {
	position: absolute;
	right: 100%;
	top: 10px;
	padding-right: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-40px);
	pointer-events: none;
	transition: 0.4s;
}

.search-wr {
	position: relative;
}

.search-wr:before {
	position: absolute;
	right: -8px;
	top: 50%;
	margin-top: -6px;
	content: "";
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 8px solid #D09960;
}

.search-wr input {
	color: #fff;
	background: #D09960;
	height: 50px;
	line-height: 50px;
}

.search-wr .text {
	width: 200px;
	min-height: 50px;
	box-sizing: content-box;
	background: #D09960;
	font-size: 14px;
	border: none;
	border-radius: 4px;
	color: #fff;
	padding: 0 20px;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, .2);

}

.search-wr input::-webkit-input-placeholder {
	color: #fff;
}

.search-wr input:focus::-webkit-input-placeholder {
	opacity: 0;
	visibility: hidden;
}

.search-wr .sub {
	display: block;
	position: absolute;
	left: 13px;
	top: 50%;
	margin-top: -8px;
	width: 16px;
	height: 16px;
	background: url(../image/iconRight-search.png);
	background-size: 100% 100%;
	cursor: pointer;
}

.search-wr .text a {
	display: block;
	line-height: 48px;
	border-bottom: 1px dashed rgba(255, 244, 206, .5);
	transition: all .4s ease;
}

.search-wr .text a:hover {
	padding-left: 16px;
}

.flex-item:nth-of-type(2) .search-box,
.flex-item:nth-of-type(4) .search-box {
	top: 0;
}

.flex-item:nth-of-type(3) .search-box li {
	width: calc(50% - 10px);
	float: left;
}

.flex-item:nth-of-type(3) .search-box li:nth-of-type(2n) {
	width: calc(50% - 10px);
	float: right;
}


.flex-item:nth-of-type(2) .search-wr:before,
.flex-item:nth-of-type(4) .search-wr:before {
	top: 35px;
}

@-moz-keyframes buttonAnimationBefore {
	0% {
		-moz-transform: translateY(0px) rotate(0);
		transform: translateY(0px) rotate(0);
	}

	50% {
		-moz-transform: translateY(7px) rotate(0);
		transform: translateY(7px) rotate(0);
	}

	100% {
		-moz-transform: translateY(7px) rotate(45deg);
		transform: translateY(7px) rotate(45deg);
	}
}

@-webkit-keyframes buttonAnimationBefore {
	0% {
		-webkit-transform: translateY(0px) rotate(0);
		transform: translateY(0px) rotate(0);
	}

	50% {
		-webkit-transform: translateY(7px) rotate(0);
		transform: translateY(7px) rotate(0);
	}

	100% {
		-webkit-transform: translateY(7px) rotate(45deg);
		transform: translateY(7px) rotate(45deg);
	}
}

@keyframes buttonAnimationBefore {
	0% {
		-moz-transform: translateY(0px) rotate(0);
		-ms-transform: translateY(0px) rotate(0);
		-webkit-transform: translateY(0px) rotate(0);
		transform: translateY(0px) rotate(0);
	}

	50% {
		-moz-transform: translateY(7px) rotate(0);
		-ms-transform: translateY(7px) rotate(0);
		-webkit-transform: translateY(7px) rotate(0);
		transform: translateY(7px) rotate(0);
	}

	100% {
		-moz-transform: translateY(7px) rotate(45deg);
		-ms-transform: translateY(7px) rotate(45deg);
		-webkit-transform: translateY(7px) rotate(45deg);
		transform: translateY(7px) rotate(45deg);
	}
}

@-moz-keyframes buttonAnimationAfter {
	0% {
		-moz-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	50% {
		-moz-transform: translateY(-7px) rotate(0);
		transform: translateY(-7px) rotate(0);
	}

	100% {
		-moz-transform: translateY(-7px) rotate(-45deg);
		transform: translateY(-7px) rotate(-45deg);
	}
}

@-webkit-keyframes buttonAnimationAfter {
	0% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	50% {
		-webkit-transform: translateY(-7px) rotate(0);
		transform: translateY(-7px) rotate(0);
	}

	100% {
		-webkit-transform: translateY(-7px) rotate(-45deg);
		transform: translateY(-7px) rotate(-45deg);
	}
}

@keyframes buttonAnimationAfter {
	0% {
		-moz-transform: translateY(0) rotate(0);
		-ms-transform: translateY(0) rotate(0);
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	50% {
		-moz-transform: translateY(-7px) rotate(0);
		-ms-transform: translateY(-7px) rotate(0);
		-webkit-transform: translateY(-7px) rotate(0);
		transform: translateY(-7px) rotate(0);
	}

	100% {
		-moz-transform: translateY(-7px) rotate(-45deg);
		-ms-transform: translateY(-7px) rotate(-45deg);
		-webkit-transform: translateY(-7px) rotate(-45deg);
		transform: translateY(-7px) rotate(-45deg);
	}
}

@-moz-keyframes buttonAnimation {
	0% {
		background: transparent;
	}

	50% {
		background: rgba(255, 255, 255, 0);
	}

	100% {
		background: rgba(255, 255, 255, 0);
	}
}

@-webkit-keyframes buttonAnimation {
	0% {
		background: transparent;
	}

	50% {
		background: rgba(255, 255, 255, 0);
	}

	100% {
		background: rgba(255, 255, 255, 0);
	}
}

@keyframes buttonAnimation {
	0% {
		background: transparent;
	}

	50% {
		background: rgba(255, 255, 255, 0);
	}

	100% {
		background: rgba(255, 255, 255, 0);
	}
}

/* 中间+共用部分 */
.Container-wrapper {
	width: 100%;
}

.contain {
	margin: 0 auto;
	padding: 0;
	width: 1440px;
}


/* PC端 */
@media all and (max-width:1700px) {

	/* 1600 × (900/1024/1200) */
}

@media all and (max-width:1599px) {

	/* 1440 × (900/1050) */
	.Header-container {}


	.contain {
		width: 100%;
		padding: 0 5%;
	}

	.footer-items {
		padding: 80px 0;
	}

	.footer-navbar ul {}
}

@media all and (max-width:1439px) {

	/* 1360 × (768) */

}

@media all and (max-width:1359px) {

	/* 1280 × (800/854/1024) */
	.Header-logo a img {}

}

@media all and (max-width:1279px) {

	/* 1152 × (864) */
	.Header-container {}


	.footer-items {
		padding: 50px 0;
	}

	.footer-navbar li {}

}

@media all and (max-width:1151px) {

	/* 1024 × (600/768) */

	.Header-container {}

	.Header-logo a img {}

	.Header-sonMenu a {
		line-height: 40px;
	}

	.Header-navbar {
		margin-right: 6px;
	}

}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {

	/* 平板设备 720 适配 */


	.list_box {
		/*bottom: 20px;*/
      display: none;
	}

	.Container-wrapper {}

	.Header-wrapper:after {
		display: block;
	}

	.Header-container {
		height: 90px;
	}

	.Header-logo {
		height: 90px;
		padding: 0;
		margin: 0 auto;
		float: left;
		width: 100%;
	}

	.Header-logo .search {
		display: none;
	}

	.Header-logo a {
		height: 90px;
		display: flex;
		align-items: center;
	}

	.Header-logo a img {
		height: 60px;
	}

	.Header-navclick {
		display: block;
	}

	.Header-navbar {
		color: #fff;
		/* background-color: #D09960; */
		background: url(../image/navBg-m.png) right bottom;
		background-size: 100% 100%;
	}

	.Header-navbarbox {
		display: none;
		width: 100%;
		position: absolute;
		top: 90px;
		left: 0;
		z-index: 9999;
	}

	.Header-navbar {
		float: left;
		width: 100%;
		margin-right: 0;
		height: auto;
		padding: 0;
		text-align: left;
	}

	.Header-navbar .contain {
		width: 100%;
		margin: 0;
	}

	.Header-navbar ul li {
		display: block;
		width: 100%;
		height: auto;
		position: relative;
		margin: 0;
		padding: 0;
	}

	.Header-navbar ul li a {
		display: flex;
		align-items: center;
		padding: 10px 20px;
	}

	.Header-navbar li i {
		float: left;
		margin: 0 10px 0 0;
		width: 24px;
		height: 24px;
	}

	.Header-Menu {
		width: 100%;
		border-bottom: 1px solid #eee;
		height: 60px;
		line-height: 60px;
		text-align: left;
		padding-left: 0;
	}

	.Header-wrapper {
		box-shadow: none;
	}

	.Header-Menu:after {
		display: none;
	}

	.Header-arr {
		position: absolute;
		display: block;
		width: 60px;
		height: 60px;
		top: 0;
		right: 0;
		z-index: 9;
		background: url("../image/iconArrH.png") no-repeat center center /14px auto;
	}

	.Header-arr.ontrue {
		transform: rotate(180deg);
	}

	.H-nav>li>a::after {
		height: 0;
	}

	.Header-sonMenu {
		position: relative;
		left: 0;
		top: 0;
		width: 100%;
		margin-left: 0;
		text-align: left;
	}

	.Header-sonMenu a {
		width: 100%;
		line-height: 48px;
		border-bottom: 1px solid #ccc;
		padding: 0 24px !important;
	}

	.Header-sonMenu-link {
		padding: 0px;
	}

	.footer-items {
		padding: 32px 0 36px;
	}

	.footer-navbar li {
		width: 16.66666% !important;
	}

	.footer-navbar li:nth-last-of-type(1) {
		display: none;
	}

	.footer-copyright {
		text-align: center;
	}

	.footer-copyright .contain {
		padding: 20px 4%;
		width: 100%;
	}

}

@media all and (max-width:640px) {

	/* 移动终端以上 360 适配 */
	.Header-logo a img {
		height: 48px;
	}

	.footer-navbar {
		width: 100%;
		padding: 0 30px;
	}

	.footer-items {
		display: none;
	}

}


@media all and (max-width:640px) {

	/* 移动终端以上 360 适配 */
	body {
		padding-bottom: 70px;
	}

	.list_box,
	.flex-search {
		display: none;
	}

	.footerItme {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		transform: translateY(0);
		background-color: #D09960;
		display: flex;
		flex-wrap: wrap;
		border-top: 1px solid #fff;
		height: 70px;
		z-index: 90;
	}

	.footerItme .item {
		width: 20%;
		border-right: 1px solid #fff;
	}

	.footerItme .item .text {
		display: none;
	}

	.footerItme .item:nth-last-of-type(1) {
		border-right: 0;
	}

	.footerItme .item .title {
		text-align: center;
		padding-top: 12px;
		width: 100%;
		height: 70px;
		border-radius: 3px;
		background: #D09960;
		color: #fff;
		font-size: 14px;
		transition: 0.38s;
	}

	.footerItme .item i {
		display: block;
		margin: 0 auto 3px;
		width: 28px;
		height: 28px;
	}

	.footerItme .item i.iconSearch {
		background: url(../image/iconSearch.png);
		background-size: 100% 100%;
	}

	.footerItme .item i.iconCompany {
		background: url(../image/iconCompany.png);
		background-size: 100% 100%;
	}

	.footerItme .item i.iconTel {
		background: url(../image/iconTel.png);
		background-size: 100% 100%;
	}

	.footerItme .item i.iconYw {
		background: url(../image/iconYw.png);
		background-size: 100% 100%;
	}

	.footerItme .item i.iconone {
		background: url(../image/iconone.png);
		background-size: 100% 100%;
	}

	.footerItme .item .text-box {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 70px;
		/**background-color: #FFFAF0;*/
		background-color: #FFF;
		padding: 20px;
		transform: translateX(0);
		box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.06);
		z-index: 90;
		padding: 20px;
	}

	.footerItme .item .text-box .search {
		width: calc(100% -40px);
		height: 50px;
		box-sizing: content-box;
		background: #FFF;
		font-size: 14px;
		border: none;
		border-radius: 4px;
		color: #fff;
		padding: 0 20px;
		box-shadow: 0 0 30px 0 rgba(0, 0, 0, .2);
		position: relative;
	}

	.footerItme .item .text-box .search input {
		width: 100%;
		height: 50px;
		line-height: 50px;
		text-indent: 20px;
		background-color: #FFF;
		/** color: #D09960; */
      	color: #333;
	}

	.footerItme .item .text-box .search input::-webkit-input-placeholder {
		/** color: #D09960; */
      	color: #333;
	}

	.footerItme .item .text-box .search input:focus::-webkit-input-placeholder {
		opacity: 0;
		visibility: hidden;
	}

	.footerItme .item .text-box .search .sub {
		position: absolute;
		left: 17px;
		top: 17px;
		display: block;
		width: 16px;
		height: 16px;
		background: url(../image/iconRight-search.png);
		background-size: 100% 100%;
		cursor: pointer;
		/** color: #D09960; */
      	color: #333;
	}

	.footerItme .item .text-box .txt {
		width: 100%;
		min-height: 50px;
		line-height: 50px;
		box-sizing: content-box;
		background: #FFF; 
		font-size: 14px;
		border-radius: 4px;
      	color: #333;
		/** color: #D09960; */
		padding: 0 0;
		/**box-shadow: 0 0 30px 0 rgba(0, 0, 0, .2); */
		overflow: hidden;
	}

	.footerItme .item .text-box .txt li {
		width: calc(50% - 10px);
		float: left;
      border-bottom: 1px dashed rgba(204, 204, 204, .5);
		/** border-bottom: 1px dashed rgba(255, 244, 206, .5); */
		/** border-bottom: 1px dashed rgba(208, 153, 96, .5);*/
	}

	.footerItme .item .text-box .txt li:nth-of-type(2n) {
		float: right;
	}

	.footerItme .item .text-box .txt a {
		display: block;
		line-height: 50px;
      border-bottom: 1px dashed rgba(204, 204, 204, .5);
		/**border-bottom: 1px dashed rgba(208, 153, 96, .5);*/
		/** border-bottom: 1px dashed rgba(255, 244, 206, .5); */
		transition: all .4s ease;
	}

	.footerItme .item .text-box .txt-yw a {
		width: 100%;
	}

	.footerItme .item .text-box .txt-yw a:nth-of-type(2n) {
		width: 100%;
	}

	.footerItme .item .text-box .txt li:nth-last-of-type(1) {
		border-bottom: 0 dashed rgba(255, 244, 206, .5);
	}
}

video {
  margin:0 auto;
  width: 100%;
	height: auto;
}