@charset "utf-8";
/* 公共样式 */

/* 顶部 */
.Header-wrapper {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99999;
	background: #fff;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .1);
}

.Header-container {
	width: 1440px;
	margin: 0 auto;
}

.winter .Header-navbarbox {
	display: block !important;
}

.Header-logo {
	float: left;
	position: relative;
	z-index: 999;
	width: 24%;
	height: 90px;
	display: flex;
	align-items: center;
}

.Header-logo a {
	width: 100%;
}

.Header-logo a img {
	width: 100%;
}

.Header-navbarbox {
	width: calc(76% - 90px);
	float: right;
}

.Header-Menu {
	display: block;
	height: 90px;
	text-align: center;
	line-height: 90px;
	font-size: 16px;
	color: #333;
	transition: all .2s ease;
	position: relative;
}

.H-nav li {
	width: 12.5%;
	float: left;
}

.H-nav>li>a::after {
	width: 100%;
	height: 100%;
	background-color: #176db9;
	display: block;
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	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;
	z-index: -1;
}

.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>a,
.H-nav>li:hover>a {
	color: #fff;
}

/* 下拉 */
.Header-arr {
	display: none;
}

.Header-sonMenu {
	position: absolute;
	left: 0;
	top: 90px;
	width: 100%;
	text-align: left;
	background: transparent;
	border-top: 1px solid #eee;
}

.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: 80%;
	margin: 50px auto;
	display: none;
}

.Header-sonMenu-link ul {
	display: flex;
	flex-wrap: wrap;
	gap: 7%;
}

.Header-sonMenu-link ul li {
	width: 18%;
	margin: 0;
}

.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-left: 20px;
}

.Header-sonMenu a:hover {
	color: #176db9;
	padding-left: 30px;
}

.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: 60px;
	cursor: pointer;
	float: right;
	user-select: none;
	display: none;
	width: 20px;
	margin-left: 8px;
}

.Header-navclick span {
	width: 100%;
	height: 2px;
	background: #1a1a1a;
	display: block;
	position: relative;
	margin-top: 45px;
	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;
}

@-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%;
	padding-top: 90px;
}

.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) */

	.contain {
		width: 100%;
		padding: 0 5%;
	}

	.Header-container {
		width: 100%;
		padding: 0 3%;
	}
}

@media all and (max-width:1439px) {

	/* 1360 × (768) */
}

@media all and (max-width:1359px) {

	/* 1280 × (800/854/1024) */
}

@media all and (max-width:1279px) {

	/* 1152 × (864) */

}

@media all and (max-width:1151px) {

	/* 1024 × (600/768) */

}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {

	/* 平板设备 720 适配 */
	.Container-wrapper {
		padding-top: 60px;
	}

	.Header-wrapper:after {
		display: block;
	}

	.Header-container {
		width: 100%;
		padding: 0 5%;
	}

	.Header-logo {
		width: 40%;
	}


	.Header-navclick {
		display: block;
	}

	.Header-navbarbox {
		display: none;
		width: 100%;
		background: #fff;
		position: absolute;
		top: 90px;
		left: 0;
		box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .1);
	}

	.Header-navbar {
		float: left;
		width: 100%;
		margin-right: 0;
		height: auto;
		overflow-y: auto !important;
		padding: 20px;
		text-align: left;
		background-color: #fff;
	}

	.Header-navbar ul li {
		display: block;
		width: 100%;
		position: relative;
		margin: 0;
	}

	.Header-Menu {
		width: 100%;
		border-bottom: 1px solid #eee;
		height: 60px;
		line-height: 60px;
		text-align: left;
		padding-left: 30px;
	}

	.H-nav>li.cur>a,
	.H-nav>li:hover>a {
		background-color: #176db9;
	}

	.Header-wrapper {
		box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0);
	}

	.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;
		border-top: 0;
	}

	.Header-sonMenu a {
		width: 100%;
		line-height: 48px;
		border-bottom: 1px solid #eee;
		padding: 0 20px
	}

	.Header-sonMenu-link {
		padding: 30px;
		margin: 0;
		width: 100%;
	}

	.Header-sonMenu:after {
		background: #FFFAF0;
		box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.1);
	}

}

