/*====================导航begin*********/
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	min-height: 50px;
	padding: 0 30px;
	background: linear-gradient(0deg, #010101 0%, #393839 100%);

}
/*左侧logo*/

.header .h-nav {
	display: flex;
	justify-content: space-between;
	/*justify-content: space-around;*/
	align-items: center;
	width: 100%;
	margin: 0 auto;
	min-height: 50px;
	max-width: 1680px;
}
/*右侧*/
.header .nav {
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	height: 100%;
	line-height: 50px;
	display: block;
}

.navbar_nav {
	display: flex;
	flex-wrap: wrap;
}

.header .navbar_nav li {
	float: left;
	position: relative;
	display: block;
}

.header .navbar_nav li:after {
	content: "";
	width: 0;
	height: 2px;
	background: #EB6C00;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.5s ease 0s;
}

.header .navbar_nav li:hover:after {
	width: 50%;
	left: 25%;
}

.header .navbar_nav li a {
	text-decoration: none;
	height: 100%;
	padding: 0 1.5vw;
	display: block;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	color: #fff;
	font-size: 18px;
}

.header .navbar_nav li:hover a {
	color: #fff;
}

.header .navbar_nav li.dropdown {
	display: inherit;
	position: relative;
}

.header .navbar_nav li.dropdown .jt {
	width: 20px;
	height: 20px;
	/*background: url(i/top.png) no-repeat;*/
	background-size: 100% 100%;
	display: block;
}

.header .navbar_nav li.dropdown .dropdown_menu {
	display: none;
	position: absolute;
	top: 50px;
	width: 100%;
	background: #2b2b2b;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 160%;
	left: -30%;
	padding-top: 10px;
	padding-bottom: 10px;
	/*opacity: 0;*/;
}

