/***新版头尾20231018added by syh ***/
@font-face {
    font-family: 'MontserratHairline';
    src: url('/css/montserrat-font/Montserrat-Hairline.otf');
    font-display: swap;
}
@font-face {
    font-family: 'MontserratLight';
    src: url('/css/montserrat-font/Montserrat-Light.otf');
    font-display: swap;
}
@font-face {
    font-family: 'MontserratRegular';
    src: url('/css/montserrat-font/Montserrat-Regular.ttf');
    font-display: swap;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: 'MontserratLight', Arial, sans-serif;
    font-weight:normal;
    font-style:normal;
}



/*清除内外边距*/
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-size: 100%;
}

/*设置默认字体*/
:focus {
	outline: 0;
}

ul,
ol {
	list-style: none;
	margin-bottom: 0;
	margin-top: 0;
}

/*重置列表*/
fieldset, img {
	border: 0 none;
	vertical-align: top;
}
img{
 display: block;   
}
/*重置图片元素*/
address, caption, cite, code, dfn, em, i, th, var, optgroup {
	font-style: normal;
	font-weight: normal;
}

abbr, acronym {
	border: 0;
	font-variant: normal;
}

input, button, textarea, select, optgroup, option {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
}

code, kbd, samp, tt {
	font-size: 100%;
}

/*@purpose To enable resizing for IE */
/*@branch For IE6-Win, IE7-Win */
input, button, textarea, select {
	*font-size: 100%;
	outline: none;
}

/*
form label {
    cursor: pointer;
}
*/

textarea {
	resize: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*重置表格*/
blockquote, q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

a {
	color: #000;
	text-decoration: none;
	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
	-webkit-transition: background-color .2s ease-in-out;
	-moz-transition: background-color .2s ease-in-out;
	transition: background-color .2s ease-in-out;
}

a:hover {
	text-decoration: none;
}



/*--清除浮动
-------------------------------------------*/
.cf:before,
.cf:after,
.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.cf:after,
.clearfix:after {
	clear: both;
}

.cf,
.clearfix {
	clear: both;
	*zoom: 1;
}

/*-- 字号、颜色、外边距、内补丁、居中、行高、显示、隐藏
--------------------------------------------------------------------------*/


/* 隐藏 居中 */

.tc {
	text-align: center;
}

.tr {
	text-align: right;
}
.tl{
    text-align: left;
}
.show {
	display: block;
}

.hide {
	display: none !important;
}

.w100 {
    width: 100%;
}
.h100{
   height:100%; 
}




/*====================导航begin*********/
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	min-height: 50px;
	padding: 0 30px;
	background:#2b2b2b;

}
/*左侧logo*/

.header .h-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	min-height: 50px;
	max-width: 1400px;
}
/*右侧*/
.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: #005bac;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.5s ease 0s;
}

.header .navbar_nav li:hover:after {
	width: 40%;
	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: 16px;
}

.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: 130%;
	left: -15%;
	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 {
	background: #005bac;
	color: #fff;
	
}
/*.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: 3vw;
	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  .contact:after {
	content: "";
	width: 0;
	height: 2px;
	background: #005bac;
	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;
}

.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;
}
/*白色背景的头部*/


.toggle {
	display: none;
}

.m_nav {
	position: fixed;
	top: 42px;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 100%;
	height: 100%;
	background: #000;
	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;
	
	transform: translateX(100%);
}

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

.m_nav .top {
	height: 50px;
	border-bottom: 1px solid #fff;
	display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0 10px;
}

.m_nav .top .closed {
	width: 30px;
	height: 30px;

	cursor: pointer;
}

.m_nav .logo {
	width: 98px;

}

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

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

.m_nav .ul li {
	padding: 0 20px;
    text-align: center;
	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: #fff;
	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;
	}
     .toggle{
          border: 1px solid #fff;
          padding: 3px 0  0;
         text-align: center;
        border-radius: 4px;
        	display: inline-block;
      }
	.header #navToggle {
		height: 100%;
		padding: 9px ;
	
	
	
	}

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

	.header #navToggle span {
		position: relative;
		width: 20px;
		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: #888;
	}

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

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

	.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*/