@media all and (max-width:640px) {

	/* 移动终端以上 360 适配 */
	.Header-container {
		width: 100%;
		padding: 0 5%;
	}

	.Header-logo {
		width: 60%;
		height: 60px;
	}

	.Header-navclick span {
		margin-top: 29px;
	}

	.Header-navbarbox {
		top: 60px;
	}
}

/* 右侧按钮 */

.footerItme {
	display: none;
}

.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: 350px;
	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: -350px;
	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: #176db9;
	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:nth-of-type(4) .open {
	width: 200px;
	min-height: 50px;
}
.list_box .list .sublist ul li:nth-of-type(4) .open .form-box {
	width: 150px;
	min-height: 50px;
}
.list_box .list .sublist ul li:nth-of-type(4):hover .open {
	left: -158px;
	opacity: 1;
}

.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 .tel {
	line-height: 50px;
	height: 50px;
}
.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 #176db9;
	color: #176db9;
}

.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/iconSearch1.png);
	background-size: 100% 100%;
}

.list_box .list .sublist ul li .title i.iconCompany {
	background: url(../image/iconCompany1.png);
	background-size: 100% 100%;
}

.list_box .list .sublist ul li .title i.iconYw {
	background: url(../image/iconYw1.png);
	background-size: 100% 100%;
}

.list_box .list .sublist ul li .title i.iconTel {
	background: url(../image/iconTel1.png);
	background-size: 100% 100%;
}

.list_box .list .sublist ul li .title i.iconEwm {
	background: url(../image/iconEwm1.png);
	background-size: 100% 100%;
}

.list_box .list .sublist ul li .title i.iconTop {
	background: url(../image/iconTop1.png);
	background-size: 100% 100%;
}
/* .flex-search {
	position: fixed;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99;
}

.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: #176db9;
	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 #176db9;
}

.search-wr input {
	color: #fff;
	background: #176db9;
	height: 50px;
	line-height: 50px;
}

.search-wr .text {
	width: 200px;
	min-height: 50px;
	box-sizing: content-box;
	background: #176db9;
	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(2) .search-wr:before,
.flex-item:nth-of-type(4) .search-wr:before {
	top: 35px;
} */

@media all and (max-width:1599px) {

	/* 1440 × (700)  */


}

@media all and (max-width:1359px) {

	/* 1280 */
}

@media all and (max-width:1279px) {}

/* 移动端 */
@media all and (max-width:1000px) {

	/* 平板设备 720 适配 */

}

@media all and (max-width:640px) {

	/* 移动终端以上 360 适配 */
	body {
		padding-bottom: 70px;
	}

}

/* 底部 */
.footer-wrapper {
	width: 100%;
	position: relative;
	z-index: 9;
	background: #176db9;
	overflow: hidden;
	color: #fff;
}

.footer-items {
	width: 100%;
	padding: 50px 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-navbar {
	width: 100%;
	overflow: hidden;
	user-select: none;
}

.footer-contact {
	width: 30%;
	float: left;
}

.footer-contact .logo {
	width: 100%;
	margin-bottom: 20px;
}

.footer-contact .logo img {
	width: 100%;
}

.footer-contact p {
	font-size: 14px;
	line-height: 1;
	padding: 8px 0;
	transition: all .4s ease;
}
.footer-contact p b {
	font-size: 20px;
}

.footer-navbar .footer-nav {
	width: 66%;
	float: right;
}

.footer-navbar .footer-nav ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.footer-navbar .footer-nav li {
	width: calc(14.2% - 12px);
	text-align: left;
	font-size: 16px;
	padding-left: 20px;
	position: relative;
}


.footer-navbar .footer-nav li::before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 1px;
	content: '';
	background: linear-gradient(to bottom, rgb(255, 244, 206, .7), rgb(255, 244, 206, 0));
}