.header .navbar_nav li.dropdown .dropdown_menu a {
	font-size: 15px;
	color: #fff;
	padding: 0 10px;
	line-height: 35px;
	text-align: center;
	/*background: #fff;*/
	/*margin-bottom: 2px;*/
	;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu {
	display: block;
	background: #2b2b2b;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
	/*opacity: 1;*/;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu a {
	color: #fff;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu a:hover {
	color: #EB6C00;
}
/*.header .tel{margin-right:5px;}*/
.header .country-list {
	color: #fff;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.header  .contact {
	font-size: 18px;
	margin-right: 10px;
	position: relative;
	line-height: 50px;
}

.header  .contact a {
	color: #fff;
	display: flex;
	align-items: center;
}

.header  .contact a:hover {
	text-decoration: none;
}

.header  .contact img {
	margin-right: 5px;
}

.header .global {
	width: 24px;
}

.header .search {
	width: 20px;
	margin-left: 10px;
}

.header  .contact:after {
	content: "";
	width: 0;
	height: 2px;
	background: #EB6C00;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.5s ease 0s;
}

.header  .contact:hover:after {
	width: 50%;
	left: 35%;
}

.header .site {
	position: relative;
	margin-right: 10px;
	font-size: 16px;
}

.header .site .site-tit {
	line-height: 50px;
	display: flex;
	align-items: center;
}

.header .site .site-list {
	position: absolute;
	top: 50px;
	width: 100%;
	background: #2b2b2b;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 150%;
	left: -20%;
	padding-top: 10px;
	padding-bottom: 10px;
    /*opacity: 0;  */
	padding-left: 25%;
	line-height: 35px;
	display: none;
}

.header .site .site-list a {
	display: flex;
	color: #fff;
	align-items: center;
}

.header .site .site-list a img {
	margin-right: 3px;
}

.header .site .site-tit:hover {
	cursor: pointer;
}

.header .site:hover .site-list {
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
	/*opacity: 1;*/
	display: block;
}
/*白色背景的头部*/


#navToggle {
	display: none;
}

.m_nav {
	position: fixed;
	top: 0px;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 100%;
	height: 100%;
	background: #fff;
	transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	z-index: 1000;
	opacity: 1;
	visibility: visible;
	margin-top: 0;
	overflow-y: auto;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	top: 0;
	transform: translateX(100%);
}

.m_nav.open {
	transform: translateX(0);
}

.m_nav .top {
	height: 60px;
	padding: 20px;
	box-sizing: border-box;
}

.m_nav .top .closed {
	width: 30px;
	height: 30px;
	vertical-align: middle;
	float: right;
	cursor: pointer;
}

.m_nav .logo {
	width: 100%;
	margin: 0 auto;
}

.m_nav .logo img {
	height: 50px;
	display: block;
	margin: 30px auto;
}

.m_nav .ul {
	margin-top: 30px;
}

.m_nav .ul li {
	padding: 0 20px;
	border-bottom: 1px solid #f5f5f5;
	transform: translateY(0);
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	opacity: 0;
}

.m_nav.open .ul li {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.m_nav .ul li:nth-child(1) {
	-webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(2) {
	-webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(3) {
	-webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(4) {
	-webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(5) {
	-webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(6) {
	-webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li a {
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	width: 100%;
}

.m_nav .ul li .dropdown_menu {
	display: none;
}

.m_nav .ul li.dropdown.active .dropdown_menu {
	display: block;
}

.m_nav .ul li .dropdown_menu a {
	display: block;
	height: 50px;
	line-height: 50px;
	padding: 0 40px;
	box-sizing: border-box;
	border-bottom: 1px solid #f5f5f5;
}

.m_nav .ul li .dropdown_menu a:last-child {
	border: none;
}

@media screen and (max-width: 1330px) {
	.header {
		padding: 0 10px;
	}

	.header #navToggle {
		height: 100%;
		padding: 9px 15px;
		margin-right: -15px;
		display: inline-block;
		float: right;
	}

	.header .country-list {
		display: none;
	}

	.header #navToggle span {
		position: relative;
		width: 25px;
		height: 1px;
	}

	.header #navToggle span:before,
	.header #navToggle span:after {
		content: '';
		position: relative;
		width: 100%;
		height: 1px;
		left: 0;
	}

	.header #navToggle span,
	.header #navToggle span:before,
	.header #navToggle span:after {
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
		display: block;
		background: #fff;
	}

	.header #navToggle span:before {
		top: 8px;
	}

	.header #navToggle span:after {
		bottom: 10px;
	}

	.header #navToggle.open span:before {
		top: 10px;
		-webkit-transform: translateY(-11px) rotate(-45deg);
		-moz-transform: translateY(-11px) rotate(-45deg);
		-ms-transform: translateY(-11px) rotate(-45deg);
		-o-transform: translateY(-11px) rotate(-45deg);
		transform: translateY(-11px) rotate(-45deg);
	}

	.header #navToggle.open span:after {
		bottom: 12px;
		-webkit-transform: translateY(10px) rotate(45deg);
		-moz-transform: translateY(10px) rotate(45deg);
		-ms-transform: translateY(10px) rotate(45deg);
		-o-transform: translateY(10px) rotate(45deg);
		transform: translateY(10px) rotate(45deg);
	}

	.header #navToggle.open span {
		background: none;
	}

	.header #navToggle.open span:before,
	.header #navToggle.open span:after {
		background: #4f4f4f;
	}

	.header .nav {
		display: none;
	}
}


/*====================导航end*********/


/**====================页脚begin*/
footer {
	background-image:url('/static/images/footer-bg-01.jpg');
}

footer .foot {
	width: 100%;
	max-width: 1260px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0px auto;
	color: #182a4a;
	padding-top: 2vw;
	padding-bottom: 1.5vw;
}
footer .dlheight{
    margin-top:54px;
}
footer .foot dl dt{
    font-size: 30px;
    border-bottom: 2px solid #fff;
    width:33%;
    padding-bottom: 0.3em;
}
footer .foot dl dt, footer .foot dl dt a {
	/*font-size: 16px;*/
	font-weight: normal;
	color: #FFFFFF;
	margin-bottom: 10px;

}