@media screen and (min-width: 1920px) {
    .container {
        width: 1400px !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }
    .navbar-default .navbar-nav > li > a {
        font-size: 16px !important;
    }
}
@media screen and (min-width: 1421px) {
    .container {
        width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 !important
    }
}
@media (min-width: 1200px){
    .container {
        width: 970px;
    }
    .ab-flexnav{
        display:flex;
        justify-content:space-around;
    }
}
footer {
    /*margin-top: 80px;*/
    background-color: #000;
    font-size: 14px;
    line-height: 28px;
    padding-top: 96px;
    color: #C0C0C0 !important;
}
footer h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
}
footer  .col-md-4 {
    height: auto;
}
.footer-left ul li {
    position: relative;
    margin: 10px 0;
    /*float: left;*/
}
.footer-left ul li p {
    display: inline-block;
}
.footer-left ul li img {
    margin-left: 10px;
    margin-right: 18px;
}
.footer-centre li {
    line-height: 32px;
}
.footer-centre a {
    color: #C0C0C0;
}
.footer-right a {
    color: #C0C0C0;
}
.footer-centre a:hover,
.footer-right a:hover {
    color: #005bac;
}
.footer-bottom ul {
    position: relative;
    margin-top: 5%;
    padding-bottom:5%;
}
.footer-bottom ul li:nth-child(2) {
    width:100%;
    height: 44px;
    margin: 0 auto;
    background-color: #000;
}
.globala-myul1 div {
    width:46px;
    height: 46px;
    float: left;
    border: 1px solid rgba(211,216,226,0.4);
    border-radius: 2px;
    margin-right: 5px;
}

.footer-bottom ul li:nth-child(2) a {
    width: 100%;
    height: 100%;
}
.footer-bottom ul li:nth-child(2) img {
    margin-top: 12px;
}

.footer-left li {
    padding-left: 38px;
}
.footer-phone:before ,.footer-site:before ,
.footer-mail:before ,.footer-fax:before ,.footer-wechat:before {
    content: "";
    position: absolute;
    display: inline-block;
    top: 6px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url("/images/jl-img.png") -101px 1px no-repeat;
    background-origin: content-box;
}
.footer-site:before {
    background-position: -101px -42px;
}
.footer-mail:before {
    background-position: -101px -85px;
}
.footer-fax:before {
    background-position: -101px -122px;
}
.footer-wechat:before {
    background-position: -101px -207px;
}
.footer-bottom .f2 {
    display: block;
    background: url("/images/jl-img.png") no-repeat 20px 15px;
    width:47.5px!important;
    height: 42px!important;
}
.footer-bottom .tuite2 {
    display: block;
    background: url("/images/jl-img.png") no-repeat 16px -18px;
    width:47.5px!important;
    height: 42px!important;
}
.footer-bottom .youtube2 {
    display: block;
    background: url("/images/jl-img.png") no-repeat 16px -52px;
    width:47.5px!important;
    height: 42px!important;
}
.footer-bottom .google2 {
    display: block;
    background: url("/images/jl-img.png") no-repeat 16px -84px;
    width:47.5px!important;
    height: 42px!important;
}
.footer-bottom .in2 {
    display: block;
    background: url("/images/jl-img.png") no-repeat 16px -119px;
    width:47.5px!important;
    height: 42px!important;
}
.footer-bottom .gototop {
    display: block;
    width: 120px!important;
    height: 259px!important;
    background: url("/images/jl-img.png") no-repeat 18px -164px;
}
.footer-bottom .in2 {
    display: block;
    background: url("/images/jl-img.png") no-repeat 16px -119px;
    width:47.5px!important;
    height: 42px!important;
}
.footer-bottom .privacypolicy {
    display: block;
    background: url("/images/table-icon-power.png") no-repeat 0px 5px;
    padding-left:2em;
    color: #ccc;
    font-size: 13px;
    /*font-family: 'MontserratHairline';*/
}
.footer-bottom .returnpolicy {
    display: block;
    background: url("/images/table-icon-return.png") no-repeat 0px 5px;
    padding-left:2em;
    color:#ccc;
    font-size: 13px;
    /*font-family: 'MontserratHairline';*/
}
.footer-bottom .gototop {
    display: block;
    width: 120px!important;
    height: 259px!important;
    background: url("/images/jl-img.png") no-repeat 18px -164px;
}
.myul{
    display:flex;
    justify-content:space-around;
}
.globala-myul{
    display: flex;
    align-items: center;
}
.globala-myul1{
    display: flex;
    justify-content: center;
}
.myuldiv{
    display:flex;
    justify-content:center;    
}
.mymaps li{
    flex-wrap:wrap;
}
.mytopbutton{
    width:46px;
    height:46px ;
    overflow:hidden;
    border:solid 1px #fff;
    position: fixed;
    right:100px;
    bottom:98px;
    display: none;
    background-color: #000;
}