.footer-menu {
	font-size: 16px;
	display: block;
	position: relative;
	line-height: 30px;
	position: relative;
}

.footer-menu::before {
	position: absolute;
	left: -20px;
	top: 0;
	height: 100%;
	width: 1px;
	content: '';
	background-color: #fff;
}

.footer-drop {
	width: 100%;
	margin-top: 14px;
	display: block;
}

.footer-drop a {
	display: block;
	font-size: 14px;
	line-height: 1.4;
	padding: 6px 0;
	transition: all .4s ease;
	opacity: .7;
}

.footer-drop a:hover {
	padding-left: 10px;
}

.footer-drop p {
	font-size: 14px;
	padding: 8px 0;
}

.footer-drop p:nth-of-type(1) {
	margin-top: 10px;
}

.footer-copyright {
	width: 100%;
	padding: 16px 0;
	font-size: 14px;
	border-top: 1px solid rgb(255, 255, 255, .2);
	position: relative;
}

.footer-copyright::before {
	position: absolute;
	top: 1px;
	width: 100%;
	height: 1px;
	background-color: rgb(0, 0, 0, .1);
	content: '';
}

@media all and (max-width:1700px) {

	/* 1600 × (900/1024/1200) */
}

@media all and (max-width:1599px) {

	/* 1440 × (900/1050) */
}

@media all and (max-width:1439px) {

	/* 1360 × (768) */

}

@media all and (max-width:1359px) {

	/* 1280 × (800/854/1024) */

}

@media all and (max-width:1279px) {

	/* 1152 × (864) */


}

@media all and (max-width:1151px) {

	/* 1024 × (600/768) */

}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {

	/* 平板设备 720 适配 */

	.footer-copyright {
		text-align: center;
	}

	.footer-contact {
		display: none;
	}
	.footer-navbar .footer-nav {
		width: 100%;
	}
}

@media all and (max-width:640px) {

	/* 移动终端以上 360 适配 */
	.footer-items, .list_box {
		display: none;
	}
	.flex-search {
		display: none;
	}

	.footerItme {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		transform: translateY(0);
		background-color: #176db9;
		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: #176db9;
		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/iconSearch1.png);
		background-size: 100% 100%;
	}

	.footerItme .item i.iconCompany {
		background: url(../image/iconCompany1.png);
		background-size: 100% 100%;
	}

	.footerItme .item i.iconTel {
		background: url(../image/iconTel1.png);
		background-size: 100% 100%;
	}

	.footerItme .item i.iconEwm {
		background: url(../image/iconEwm1.png);
		background-size: 100% 100%;
	}

	.footerItme .item i.iconTop {
		background: url(../image/iconTop1.png);
		background-size: 100% 100%;
	}

	.footerItme .item .text-box {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 70px;
		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: #176db9;
		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: #176db9;
		color: #fff;
	}
	.footerItme .item .text-box .search input::-webkit-input-placeholder {
		color: #fff;
	}
	
	.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-foot.png);
		background-size: 100% 100%;
		cursor: pointer;
	}
	.footerItme .item .text-box .txt {
		width: calc(100% - 40px);
		min-height: 50px;
		line-height: 50px;
		box-sizing: content-box;
		background: #176db9;
		font-size: 14px;
		border-radius: 4px;
		color: #fff;
		padding: 0 20px;
		box-shadow: 0 0 30px 0 rgba(0, 0, 0, .2);
		overflow: hidden;
	}
	.footerItme .item .text-box .txt a {
		display: block;
		line-height: 50px;
		border-bottom: 1px dashed rgba(255, 244, 206, .5);
		transition: all .4s ease;
	}
	.footerItme .item .text-box .txt-yw a {
		width: calc(50% - 10px);
		float: left;
	}
	.footerItme .item .text-box .txt-yw a:nth-of-type(2n) {
		width: calc(50% - 10px);
		float: right;
	}
	.footerItme .item .text-box .txt a:nth-last-of-type(1) {
		border-bottom: 0 dashed rgba(255, 244, 206, .5);
	}
}