footer .foot dl dd, footer .foot dl dd a {
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	line-height: 2.2;
	
}
footer .flexdd{
    display:flex;
	justify-content:center;
	align-items:center;
}
footer .telfont{
    font-size: 24px!important;
}
footer .iconmargin{
    margin-left: -15px;
    margin-right:5px;
}
footer .foot .mt {
	margin-top: 10%!important;
}

footer .foot .mtop {
	margin-top: 10px;
}
footer .foot .mb{
    	margin-bottom: 10%!important;
}
footer .foot ul li {
	margin-bottom: 35px;
}

footer .foot ul li h5 {
	font-size: 16px;
	font-weight: 400;
	color: #727883;
	margin-bottom: 10px;
	
}

footer .foot ul li:last-child h5 {
	margin-bottom: 30px;
}

footer .foot ul li .rexian {
	font-size: 30px;

	font-weight: 400;
	color: #FFFFFF;
	padding-left: 25px;
}

footer .foot ul li .fwjdtel,footer .foot ul li .fwjdemail {
	font-size: 14px;

	font-weight: normal;
	color: #727883;
	padding-left: 25px;
}

footer  .erweima {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	/*max-width: 480px;*/
	/*margin:3% auto 0;*/
	margin-top:54px;
}
footer .dlline{
    border:solid 1px #fff;
    height:150px;
    margin-top:60px;
}
footer  .erweima div {
	text-align: center;
}

footer .erweima div p {
	font-size: 12px;
	font-weight: 400;
	color: #fff;
    margin-bottom: 1em;
}

footer   .erweima div .erweima-img {
	width: 10em;
	transition-duration: 1s;
	margin: 0 auto 10px;
 /*过度的时间为0，5秒*/;
}

footer   .erweima div .erweima-img:hover {
	transform: scale(2);
}

footer   .erweima div:nth-child(2) {
	margin-left: 20px;
	margin-right: 20px;
}



footer .beian {
	font-size: 12px;
	color: #fff;
	text-align: center;
    background-image: url("/static/images/footer-bg-02.jpg");
	/*margin-top: 20px;*/
	padding:10px 0px;
}

footer .foot ul li h5 img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

footer .foot ul li h5 img.guanzhu {
	margin-bottom: 2px;
}
footer .b-hr img {
    width:100%;

}

@media (max-width: 768px){
    footer .foot dl dt{
        padding-bottom:1em!important;
    }
    footer .foot{
        padding-top:8vw!important;
    }
    .choicegwk{
        height: 900px!important;
    }
    footer .iconmargin{
        margin-right: 0px!important;
    }
    footer {
	background-image:url('/static/images/m-footer-bg-01.png');
}
footer .beian {
    background-image: url("/static/images/m-footer-bg-02.png");
	padding:10px 0px;
}
    footer .mb{
        margin-top: -20em;
    }
    footer .foot ul, footer .foot dl:nth-child(2), footer .foot dl:nth-child(3),footer .erweima {
        text-align: center;
    }
    footer .foot dt{
        text-align: center;
    }
    footer .foot dl dt, footer .foot dl dt a{
        font-size: 15px;
    }
    footer .foot dl dd, footer .foot dl dd a{
        font-size: 13px;
        text-align: center;
    }
    footer .beian{
        font-size: 12px;
    }
    footer .foot dl dt{
        width: 100%;
    }
    footer .dlline{
    border:solid 0px #fff;
    height:0px;
    margin-top:0px;}
    footer .erweima div .erweima-img{
        width:7em;
    }
}
@media (min-width:768px) and (max-width: 992px){
  footer   .erweima div .erweima-img {
	width: 5em;
}
    .floating_ck{
        display:none;
    }
    footer .foot dt,dd{
        text-align: center;
    }
    footer .foot dl dt{
        width:100%;
    }
    footer .mb{
        margin-top: -20em;
    }
    .liuyan{
        margin-top:30px;
        margin-bottom:30px;
    }
    .liuyan ul{
        flex-direction: column;
    }
    .liuyan ul li {
       width: 100%;
    }
    .liuyan .btn{
        font-size: 16px;
        margin-top:10px;
    }
     .ul-list{
        margin: 40px auto 0px!important;
    }
    .ul-list li p{
        font-size: 14px;
    }
    .ul-list img{
        width: 50%;
    }
    .ul-list li{
        margin-right: 10px;
    }
    .ul-list li:last-child{
        margin-right: 0;
    }
}
/**====================页脚end*/