.beian{
    width:260px;border:none;
}
.beian a{
    font-size:14px;
    color:#ccc;
    /*font-family:'MontserratHairline', Arial, sans-serif;*/
}
.mypolicy{
    width:190px;
    border:none;
}
.mypolicy-right{
    margin-right:5em;
}
@media screen and (max-width: 992px) {
    footer  .col-md-4 {
        width: 50%;
        float: left;
        font-size: 12px;
    }
    footer  .col-md-4:nth-child(3) {
        width: 88%;
    }
    footer  .col-md-4:nth-child(3) ul li {
        float: left;
        margin: 10px;
    }
    .mympas li{
        float: left;
        margin:10px;
    }
    .mypolicy-right{
      margin-right: 0em!important;   
    }
    .mypolicy{
        width:41.666666%!important;
    }
    .footer-bottom ul{
        margin-top:15px;
        padding-bottom:32px;
    }
    .myul,.myuldiv,.globala-myul{
        display: block!important;
    }
    .beian{
        text-align: center;
        width:100%!important;
        margin:1em 0em 2em 0em;
    }
    .globala-myul1{
        margin:1em 0em;
    }
    .mytopbutton{
        right: 50px!important;
    }
    

}
@media (max-width: 767px) {
   
    footer {
        padding-top: 0px;
    }
    footer  .col-md-4 {
        width: 88%;
        height: auto;
        margin-top: 20px;
    }
    footer  .col-md-4 ul li {
        margin: 10px;
        float: left;
        font-size: 12px;
    }
    footer  .col-md-4:nth-child(3) {
        margin-top: 20px;
    }
    .footer-centre li {
        line-height: 5px;
    }
    .footer-left li {
        margin: 3px 10px !important;
    }
    .footer-right li {
        line-height: 5px;
    }
    

}
@media (max-width: 550px) {

    .footer-bottom ul li:nth-child(2) {
        margin-top: -45px;
    }
}
/**====================页脚end*/








/*页面顶端notice*/
.notice{width:100%;padding-top: 15px; text-align:center;padding-bottom: 15px; margin-bottom: -15px; z-index: 1;    position: relative;}
.notice a{color:#2299ff;font-size:14px;display: flex;  align-items: center; justify-content: center; }
.notice a span{display: block;    height: 13px;    overflow: hidden;}
.notice:hover{animation: shake 2s forwards}


@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-5px, 0);
  }
  50% {
    transform: translate(5px, 0);
  }
  75% {
    transform: translate(-5px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

/*左侧漂浮begin*/
#email {
    position: fixed;
    bottom: 25%;
    left: 20px;
    z-index: 1;
    overflow: visible;
}
#email li{
    background-color: #fff;
    margin:0 auto;
    padding:1em 0.5em;
    border-bottom:solid 1px #ddd;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    list-style: none;
}
.li-raduis-top{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.li-raduis-bottom{
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom:none!important;
}
#email li:hover{
    /*background-color: #345ac9;*/
    margin:0 auto;
    padding:1em 0.5em;
    
}
#email li:active{
    /*background-color: #345ac9;*/
    margin:0 auto;
    padding:1em;
    
}
/*#email li:hover .leftnav-words,#email li:active .leftnav-words{*/
/*       color:#fff;*/
/*}*/
.leftnav-div{
    display:flex;
    justify-content:center;
    margin-bottom:1em;
}
.leftnav-img{
    width:20px;
    height:20px;
    display:block;
}

.leftnav-words{
    font-size: 14px;
    text-align: center;
}
/*左侧漂浮end*/