@charset "utf-8";
/* CSS Document */
@font-face{
	src:url(../fonts/roboto-regular-14.ttf);
	font-family:"myfont";
	}
@font-face{
	src:url(../fonts/roboto-medium-12.ttf);
	font-family:"title";
	}
@font-face{
	src:url(../fonts/impact.ttf);
	font-family:"impact";
	}
*{
	padding:0;
	margin:0;
	list-style:none;
	font-family:"myfont",'Roboto','Arial','Helvetica','sans-serif';
	letter-spacing: 0.5px;
	}
@font-face {
  font-family: 'iconfont';
  src:url(../fonts/iconfont.eot);
  src: url(../fonts/iconfont.eot) format('embedded-opentype'),
  url(../fonts/iconfont.woff) format('woff'),
  url(../fonts/iconfont.ttf) format('truetype'),
  url(../fonts/iconfont.svg#iconfont) format('svg');
}
.iconfont{
  font-family:"iconfont" !important;
  font-size:16px;font-style:normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}


 :root {
    --main-color: #00b2e2;
	--main-color-1a1a1a: #1a1a1a;
	--main-color-4c4c4c: #4c4c4c;
	--main-color-white: #ffffff;
    --main-color-333: #333333;
    --main-color-555: #555555;
    --main-color-666: #666666;
    --main-color-999: #999999;
    --main-color-888: #888888;
    --main-transition: all ease 0.4s;
    --main-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    --main-linear: linear-gradient(45deg, #79bd28 0%, #00653b 100%);
}



input:focus,textarea:focus{
	outline:none;
	}
.clear{
	clear:both;
	}
a{
	text-decoration:none;
	color: var(--main-color-4c4c4c);
	}
p{
	margin: 1% 0;
	font-size: 1.8rem;
	line-height: 2;
	color: var(--main-color-1a1a1a);
}
img{
	display: block;
}
.w_all{
	width:90%;
	margin:auto;
	}
.w_all2{
	width:72.5%;
	margin:auto;
	}
html, body{
	width:100%;
	position:relative;
	font-size: 62.5%;
	}
header{
	width:100%;
	position:fixed;
	left:0;
	top:0;
	z-index:999;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	background: var(--main-color-white);;
	border-top: 10px solid var(--main-color);;
	}
header.active{
	box-shadow: 0 0px 5px rgba(0, 0, 0, 0.05);
	border: none;
}
header.header2{
	box-shadow: 0 0px 5px rgba(0, 0, 0, 0.05);
}
header .nav_box{
	width: 95%;
	float: right;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position:relative;
}
header .logo{
	height: 90px;
	position:relative;
	z-index: 9;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
header.active .logo{
	height: 60px;
}
header .logo img{
	display:block;
	height:100%;
	}
header .nav ul{
	display: flex;
	justify-content: space-between;
	width: 100%;
}
header .nav li{
	position: relative;
	margin-left: 90px;
	line-height: 100px;
	}
header .nav li.on:before {
      opacity: 1;}
	  
header .nav li.on span {
     color: var(--main-color);;
	 }
	 
header.active .nav li{
	line-height: 70px;
}
header .nav li span{
	color:#1b5a7d;
	font-size:1.6rem;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	}
header .nav li:hover span{
	color: var(--main-color);;
}
header .nav li::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 20%;
	width: 100%;
	height: 2px;
	background: var(--main-color);;
	opacity: 0;
}
header .others{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .others .ll{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	border-right: 1px solid #ebecf0;
	width: 100px;
	font-size: 1.4rem;
	letter-spacing: 0px;
	color: var(--main-color-1a1a1a);
	position: relative;
	cursor: pointer;
}
header.active .others .ll{
	height: 80px;
}
header .others a:last-of-type .ll{
	border: none;
}
header .others img{
	width: 26px;
}
header .others img:nth-of-type(2){
	display: none;
}
header .others .ll:hover img:nth-of-type(1){
	display: none;
}
header .others .ll:hover img:nth-of-type(2){
	display: block;
}
header .others .ll span{
	letter-spacing: 0;
}
header .others .ll.llogin{
	padding: 0 10px;
}
header .others .llogin img{
	margin-right: 5px;
}
header .others .ll.llogin a{
    display: flex;
    align-items: center;
}
header .others .ll.llogin span{
    width: 50px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
header .others .llshop strong{
	background: var(--main-color-1a1a1a);
	color: var(--main-color-white);;
	border-radius: 50%;
	position: absolute;
	left: 58%;
	top: 30%;
	width: 22px;
	line-height: 22px;
	font-size: 1rem;
	text-align: center;
	-webkit-transform: scale(0.6);
	transform: scale(0.6);
}
header .others .ll.menus{
    border-left: 1px solid #ebecf0;
    display: none;
}
.navBtn {
    position: relative;
    z-index: 99999;
    cursor: pointer;
    margin-top: 17px;
}
.navBtn span{
	display: block;
	width: 24px;
	height: 2px;
	background:var(--main-color-333);;
	margin:5px auto;
}
.nav_btn_active{
	-webkit-transition:all 0.4s;
	transition:all 0.4s;
	margin-top: 24px;
}
.nav_btn_active span:nth-of-type(1){
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg);
	}
.nav_btn_active span:nth-of-type(2){
	opacity:0;
	}
.nav_btn_active span:nth-of-type(3){
    margin-top: -14px;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	}
/*banner*/
.banner{
	position:relative;
	width:100%;
	height: auto !important;
	padding-right: 100px;
	margin: 110px 0 5rem;
	box-sizing: border-box;
}
.banner .swiper-container,.banner .swiper-slide{
	width: 100%;
	height: 100%;
	border-bottom-right-radius: 80px;
	overflow: hidden;
}
.banner .swiper-slide img{
    width: 100%;
}
.banner .swiper-pagination{
	display: none;
	bottom: 3% !important;
	display: flex;
	justify-content: center;
}
.banner .swiper-pagination span{
	width:200px !important;
	height: 2px !important;
	border-radius: 0 !important;
	background: none !important;
	opacity: 1;
	margin: 0 20px !important;
	position: relative;
	display: block;
}
.banner .swiper-pagination span::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--main-color-white);;
	opacity: 0.3;
	z-index: 3;
}
.banner .swiper-pagination span:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0%;
	height: 100%;
	background: var(--main-color-white);;
	z-index: 3;
}
.banner span.swiper-pagination-bullet-active:before{
	width: 100%;
	-webkit-transition: all 4.5s linear;
	transition: all 4.5s linear;
}
.banner ul{
	width: 95%;
	background: var(--main-color-white);;
	display: flex;
	justify-content: space-between;
	z-index: 99;
}
.banner ul a{
	font-size: 1.6rem;
	color: var(--main-color-666);;
	line-height: 80px;
	width: 33.3%;
	display: block;
}
.banner ul li{
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0px;
	-webkit-transition:all 0.3s linear;
	transition:all 0.3s linear;
}
.banner ul li span{
	margin-right: 20px;
	color: var(--main-color);;
	font-family: "title";
	-webkit-transition:all 0.3s linear;
	transition:all 0.3s linear;
}
.banner ul li:hover{
    color: #1b5a7d;
    font-weight: bold;
}
.banner ul li:hover span{
    color: #1b5a7d;
    font-weight: normal;
}
.banner ul a:first-of-type li:hover{
	background: #1b5a7d !important;
	color: var(--main-color-white); !important;
	font-weight: normal !important;
}
.banner ul a:first-of-type li:hover span{
	color:var(--main-color); !important;
}
.index_bars{
	padding: 6% 0;
	position: relative;
}
.title h3{
	color: var(--main-color-1a1a1a);
	font-size: 4rem;
	line-height: 2;
	font-weight: normal;
	font-family: "title";
	letter-spacing: 0;
}
.more{
	display: flex;
	align-items: center;
	font-size: 1.4rem;
	color: var(--main-color-666);;
	letter-spacing: 0;
}
.more span{
    display: block;
    width: 40px;
    height: 1px;
    background: var(--main-color-333);;
    margin-left: 12px;
    position: relative;
    margin-top: 1px;
    -webkit-transition:all 0.3s linear;
	transition:all 0.3s linear;
}
.more span:before{
    content:"";
    position: absolute;
    left: 100%;
    top: -4px;
    width: 0;
    height: 0;
    border-left:6px solid var(--main-color-333); ;
    border-top:4px solid transparent ;
    border-bottom:4px solid transparent ;
}
.more span:after{
    content:"";
    position: absolute;
    left: 0;
    top: -4px;
    width: 0;
    height: 0;
    border-left:6px solid var(--main-color); ;
    border-top:4px solid transparent ;
    border-bottom:4px solid transparent ;
	opacity: 0;
	transition-delay: 0.3s;
}
.more:hover span:before{
    left: 110%;
    opacity: 0;
    -webkit-transition:all 0.3s linear;
	transition:all 0.3s linear;
}
.more:hover span:after{
    left: 100%;
    opacity: 1;
     -webkit-transition:all 0.8s linear;
	transition:all 0.8s linear;
}
.index_bar1 ul{
	margin-top: 2%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-left: 1px solid #e5e5e5;
	border-top: 1px solid #e5e5e5;
}
.index_bar1 ul li{
	width: 33.3%;
	border-right: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	box-sizing: border-box;
	padding: 1% 3%;
	position: relative;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	cursor: pointer;
}
.index_bar1 ul li:nth-child(-n+2){
	width: 50%;
	padding: 0 3%;
}
.index_bar1 ul li:hover{
	background: #f5f5f5;
}
.index_bar1 ul li:hover h6{
	color: var(--main-color-white);;
}
.index_bar1 h6{
	color: var(--main-color-666);;
	position: absolute;
	left: 25%;
	top: 50%;
	color: #f5f5f5;
	font-size: 22rem;
	font-family: "impact";
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.index_bar1 ul li:nth-child(-n+2) h6{
	left: 38%;
}
.index_bar1 b{
	display: block;
	float: right;
	position: relative;
	z-index: 2;
	width: 78%;
	max-width: 100%;
}
.index_bar1 ul li:nth-child(-n+2) b{
	width: auto;
}
.index_bar1 b img{
	display: block;
	max-width: 100%;
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
.index_bar1 ul li:hover b img{
    -webkit-transform:scale(1.04);
    transform:scale(1.04);
}
.index_bar1 .txt{
	color: var(--main-color-666);;
	position: absolute;
	left: 6%;
	top: 8%;
}
.index_bar1 .txt h4{
	font-size: 1.4rem;
	color: var(--main-color);;
	margin-bottom: 10px;
	font-weight: normal;
	letter-spacing: 0;
}
.index_bar1 .txt h5{
	font-size: 2rem;
	color: #111;
}
.index_bar1 .more{
	position: absolute;
	left: 6%;
	bottom: 10%;
}
.index_bar1 ul li:hover .more{
    color: var(--main-color);;
}
.index_bar1 ul li:hover .more span{
    background: var(--main-color);;
}
.index_bar1 ul li:hover .more span:before{
    border-left-color: var(--main-color);;
}
.index_bar2 {
	position: relative;
	padding: 0;
	overflow: hidden;
}
.index_bar2 ul{
	margin-top: 2%;
	display: flex;
	justify-content: space-between;
}
.index_bar2 ul li{
	width: 21.5%;
	cursor: pointer;
}
.index_bar2 b {
	padding: 2%;
	box-sizing: border-box;
	display: block;
	max-width: 100%;
	overflow:hidden;
	background: #fff;
	position: relative;
}
.index_bar2 b span{
	background: var(--main-color);;
	font-size: 1.4rem;
	color: var(--main-color-white);;
	padding: 4px 10px;
	position: absolute;
	left: 6%;
	top: 6%;
	letter-spacing: 0;
	font-weight: normal;
}
.index_bar2 b span.hot{
	background: #1b5a7d;
}
.index_bar2 b img{
	display: block;
	max-width: 100%;
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
	object-fit: contain;
	height:200px;
}
.index_bar2 ul li:hover b img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.index_bar2 .txt{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0;
}
.index_bar2 .txt h4{
	font-size: 15px;
	color: #1b5a7d;
	letter-spacing: 0;
	text-align:center
}
.index_bar2 .txt h4:first-of-type{
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.more2{
	border: 1px solid #1b5a7d;
	border-radius: 5px;
	color: #1b5a7d;
	font-size: 1.6rem;
	line-height: 60px;
	text-align: center;
	letter-spacing: 0;
	margin-top: 15%;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.index_bar2 ul li:hover .more2{
	background: #1b5a7d;
	color: var(--main-color-white);;
}
.index_bar3 .top{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.index_bar3 .top .title{
	margin-left: 3%;
}
.index_bar3 .top .title h3{
	font-size: 8rem;
	color: #1b5a7d;
}
.index_bar3 .top .rr{
	width: 46%;
	font-size: 2rem;
	color: var(--main-color-1a1a1a);
	letter-spacing: 0;
	line-height: 2;
}
.index_bar3 dl{
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
}
.index_bar3 dl dd{
	font-size: 2rem;
	position: relative;
	width: 50%;
	height: 360px;
}
.index_bar3 dl dd .txt{
	position:absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	width: 70%;
}
.index_bar3 dl dd h3{
	font-size: 6rem;
	color: #1b5a7d;
}
.index_bar3 dl dd p{
	letter-spacing: 0;
	margin-top: 10px;
}
.index_bar3 dl dd.dls h3,.index_bar3 dl dd.dls p{
	color: var(--main-color-white);;
}
.index_bar3 dl dd:last-of-type{
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	box-sizing: border-box;
}
.index_bar3 dl dd .more3 img{
	position:absolute;
	right: 0;
	bottom: 0;
	height: 70px;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	transform-origin: 0 70px;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.index_bar3 dl dd:hover .more3 img{
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}
.index_bar4{
	overflow: hidden;
	padding-top: 3%;
	padding-bottom: 0;
}
.index_bar4 .swiper-slide img{
	width: 100%;
	opacity: 0.5;
}
.index_bar4 .swiper-slide-active img{
	opacity: 1;
}
.index_bar4 .swiper-pagination{
	position: static;
}
.index_bar4 .swiper-pagination span{
	margin: 30px 5px 0;
}
.index_bar4 .swiper-pagination span.swiper-pagination-bullet-active{
	background: var(--main-color);;
}
.index_bar5 .title{
	text-align: center;
	margin-bottom: 3%;
}
.index_bar5 img{
	width: 100%;
	display: block;
}
.index_bar5 .swiper-container-horizontal>.swiper-wrapper {
	transition-timing-function: linear !important;
	-o-transition-timing-function: linear !important;
	-webkit-transition-timing-function: linear !important;
	align-items: center;
}
.footer {
	position:relative;
	background: #f5f5f5;
	z-index: 9;
	padding: 5% 0 3%;
}
.footer .fbox{
    display: flex;
	justify-content: space-between;
}
.footer .logo2{
    margin-top: 2%;
}
.footer .ttbox{
    width: 75%;
}
.footer .box{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer .box .left{
    width: 88%;
}
.footer .box .left ul{
	display: flex;
	justify-content: space-between;
	margin: 15px 0;
}
.footer .left a{
	color:var(--main-color-1a1a1a);
	font-size:1.6rem;
	font-weight: bold;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.footer .left a:hover{
	color:var(--main-color);;
}
.footer .left h6{
	margin-top: 30px;
	font-weight: normal;
	color:var(--main-color-1a1a1a);
	font-size:1.6rem;
}
.footer .left h6 span:last-of-type{
	margin-left: 8%;
}
.footer .left h6 a{
	letter-spacing: 0;
	font-weight: normal;
}
.footer .totop img{
	height: 26px;
	cursor: pointer;
	margin-top: 12px;
}
.footer .copy{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 3%;
	position: relative;
}
.footer .copy p{
	font-size: 1.2rem;
	color: var(--main-color-666);;
	letter-spacing: 0;
	}
.footer .copy p span{
	color: var(--main-color-666);;
	}
.footer .copy p a{
	font-size: 1.2rem;
	color: var(--main-color-666);;
	letter-spacing: 0;
	display: inline-block;
	margin: 0 20px;
	}
.footer .copy p a:hover{
	color: var(--main-color-333);;
	}
.footer .copy .right{
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	display: flex;
	justify-content: flex-end;
}
.footer .copy .right img{
	width: 32px;
	margin-left: 20px;
}
.footer .copy .right img:last-of-type{
	display: none;
}
.footer .copy .right .ll:hover img:first-of-type{
	display: none;
}
.footer .copy .right .ll:hover img:last-of-type{
	display: block;
}
.allRight ul{
	position: fixed;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	box-shadow: -1.294px 4.83px 20px 0px rgba(10, 40, 66, 0.1);
	background: var(--main-color-white);;
}
.allRight ul li{
	padding: 18px;
	border-bottom: 1px solid #f2f2f2;
	box-sizing: border-box;
}
.allRight ul li.totop{
	border: none;
}
.allRight ul li img{
	height: 24px;
}
.allRight ul li.totop img{
	height: 24px;
	margin: 0;
}
.allRight ul li img:last-of-type{
	display: none;
}
.allRight ul li:hover img:first-of-type{
	display: none;
}
.allRight ul li:hover img:last-of-type{
	display: block;
}
.allRight .messages{
	position: fixed;
	right: 1%;
	bottom: 5%;
}
.allbox{
	padding: 5% 0;
	position: relative;
	z-index: 9;
}
.ban{
	position: relative;
	z-index: 9;
	margin-top: 110px;
}
.ban img{
	width: 100%;
	display: block;
}
.ban h1{
	position: absolute;
	left: 20%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 4.6rem;
	color: rgb(27, 90, 125);
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.522;
	text-shadow: 3.536px 3.536px 10px rgba(2, 20, 30, 0.1);
	  
}
.title2 h3{
	font-size: 3.2rem;
	color: var(--main-color-1a1a1a);
	margin-bottom: 3%;
}
.about{
	overflow: hidden;
}
.about .title2{
	width: 80%;
}
.about .bar1{
	display: flex;
	justify-content: flex-end;
	margin-top: 5%;
}
.about .bar1 .left{
	width: 34%;
	margin-top: 8%;
}
.about .bar1 img{
	width: 100%;
	display: block;
}
.about .bar1 .right{
	width: 56%;
	margin-left: 5%;
}
.about .bar1 .right img{
	margin-bottom: 8%;
}
.about p,.about2 p,.about3 p{
    letter-spacing: 0;
}
.about2{
	background: url(../images/a2_1.jpg) no-repeat center/cover;
	padding: 10% 0;
	text-align: center;
	background-attachment: fixed;
}
.about2 .title2 h3{
	color: var(--main-color-white);;
}
.about2 p{
	color: var(--main-color-white);;
	padding: 0 5%;
}
.about3{
	padding: 8% 0;
}
.about3 ul li{
	margin-top: 6% ;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.about3 ul li:first-of-type{
	margin-top: 0;
}
.about3 ul li .txt{
	width: 52%;
}
.about3 ul li .img{
	width: 40%;
}
.about3 ul li .img img{
	width: 100%;
	display: block;
}
.about3 ul li .more2{
	width: 240px;
	margin-top: 10%;
	line-height: 52px;
}
.about3 ul li .more2:hover{
	background: var(--main-color);;
	color: var(--main-color-white);;
	border-color: var(--main-color);;
}
.honor .title2 h3{
	text-transform: uppercase;
	text-align: center;
}
.honor .bbox{
	padding: 0 8%;
	position: relative;
}
.honor .swiper-slide{
	-webkit-transform: scale(0.7);
	transform: scale(0.7);
	text-align: center;
}
.honor .swiper-slide img{
	box-shadow: 4.95px 4.95px 9.5px 0.5px rgba(61, 63, 85, 0.08);
	width: 100%;
	margin: 0 auto 30px;
	display: block;
}
.honor .swiper-slide-active{
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.honor .swiper-slide p{
	line-height: 1.6;
}
.btn .ll{
	cursor: pointer;
	width: 60px;
	text-align: center;
	background: #f2f2f2;
	border-radius: 50%;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 9;
	color: var(--main-color);;
}
.btn .llr{
	left: inherit;
	right: 0;
	top: 45%;
}
.btn .ll i{
	font-size: 2rem;
	line-height: 60px;
}
.btn .llr{
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg) ;
}
.btn .ll:hover{
	color: var(--main-color-white);;
	background: var(--main-color);;
}
.title3 h3{
	font-size: 2rem;
	color: var(--main-color-1a1a1a);
	text-transform: uppercase;
	font-family: "title";
	font-weight: normal;
}
.download ul{
	display: flex;
	flex-wrap: wrap;
	margin-top: 2%;
}
.download ul li{
	margin-right: 9%;
	width: 45.5%;
	border-bottom: 1px solid #e5e5e5;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2% 1%;
	cursor: pointer;
}
.download ul li:nth-of-type(2n){
	margin-right: 0;
}
.download ul li .ll{
	width: 60px;
	box-shadow: 1.22px 2.741px 5px 0px rgba(0, 0, 0, 0.1);
}
.download ul li img{
	width: 100%;
}
.download ul li .rr{
	width: 28px;
}
.download ul li h3{
	width: 70%;
	font-size: 1.6rem;
	color: var(--main-color-1a1a1a);
	font-weight: normal;
	margin: 0 5%;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.download ul li:hover h3{
	color: var(--main-color);;
}
.news{
    background: #f5f5f5;
}
.news ul{
	display: flex;
	flex-wrap: wrap;
	background: var(--main-color-white);;
	padding: 3% 5%;
	box-sizing: border-box;
}
.news ul a{
	display: block;
	width: 31.3%;
	margin-top: 3%;
	margin-right: 3%;
}
.news ul a:nth-of-type(3n){
	margin-right: 0;
}
.news ul li .left{
	width: 100%;
	overflow: hidden;
	box-shadow: 0px 7px 9.5px 0.5px rgba(61, 63, 85, 0.08);
}
.news ul li .left img{
	-webkit-transition: all 0.8s linear;
	transition: all 0.8s linear;
	width: 100%;
	display: block;
}
.news ul li:hover .left img{
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}
.news ul li span{
	color: var(--main-color);;
	font-size: 1.4rem;
	display: block;
	margin: 20px 0 10px;
}
.news ul li:hover h3{
	color: var(--main-color);;
}
.news ul li h3{
	font-size: 1.6rem;
	margin-bottom: 2%;
	color: var(--main-color-1a1a1a);
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.page ul{
	display: flex;
	justify-content: center;
	margin: -3% auto 8%;
}
.page ul li{
	width: 34px;
	height: 34px;
	background: #f5f5f5;
	color: var(--main-color-999);;
	font-size: 1.4rem;
	text-align: center;
	line-height: 34px;
	margin: 6px;
	border-radius: 50%;
}
.page ul li.active{
	background: var(--main-color);;
	color: var(--main-color-white);;
}
.news_d .top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom:1px solid #e5e5e5;
	padding-bottom: 3%;
}
.news_d .top .ll{
	width: 80%;
}
.news_d .top .title2 h3{
	margin-bottom: 2%;
	color: var(--main-color);;
}
.news_d .top .ll span{
	display: block;
	color: var(--main-color-666);;
	font-size: 1.6rem;
}
.news_d .contain{
	margin: 3% auto;
}
.news_d .contain .left p{
	margin: 3% 0;
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0;
}
.news_d .contain .left p img{
	max-width: 100%;
}
.news_d .contain .right{
	width: 32%;
}
.news_d .contain .right dd{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 8% 0;
}
.news_d .contain .right dd b{
	display: block;
	width: 32%;
}
.news_d .contain .right dd b img{
	display: block;
	width: 100%;
}
.news_d .contain .right dd h4{
	width: 60%;
	color: var(--main-color-1a1a1a);
	font-size: 1.8rem;
	line-height: 1.8;
	font-weight: normal;
}
.news_d .bottom p{
	margin: 10px 0;
	font-size: 1.6rem;
}
.news_d .bottom p a{
	color: var(--main-color-4c4c4c);
}
.news_d .bottom p:hover a{
	color: #cc0000;
	text-decoration: underline;
}
.contact{
    background: #f5f5f5;
}
.contact .contain{
	background: var(--main-color-white);;
	padding: 5%;
	box-sizing: border-box;
	margin-top: 2%;
}
.contact .bar1{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.contact .bar1 .left{
	width: 40%;
}
.contact .bar1 .right{
	width: 50%;
}
.contact .bar1 p{
	font-size: 1.6rem;
	color: var(--main-color-1a1a1a);
	display: flex;
	letter-spacing: 0;
	border-bottom: 1px solid #e5e5e5;
	padding: 20px 0;
}
.contact .bar1 p a{
	color: var(--main-color-1a1a1a);
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	letter-spacing: 0;
}
.contact .bar1 p a:hover{
	color: var(--main-color);;
}
.contact .bar1 img{
	width: 22px;
	height: 22px;
	margin-top: 4px;
	margin-right: 10px;
}
#dituContent{
	height: 440px;
}
.contact .bar2{
	margin-top: 5%;
}
.contact .bar2 ul{
	margin-top: 3%;
}
.contact .bar2 ul li{
	margin: 30px 0;
	font-size: 1.4rem;
	color: var(--main-color-4c4c4c);
}
.contact .bar2 ul span{
	display: block;
	margin-bottom: 10px;
	letter-spacing: 0;
}
.contact .bar2 ul input{
	background: none;
	border: none;
	box-shadow: none;
	width: 100%;
	font-size: 1.6rem;
	padding: 10px;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
}
.contact .bar2 ul textarea{
	background: none;
	border: none;
	box-shadow: none;
	font-size: 1.6rem;
	width: 100%;
	padding: 10px;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	min-height: 100px;
}
.contact .bar2 .submit{
	width: 240px;
	border: none;
	display: block;
	text-align: center;
	margin: 3% auto 0;
	background: var(--main-color);;
	color: var(--main-color-white);;
	font-size: 1.4rem;
	border-radius: 4px;
	line-height: 46px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	position: relative;
}
.contact .bar2 .submit:hover{
	background: #1b5a7d;
}
.contact .bar2 .submit input{
	position: absolute;
	right: 0;
	top: 0;
	border: none;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
/* 产品部分 */
.p_ban{
	background: #f8f8f9;
}
.p_ban.active{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	margin-top: 70px;
}
.p_ban ul{
	display: flex;
	justify-content: space-between;
	padding: 15px 0;
}
.p_ban ul li{
	position: relative;
}
.p_ban ul li img{
	width: 50px;
	display: block;
	margin: auto;
}
.p_ban ul li img:last-of-type{
	display: none;
}
.p_ban ul li:hover img:first-of-type,.p_ban ul li.active img:first-of-type{
	display: none;
}
.p_ban ul li:hover img:last-of-type,.p_ban ul li.active img:last-of-type{
	display: block;
}
.p_ban ul p{
	text-align: center;
	font-size: 1.2rem;
	color: var(--main-color-333);;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	letter-spacing: 0.5px;
}
.p_ban ul li:hover p,.p_ban ul li.active p{
	color: #1b5a7d;
}
.p_menu{
	position: absolute;
	left: -20px;
	top: 90px;
	background: var(--main-color-white);;
	display: none;
	min-width: 120%;
	width: max-content;
	box-shadow: 7.071px 7.071px 30px 0px rgba(0, 0, 0, 0.08);
}
.p_menu dl{
	padding: 12px 20px;
	box-sizing: border-box;
}
.p_menu dd{
	font-size: 1.3rem;
	color: #1b5a7d;
	cursor: pointer;
	position: relative;
	padding: 6px 0;
	letter-spacing: 0;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.p_menu dd:hover{
	text-decoration: underline;
	color: var(--main-color);;
}
.pro{
    min-height: 100vh;
}
.pro ul{
	display: flex;
	flex-wrap: wrap;
}
.pro ul li{
	position: relative;
	width: 50%;
	border-top: 10px solid #f7f7fa;
	border-right: 10px solid #f7f7fa;
	box-sizing: border-box;
	min-height: 30vh;
}
.pro ul li:first-of-type{
	border: none;
}
.pro ul li:nth-child(-n+3){
	width: 100%;
	border-right: none;
}
.pro ul li .txt{
	position: absolute;
	left: 50%;
	top: 10%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	text-align: center;
}
.pro ul li h3{
	color: var(--main-color-1a1a1a);
	font-size: 4.6rem;
	font-weight: normal;
	line-height: 1.4;
}
.pro ul li p{
	color: var(--main-color-1a1a1a);
	font-size: 2.2rem;
	letter-spacing: 0;
	line-height: 1.4;
}
.pro ul li .imgs img{
	width: 100%;
	display: block;
}
.pro ul li .more{
	display: flex;
	justify-content: center;
	color: var(--main-color);;
	margin-top: 1.5%;
}
.pro ul li .more span{
    background:var(--main-color);;
}
.pro ul li .more span:before{
    border-left-color:var(--main-color);;
}
.pro ul li:hover .more span:before{
    left: 110%;
    opacity: 0;
    -webkit-transition:all 0.3s linear;
	transition:all 0.3s linear;
}
.pro ul li:hover .more span:after{
    left: 100%;
    opacity: 1;
     -webkit-transition:all 0.8s linear;
	transition:all 0.8s linear;
}
.plist_ban{
	position: relative;
	overflow: hidden;
}
.plist_ban:before{
    content: "";
    position:absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.1;
}
.plist_ban img{
	width: 100%;
	display: block;
	margin-top: -8%;
}
.plist_ban h2{
	position: absolute;
	left: 50%;
	top: 12%;
	-webkit-transform: translate(-50%,-0%);
	transform: translate(-50%,-0%);
	font-weight: normal;
	color: var(--main-color-333);;
	font-size: 4rem;
	text-align: center;
	z-index: 6;
}
.pro_list1s{
	background: #f7f7fa;
}
.pro_list1s .title2 h3{
	margin-bottom: 0;
}
.pro_list1s ul{
	display: flex;
	flex-wrap: wrap;
}
.pro_list1s ul li{
	width: 31.3%;
	margin-right: 3%;
	margin-top: 3%;
	background: var(--main-color-white);;
	box-shadow: 0px 7px 9.5px 0.5px rgba(61, 63, 85, 0.08);
	border-radius: 20px;
	padding: 2%;
	box-sizing: border-box;
}
.pro_list1s ul li:nth-of-type(3n){
	margin-right: 0;
}
.pro_list1s ul li .txt{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pro_list1s ul li .ll{
    width: 70%;
}
.pro_list1s ul li h4{
	color: var(--main-color-666);;
	font-size: 1.2rem;
	font-weight: normal;
	letter-spacing: 0;
	margin-bottom: 10px;
}
.pro_list1s ul li h3{
	color: var(--main-color-1a1a1a);
	font-size: 2.4rem;
}
.pro_list1s ul li h6{
	background: var(--main-color);;
	font-size: 1.4rem;
	color: var(--main-color-white);;
	border-radius: 16px;
	padding: 6px 15px;
	font-weight: normal;
	letter-spacing: 0;
}
.pro_list1s ul li img{
	margin: 10% auto;
	display: block;
	max-width: 80%;
}
.pro_list1s ul li p{
	color: var(--main-color-1a1a1a);
	font-size: 1.4rem;
	letter-spacing: 0;
	line-height: 1.6;
	max-height: 6rem;
    overflow: hidden;
    word-break: break-all;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.pro_list2s{
	background: #f7f7fa;
	padding-bottom: 6%;
}
.pro_list2s table{
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}
.pro_list2s table tr{
	border-left: 100px solid #f7f7fa;
	border-right: 100px solid #f7f7fa;
}
.pro_list2s table tr.otherls{
    position: fixed;
    top: 200px;
    left: 0;
    width: 100%;
}
.pro_list2s table tr td{
	text-align: center;
	letter-spacing: 0;
	padding: 35px 10px;
	box-sizing: border-box;
}
.pro_list2s table tr td p{
	letter-spacing: 0;
	line-height: 1.6;
	margin: 10px 0 0;
	font-size: 1.6rem;
	font-family: "myfont" !important;
}
.pro_list2s table tr td p span{
    font-family: "myfont" !important;
}
.pro_list2s table tr td p:nth-of-type(1){
	font-size: 1.8rem;
	line-height: 1.4;
}
.pro_list2s table tr:nth-of-type(2n){
	background: var(--main-color-white);;
	border-color: var(--main-color-white);;
}
.pro_list2s table tr:nth-of-type(2n+1) td{
	padding: 3% 0;
}
.pro_list2s table tr:nth-of-type(1) td p{
	font-size: 2.4rem;
	font-weight: bold;
	margin: 20px 0;
}
.pro_list2s table img{
	max-width: 100%;
	margin: auto;
	display: block;
}
.pro_list2s table tr td a{
	display: block;
	background: var(--main-color);;
	font-size: 1.4rem;
	color: var(--main-color-white);;
	border-radius: 16px;
	width: 100px;
	line-height: 32px;
	font-weight: normal;
	letter-spacing: 0;
	margin: auto;
	-webkit-transition:all 0.3s linear;
	transition:all 0.3s linear;
}
.pro_list2s table tr td a:hover{
    background: #1b5a7d;
}
.pd_nav ul{
	display: flex;
	align-items: center;
	color: var(--main-color-999);;
	font-size: 1.4rem;
	padding: 24px 0;
}
.pd_nav ul li{
	color: var(--main-color-999);;
	font-size: 1.4rem;
	margin:0 20px;
	letter-spacing: 0;
}
.pd_nav ul a:first-of-type li{
	margin-left: 0;
}
.pd_nav ul > li{
	color: var(--main-color-1a1a1a);
}
.pro_d .bar1{
	background: #f8f8f9;
	position: relative;
	z-index: 3;
}
.pro_d .bar1 .box{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pro_d .bar1 .ll{
	width: 50%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pro_d .bar1 .ll .imgs{
	width: 100px;
}
.pro_d .bar1 .ll .imgs img{
	width: 100%;
	display: block;
	margin: 15px 0;
	background: var(--main-color-white);;
	padding: 10%;
	box-sizing: border-box;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.pro_d .bar1 .ll .imgs img.active{
	box-shadow: 0px 7px 9.5px 0.5px rgba(61, 63, 85, 0.08);
}
.pro_d .bar1 .ll .imgbox{
	width: calc(86% - 100px);
}
.pro_d .bar1 .ll .imgbox img{
	max-width: 100%;
	margin: auto;
}
.pro_d .bar1 .rr{
	width: 30%;
	margin-right: 10%;
}
.pro_d .bar1 .rr h2{
	color: var(--main-color-1a1a1a);
	font-size: 2.8rem;
}
.pro_d .bar1 .rr h3{
	color: #12b255;
	font-size: 1.4rem;
	font-weight: normal;
	letter-spacing: 0;
	margin: 5% 0;
}
.pro_d .bar1 .rr h3:first-of-type{
	color: var(--main-color-1a1a1a);
	margin-bottom: -2%;
}
.pro_d .bar1 .rr h4{
	color: var(--main-color-1a1a1a);
	font-size: 1.6rem;
	font-weight: normal;
	font-family: "title";
	letter-spacing: 0;
	margin: 5% 0 4%;
}
.selects_lls{
	position: relative;
	cursor: pointer;
}
.selects_lls .tt{
	border: 1px solid #e5e5e5;
	color: var(--main-color-1a1a1a);
	font-size: 1.6rem;
	border-radius: 4px;
	padding: 0 10px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	line-height: 40px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.selects_lls .tt h5{
	font-size: 1.4rem;
	font-weight: normal;
	letter-spacing: 0;
}
.selects_lls .tt i{
	border-left: 1px solid #e5e5e5;
	padding-left: 10px;
	font-size: 2rem;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	font-weight: bold;
}
.selects_lls .tt.active{
	color: var(--main-color);;
	border-color: var(--main-color);;
}
.selects_lls .tt.active i{
	border-color: var(--main-color);;
}
.selects_lls .sels{
	display: none;
	position: absolute;
	z-index: 9;
	left: 0;
	top: 42px;
	background: var(--main-color-white);;
	width: 100%;
	box-shadow: 0px 7px 9.5px 0.5px rgba(61, 63, 85, 0.08);
	max-height: 50vh;
    overflow-y: scroll;
}
.selects_lls .sels span{
	display: block;
	font-size: 1.3rem;
	padding:8px 10px;
	letter-spacing: 0;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.selects_lls .sels span:hover{
	background: #eee;
}
.pro_d .bar1 .rr .prize{
	color: #e50000;
	font-size: 1.6rem;
	font-weight: bold;
	margin: 8% 0 5%;
}
.pro_d .bar1 .rr .prize strong{
	font-size: 2.4rem;
	font-family: "title";
}
.pro_d .bar1 .rr .prize s{
	color: var(--main-color-999);;
	margin-left: 30px;
}
.pro_d .bar1 .rr .bot{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pro_d .bar1 .rr .bot .numbers input{
	margin-right: 10px;
}
.tocart{
	font-size: 1.6rem;
	background: var(--main-color);;
	border-radius: 4px;
	line-height: 40px;
	width: 55%;
	text-align: center;
	color: var(--main-color-white);;
	letter-spacing: 0;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	cursor: pointer;
}
.tocart:hover{
	background: #1b5a7d;
}
.pro_d .index_bars{
    padding-top: 5%;
}
.pro_d .bar2{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f8f8f9;
	margin-top: 5% ;
}
.title3{
	color: var(--main-color-1a1a1a);
	font-size: 2.8rem;
	margin-bottom: 3%;
}
.pro_d .bar2 .left{
	width: 32%;
	margin-left: 8%;
	margin-top: 3%;
}
.pro_d .bar2 .left .title3{
	color: #1b5a7d;
	margin-top: 10%;
}
.pro_d .bar2 .left .title3:first-of-type{
	margin-top: 0;
}
.pro_d .bar2 .left p{
    font-size: 1.6rem;
	letter-spacing: 0;
	line-height: 1.6;
	font-family: "myfont" !important;
}
.pro_d .bar2 .left p span{
	font-family: "myfont" !important;
	letter-spacing: 0;
}
.pro_d .bar2 .right{
	width: 50%;
}
.pro_d .bar2 .right img{
	width: 100%;
	display: block;
}
.pro_d .bar3 table{
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}
.pro_d .bar3 table tr{
	border-bottom: 5px solid var(--main-color-white);;
	background: #f8f8f9;
}
.pro_d .bar3 table tr td{
	font-size: 1.8rem;
	color: #525b66;
	padding: 20px;
	letter-spacing: 0;
	width: 50%;
	box-sizing: border-box;
}
.pro_d .bar3 p{
    font-family: "myfont" !important;
    letter-spacing: 0;
}
.pro_d .bar3 p span{
    font-family: "myfont" !important;
     letter-spacing: 0;
}
.pro_d .bar4 .title3{
	margin-bottom: 0;
}
.pro_d .bar4 ul{
	display: flex;
	flex-wrap: wrap;
}
.pro_d .bar4 ul li{
	width: 31.3%;
	margin-right: 3%;
	margin-top: 3%;
	position: relative;
}
.pro_d .bar4 ul li:nth-of-type(3n){
	margin-right: 0;
}
.pro_d .bar4 ul li img:first-of-type{
	display: block;
	width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.pro_d .bar4 ul li .vbtn{
	position: absolute;
	left: 4%;
	bottom: 5%;
	width: 40px;
}
.pro_d .bar4 ul li a{
    display: block;
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}
.pro_d .bar6 .title3{
	text-align: center;
}
.pro_d .bar6 ul{
	display: flex;
	flex-wrap: wrap;
}
.pro_d .bar6 ul li{
	width: 31.3%;
	margin-right: 3%;
	position: relative;
	box-shadow: 0px 7px 9.5px 0.5px rgba(61, 63, 85, 0.08);
	border-radius: 20px;
	text-align: center;
	padding: 5% 3%;
	box-sizing: border-box;
	border: 1px solid #e5e5e5;
}
.pro_d .bar6 ul li:nth-of-type(3n){
	margin-right: 0;
}
.pro_d .bar6 ul li img{
	display: block;
	width: 100px;
	margin: auto;
}
.pro_d .bar6 ul li h3{
	font-size: 2.4rem;
	letter-spacing: 0;
	color: var(--main-color-1a1a1a);
	position: relative;
	margin: 8% 0;
	padding-bottom: 5%;
}
.pro_d .bar6 ul li h3::before{
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 60px;
	height: 2px;
	background: #1b5a7d;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.pro_d .bar6 ul li p{
	line-height: 1.8;
	font-size: 1.6rem;
	letter-spacing: 0;
	color: var(--main-color-4c4c4c);
}
/* 会员中心 */
.tk{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: rgba(0,0,0,0.8);
	display: none;
}
.tk .box{
	position: absolute;
	right: -100%;
	top: 0;
	width: 640px;
	height: 100vh;
	background: var(--main-color-white);;
	opacity: 0;
	display: none;
	overflow-y: scroll;
}
.tk .box:first-of-type{
	display: block;
}
.tk .box .top{
	padding-left: 10%;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.tk .box .top h3{
	font-size: 2rem;
	color: var(--main-color-1a1a1a);
	font-family: "title";
}
.tk .box .top .close{
	border-left: 1px solid #e5e5e5;
	width: 72px;
	height: 72px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.tk .box .top .close img{
	width: 20px;
	margin: auto;
}
.tk .box .lls{
	border-top: 1px solid #e5e5e5;
	padding: 8% 10%;
	box-sizing: border-box;
}
.tk .box .lls h4{
	font-size: 1.5rem;
	color: var(--main-color-1a1a1a);
	font-family: "title";
	font-weight: normal;
	letter-spacing: 0;
}
.tk .box .lls p{
	color: var(--main-color-4c4c4c);
	font-size: 1.4rem;
	letter-spacing: 0;
	margin: 20px 0;
	line-height: 1.8;
}
.tk .box .lls p input{
	background: none;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	padding: 10px;
	box-sizing: border-box;
	width: 100%;
	box-shadow: none;
	color: var(--main-color-4c4c4c);
	display: block;
	font-size: 1.4rem;
	letter-spacing: 0;
	margin-top: 10px;
}
.tk .box .lls button{
	width: 100%;
	margin: 10% auto 0;
	background: var(--main-color);;
	color: var(--main-color-white);;
	letter-spacing: 0;
	font-size: 1.4rem;
	border: none;
	line-height: 48px;
	border-radius: 4px;
	display: block;
	cursor: pointer;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.tk .box .lls button:hover{
	background: #1b5a7d;
}
.tk .register .lls h4{
	display: flex;
	align-items: center;
}
.tk .register .lls h4 span{
	width: 24px;
	text-align: center;
	line-height: 24px;
	font-size: 1.2rem;
	color: var(--main-color-white);;
	background: #191919;
	display: block;
	margin-right: 10px;
	border-radius: 50%;
}
.tk .register .agree{
	display: flex;
	align-items: center;
	color: var(--main-color-1a1a1a);
}
.tk .box .lls .agree input{
	width: 16px;
	height: 16px;
	margin: 0;
	padding: 0;
	border-radius: 0;
	margin-right: 5px;
	border:1px solid var(--main-color-1a1a1a);
	cursor: pointer;
}
.tk .register .agree a{
	text-decoration: underline;
	margin-left: 5px;
	letter-spacing: 0;
}
.tk .register .lls button{
	margin-top: 5%;
}
/* 加入购物车 */
.tk_carts{
	z-index: 99;
}
.tk_carts .box{
	margin-top: 110px;
	padding: 0 1% 0 3%;
	box-sizing: border-box;
}
.tk_carts .box .top{
	padding: 0;
}
.tk_carts .box .top p{
	font-size: 1.6rem;
	letter-spacing: 0;
	color: #12b255;
	font-weight: normal;
	display: flex;
	align-items: center;
}
.tk_carts .box .top p img{
	width: 23px;
	margin-right: 10px;
}
.tk_carts .box .top .close{
	border: none;
	width: auto;
}
.tk_carts .box .lls{
	padding: 8% 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.tk_carts .box .lls img{
	display: block;
	width: 25%;
	background: #f5f5f7;
	padding: 2%;
	box-sizing: border-box;
}
.tk_carts .box .lls .rr{
	width: 70%;
}
.tk_carts .box .lls .rr h4{
	margin-bottom: 10px;
}
.tk_carts .box .lls .rr p{
	margin: 3px 0;
	line-height: 1.6;
}
.tk_carts .box .lls .rr p b{
    font-weight: normal;
    letter-spacing: 0;
}
.tk_carts .box .lls .rr p span{
    letter-spacing: 0;
}
.tk_carts .bots{
	display: flex;
	justify-content: space-between;
}
.tk_carts .bots a{
	display: block;
	width: 100%;
}
.tk_carts .bots button{
	width: 94%;
}
.tk_carts .bots a button{
	background: none;
	border: 1px solid #e5e5e5;
	color: var(--main-color-1a1a1a);
}
.my{
	background: #f8f8f9;
	padding: 5% 0;
}
.navs a{
	color: #cccccc;
	font-size: 2rem;
	font-family: "title";
	margin-right: 5%;
	letter-spacing: 0;
	text-transform: uppercase;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.navs a.active{
	color: var(--main-color-1a1a1a);
	border-bottom: 2px solid var(--main-color-1a1a1a);
}
.navs a:hover{
	color: var(--main-color-1a1a1a);
}
.my .bars{
	background: var(--main-color-white);;
	margin-top: 3%;
}
.title4{
	font-size: 1.6rem;
	color: #191919;
	padding: 3% 5%;
	box-sizing: border-box;
	text-transform: uppercase;
	border-bottom: 1px solid #e5e5e5;
}
.my .bb{
	padding: 4% 5% 8%;
	box-sizing: border-box;
}
.my h4{
	color: #191919;
	font-size: 1.4rem;
	font-weight: normal;
	letter-spacing: 0;
}
.my p{
	color: var(--main-color-4c4c4c);
	font-size: 1.4rem;
	letter-spacing: 0;
	margin: 3% 0;
	line-height: 1.8;
}
.my p input{
	background: none;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	padding: 10px;
	box-sizing: border-box;
	width: 100%;
	box-shadow: none;
	color: var(--main-color-4c4c4c);
	display: block;
	font-size: 1.4rem;
	letter-spacing: 0;
	margin-top: 10px;
}
.my p textarea{
	background: none;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	padding: 10px;
	box-sizing: border-box;
	width: 100%;
	min-height: 100px;
	box-shadow: none;
	color: var(--main-color-4c4c4c);
	display: block;
	font-size: 1.4rem;
	letter-spacing: 0;
	margin-top: 10px;
}
.submits{
	background: var(--main-color);;
	color: var(--main-color-white);;
	letter-spacing: 0;
	font-size: 1.4rem;
	border: none;
	line-height: 48px;
	border-radius: 4px;
	display: block;
	cursor: pointer;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.my button{
	width: 35%;
	float: right;
	margin: 3% 0 0;
}
.my .bbss {
    background: none;
    border: 1px solid #e6e8ed;
    color: var(--main-color-1a1a1a);
    margin-right: 20px;
    width: 23%;
}
.submits:hover{
	background: #1b5a7d;
	color: var(--main-color-white);;
}
.orders{
	background: #f8f8f9;
	padding: 5% 0%;
	box-sizing: border-box;
}
.orders .bars{
	background: var(--main-color-white);;
	margin-top: 3%;
	padding-bottom: 5%;
}
.orders .bars ul{
	background: #f8f8f9;
	padding:2% 3%;
	box-sizing: border-box;
	margin: 5% auto 0;
}
.orders ul li{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 3% 0;
	font-size: 1.4rem;
	color: var(--main-color-4c4c4c);
	border-bottom: 1px solid #e6e6e6;
}
.orders ul li:first-of-type{
	border-width: 5px;
	color: var(--main-color-1a1a1a);
	font-size: 1.6rem;
	font-weight: bold;
}
.orders ul li .lst{
	letter-spacing: 0;
	flex: 1;
}
.orders ul li .lst:first-of-type{
	display: flex;
	flex: 4;
	align-items: center;
}
.orders ul li img{
	width: 90px;
	border: 1px solid #e5e5e5;
	background: var(--main-color-white);;
	padding: 3%;
	margin-right: 20px;
}
.orders ul li b{
	font-size: 1.4rem;
	color: var(--main-color-4c4c4c);
	letter-spacing: 0;
}
.orders ul li p{
	color: var(--main-color-4c4c4c);
	font-size: 1.4rem;
	line-height: 1.6;
	font-weight: normal;
	letter-spacing: 0;
}
.numbers{
	width: 70px;
	display: flex;
	align-items: center;
	letter-spacing: 0;
	font-size: 1.6rem;
}
.numbers input{
	width: 70px;
	line-height: 36px;
	text-align: center;
	background: none;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
}
.orders ul li .del{
	width: 32px;
	flex: inherit;
	cursor: pointer;
}
.orders ul li .del img{
	display: block;
	width: 20px;
	padding: 6px;
	border-radius: 4px;
}
.orders .bottom{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2% 0;
}
.orders .bottom .left{
	width: 70%;
}
.orders .bottom dl{
	display: flex;
}
.orders .bottom dl dd{
	font-size: 1.4rem;
	color: var(--main-color-1a1a1a);
	margin: 6px 0;
	letter-spacing: 0;
	font-weight: normal;
}
.orders .bottom dl:first-of-type dd{
	font-weight: bold;
}
.orders .bottom dl dd:first-of-type{
	width: 70%;
}
.orders .submits{
	width: 200px;
} 
.orders2 .bottom{
	padding-top: 3%;
}
/* 下单流程 */
.buy1{
	padding-top: 0;
}
.buy1 .bars{
	margin-top: 2%;
}
.buy1 .title4 {
	display: flex;
	align-items: center;
}
.buy1 .title4 span{
	background: #191919;
	color: var(--main-color-white);;
	font-size: 1.6rem;
	line-height: 32px;
	width: 32px;
	text-align: center;
	border-radius: 50%;
	margin-right: 10px;
}
.buy1 .agree{
	display: flex;
	align-items: center;
	letter-spacing: 0;
	font-size: 1.4rem;
}
.buy1 .agree input{
	margin-right: 6px;
}
.buy1 button{
	width: 30%;
}
.buy1 .bars2{
	background: #f5f4f2;
	border: none;
	box-shadow: 0px 1px 0px 0px rgba(230, 230, 230, 0.004);
}
.buy1 .bars2 .title4{
	color: #919499;
}
.buy1 .bars2 .title4 span{
	background: none;
	border: 1px solid #919499;
	color: #919499;
}
.buy2 .title4{
	position: relative;
}
.buy2 .title4 a{
	border-bottom: 1px solid var(--main-color-1a1a1a);
	font-size: 1.4rem;
	color: #191919;
	position: absolute;
	right: 5%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-weight: normal;
	text-transform: none;
	letter-spacing: 0;
}
.buy2 .bars:first-of-type .bb{
	padding-bottom: 5%;
}
.buy2 .bars:first-of-type .bb p{
	margin: 3px 0;
	color: var(--main-color-1a1a1a);
}
.buy2 .title4 img{
	width: 32px;
	margin-right: 10px;
}
.buy2 .bb p{
	margin-bottom: 10px;
}
.buy2 .submits{
	width: 25%;
	margin-top: 5%;
}
.back2{
	padding-top: 2%;
	height: 32px;
}
.back2 img{
	height: 100%;
}
/* 购物车 */
.carts{
	background: var(--main-color-white);;
}
.carts .bars{
	margin-top: 0;
	padding-bottom: 0;
}
.carts .bars ul{
	margin: 0;
}
.carts .right{
	display: flex;
}
.carts .right .bbs{
	background: none;
	border: 1px solid #e6e8ed;
	color: var(--main-color-1a1a1a);
	margin-right: 20px;
}
.inside_con{ padding:10px 0; min-height:300px;}
.clear{ margin:0; padding:0; font-size:0; clear:both; }



.ermt ul{ display: flex; justify-content: center;  align-items: center;}
.ermt ul li{ margin:0 10px; text-align:center}
.ermt ul li .img{ width:120px; height:120px;display: flex; justify-content: center;  align-items: center;}
.ermt ul li .img img{max-height:100%;max-width:100%;width: auto;height: auto;margin: 0;}
.ermt ul li span{display:block;font-size: 17px;line-height:34px;text-align:center}
@media only screen and (max-width: 980px) {
	.ermt ul li .img{ width:60px; height:60px; margin:0 auto}
	.ermt ul li span{ font-size:14px; line-height:1.5; margin-top:10px;}
	}