/*====================留言begin*/
.liuyan{
    text-align: center;
      margin: 50px auto;
}
.liuyan ul{
    max-width:1180px;
    width: 100%;
    display: flex;
    justify-content: space-between;
        flex-wrap: wrap;
       margin: 0 auto;
}
.liuyan ul li{
    width: 49%;
    margin-bottom:20px;
}
.liuyan ul li .form-control {
    background: #EFEFEF;
    border-radius:30px;
    border-color:#EFEFEF;
    box-shadow:none;
    font-size: 14px;
    color: #646464;
    padding:25px 30px;
}
.liuyan .btn{
    background: #5580EE;
    font-size: 21px;
    color: #FFFFFF;
        padding: 8px 100px;
    border-radius: 30px;
    margin-top:30px;
    outline: none;
}
.liuyan .btn:focus{
    outline: none;
}

.ul-list {
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin:80px auto 0 !important;
}
.ul-list li{
    border: 2px solid #000;
    padding:3% 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ul-list li p{
    font-size: 20px;
    text-align: center;
    margin:10px auto 20px;
}
.ul-list img{
    display: block;
    margin: 0 auto;
}
.ul-list li .list-text2{
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    width:100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s;
    transform: translateY(100%);
}
.ul-list li:hover .list-text2{
    
    opacity: 1;
    cursor: pointer;
      transform:translateY(0)
   
}
.ul-list li .list-text2 p{
    color: #fff;
}

/*====================留言end*/


.floating_ck{position:fixed;right:0px;top:30%;border: 1px solid #ddd;border-radius: 10px;background: #fff;z-index:99999999999}
.floating_ck dl dd{position:relative;width:80px;height:80px;border-bottom:solid 0px #555666;text-align:center;background-repeat:no-repeat;background-position:center 20%;cursor:pointer;background-color: #fff;}
.floating_ck dl dd:hover .floating_left{display:block;}
.consult{background-image:url(../images/rightinfo/icon1.png);}
.consult:hover{background-image:url(../images/rightinfo/icon1H.webp);}
.quote{background-image:url(../images/rightinfo/icon3.png);}
.quote:hover{background-image:url(../images/rightinfo/icon3H.webp);}
.qrcord{background-image:url(../images/rightinfo/icon2.png);}
.qrcord:hover{background-image:url(../images/rightinfo/icon2H.webp);}
.return{background-image:url(../images/rightinfo/icon4.png);}
.return:hover{background-image:url(../images/rightinfo/icon4H.webp);}
.floating_ck dd span{color:#000;display:block;padding-top:54px;}
.floating_ck dd:hover span{color:#2a42cc;display:block;padding-top:54px;}
.floating_left{position:absolute;left:-250px;top:0px;width:250px;height:70px;background-color:#f0f0f0;border-bottom:solid 0px #a40324;display:none;border-radius: 10px;}
.floating_left a{color:#000;line-height:70px;font-size:28px;}
.floating_ewm{height: 100px;top: -25px;width: 100px;left: -130px;background: none;}
.floating_ewm i{background-image:url(../images/rightinfo/erweima.webp);display:block;width:100px;height:100px;margin:auto;margin-top:7px;}
.floating_ewm p{color:#fff;margin-top:5px;}
.floating_ewm .qrcord_p01{font-size:12px;line-height:20px;}
.floating_ewm .qrcord_p02{font-size:18px;}
