@font-face {
  font-family: "javatext";
  src: url(../fonts/javatext/javatext.eot);
  src: url(../fonts/javatext/javatext.eot?#font-spider) format("embedded-opentype"),
    url(../fonts/javatext/javatext.woff2) format("woff2"),
    url(../fonts/javatext/javatext.woff) format("woff"),
    url(../fonts/javatext/javatext.ttf) format("truetype"),
    url(../fonts/javatext/javatext.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

html,
body {
  position: relative;
  height: 100%;
  font-family: "Arial";
  font-size: 16px;
}
html.active{
    /* overflow: hidden; */
}
i,
em,
b {
  font-style: normal;
  font-weight: normal;
  display: block;
}
a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  background: none;
  text-decoration: none;
}
img {
  max-width: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-user-select: none;
  -moz-user-focus: none;
  -moz-user-select: none;
  user-select: none;
}
input,
textarea,
button,
select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}
textarea {
  resize: none;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #bfbfbf !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  background-color: transparent;
  background-image: none;
  transition: background-color 50000s ease-in-out 0s; /*背景色透明  生效时长  过渡效果  启用时延迟的时间*/
}
.center {
  width: 1200px;
  margin: 0 auto;
}
.mask {
  display: block;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  z-index: 900;
  left: 0;
  top: 0;
}
.mask.show {
  display: block;
}
ul {
  margin-bottom: 0;
}
.form-control {
  background-color: transparent;
  border: 1px solid #cbc9c9;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  outline: none;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  color: #777883;
}
.btn {
  height: 30px;
  line-height: 30px;
  border: none;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-modify: read-write-plaintext-only;
  box-shadow: none;
  display: inline-block;
  padding: 0 20px;
  background-color: #1abdb2;
  color: #eaeaea !important;
  -webkit-user-select: none;
  user-select: none;
}
.btn:focus {
  outline: none;
}
.btn[disabled="disabled"],
.btn[disabled="true"] {
  cursor: not-allowed;
}
.btn.primary-btn {
  background-color: #2c4c8d;
}
.btn.primary-btn:hover {
  background-color: #3d63ae;
}
.btn.danger-btn {
  background-color: #984b3c;
}
.btn.danger-btn:hover {
  background-color: #ac5443;
}
.btn.info-btn {
  background-color: #705b39;
}
.btn.info-btn:hover {
  background-color: #91764b;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.red {
  color: red;
}
html.show,
body.show {
  overflow: hidden;
  height: 100%;
}
#app {
  transition: all 0.3s ease-out;
  overflow: hidden;
}
#app.show {
  -webkit-transform: translateX(260px);
  transform: translateX(260px);
  width: 100vw;
  height: 100vh;
}
#mobileMenu {
  position: fixed;
  left: -200px;
  top: 0;
  margin: 0;
  width: 200px;
  height: 100vh;
  background: #d9662b;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  -moz-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 910;
}
#mobileMenu.show {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
}
#mobileMenu .hello {
  padding: 8px;
  line-height: 54px;
  background: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #fff;
}
#mobileMenu .menu {
  padding-top: 15px;
}
#mobileMenu .menu a {
  display: block;
  font-size: 14px;
  text-align: left;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 36px;
}
#mobileMenu .menu a.user {
  padding-left: 0;
  text-align: center;
  background: #2e3e60;
  color: #fff;
  margin: 5px 0;
}
#mobileMenu .menu .mbchild {
  width: auto !important;
  opacity: 1 !important;
}
#mobileMenu .menu .mbchild a {
  padding-left: 35px;
}
#mobileMenu .menu a:hover,
#mobileMenu .menu a.active {
  text-decoration: none;
  background: rgba(224, 211, 176, 0.4);
}
#navToggle {
  display: block;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  padding: 0;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  position: relative;
}
#navToggle span,
#navToggle::after,
#navToggle::before {
  height: 2px;
  width: 22px;
  top: 50%;
  left: 50%;
  margin-left: -11px;
  background: #f8c80f;
  position: absolute;
  display: block;
  content: "";
  text-indent: -9999px;
  transition: all 300ms ease-in-out;
}
#navToggle::before {
  margin-top: -7px;
}
#navToggle::after {
  margin-top: 7px;
}
#navToggle.show span {
  opacity: 0;
}
#navToggle.show::before {
  margin-top: 0;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#navToggle.show::after {
  margin-top: 0;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#mb-menu {
	position:fixed;
	left:-260px;
	top:0;
	margin:0;
	width:260px;
	height:100vh;
	background-color:#02489e;
	-webkit-overflow-scrolling:touch;
	overflow-y:auto;
	-moz-transform:translateZ(0);
	-webkit-transform:translateZ(0);
	transform:translateZ(0);
	-webkit-transition:transform 0.3s ease-out;
	transition:transform 0.3s ease-out;
	z-index:910
}
#mb-menu {
	display:none!important;
}
#mb-menu.show,#menu.show {
	-webkit-transform:translateX(260px);
	transform:translateX(260px)
}
.mm-listview .active{
    background: rgba(255, 255, 255, 0.5);
}
.mm-listview .lang{
    display: block;
    text-align: center;
    line-height: 1rem;
    margin-top: 0.5rem;
    color: #fff;
    font-size: 0.26rem;
    background: rgba(255, 255, 255, 0.05);
}
nav#menu{
    display: none;
}
.header {
  position: relative;
  z-index: 999;
  background: #181818;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 10px;
  line-height: 0.8rem;
  display: flex;
  -webkit-display: flex;
}
.header img {
  height: 85%;
}
.subnav {
  display: none;
  background: #dc7c3e;
  width: 100% !important;
}
@-webkit-keyframes navMove {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes navMove {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/* 首页 */
.menu-sub{
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    transition: all 0.5s linear;
}
.menu-sub.act{
    display: none;
}
.menu-sub.active{
    background: #fff;
    box-shadow: 0px 0px 7px 1px #eee;
}
@-webkit-keyframes menu-sub {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
}
@keyframes menu-sub {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes scroll {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}
@keyframes scroll {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.menu-sub.active .menu ul li a{
    color: #090909;
}
.menu-sub.active .menu ul li.active a{
    color: #ef8200;
}
.menu-sub.active .link a span{
    color: #090909;
}
.nav{
    position: relative;
    margin: 0 auto;
    max-width: 1660px;
    /* left: 50%;
    margin-left: -38.5%; */
}
.nav.active{
    max-width: 100%;
    padding: 0 15px;
}
.nav.active .link{
    float: right;
}
.menu{
    
}
.logo{
    float: left;
    padding: 0.18rem 0;
}
.logo img{
    float: left;
    margin-right: 0.18rem;
}
.menu ul li:nth-child(1){
	padding-left: 0;
}
.menu ul li{
    float: left;
    padding: 0 0.35rem;
    margin-top: 0.03rem;
    font-size: 0.16rem;
    line-height: 1.12rem;
}
.menu ul li.active a{
    color: #ef8200;
}
.home-nav .menu ul li a{
    color: #ef8200;
}
.menu ul li a{
    color: #090909;
    display: block;
    /* line-height: 0.3rem; */
    transition: all 0.4s;
}
.menu ul li:nth-child(5){
    background: url("../images/logo.png") no-repeat;
    height: 0.47rem;
    width: 3.42rem;
    margin: 0.325rem 0.6rem 0;
}
.menu ul li:nth-child(5) a{
    display: block;
}
.menu ul{
    overflow: hidden;
    float: left;
}
.menu ul li a:hover{
    color: #ac1f24;
}
.link{
    float: right;
    line-height: 1.12rem;
    padding-left: 0.3rem;
}
.link a{
    font-size: 0.16rem;
    color: #fff;
    transition: all 0.4s;
    display: inline-block;
}
.link a span{
    margin: 0;
}
.link span{
    margin: 0 0.12rem;
    color: #fff;
}
.link a img{
    height: 0.23rem;
    display: inline-block;
}
.link a:nth-child(2){
    margin-left: 0.3rem;
}
.link a:last-child{
    margin-left: 0.3rem;
}
.link a:hover{
    opacity: 0.65;
}
.link .active{
    display: none;
}
.menu-sub.active img{
    display: none;
}
.menu-sub.active .link .active{
    display: inline-block!important;
}
.slide-nav .link .active{
    display: inline-block!important;
}
.slide-nav .link img{
    display: none;
}
.slide-nav .link a span,
.slide-nav .link span {
    color: #090909!important;
}
.search{
    opacity: 0;
    /* position: absolute; */
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.3s linear;
}
.search.active{
    opacity: 1;
    z-index: 9;
}
.search.active form{
    transform: translateY(0);
    -webkit-transform: translateY(0);
}
.search form{
    position: relative;
    background: #fff;
    height: 1rem;
    line-height: 1rem;
    padding: 0 0.2rem;
    transition: all 0.5s linear;
    transform: translateY(-1rem);
    -webkit-transform: translateY(-1rem);
}
.search form img:first-child{
    position: absolute;
    top: 50%;
    margin-top: -0.11rem;
}
.search input{
    width: 100%;
    padding-left: 0.4rem;
    font-size: 0.16rem;
    font-family: Arial;
    color: #939393;
}
.search .search-close{
    position: absolute;
    right: 0.2rem;
    top: 50%;
    margin-top: -0.095rem;
    cursor: pointer;
    transition: all 0.4s;
}
.search .search-close:hover{
    opacity: 0.8;
}

.banner {
  overflow: hidden;
  position: relative;
  width: 100%;
  /* height: 11.19rem; */
  /* background: url("../images/banner_bg.png") no-repeat center; */
  background-size: cover;
}
.banner .swiper-container{
    overflow: inherit;
}
.banner .container{
    position: absolute;
    left: 50%;
    margin-left: -6rem;
    bottom: 3.05rem;
    padding: 0;
}
/* banner动画部分 */
.banner .swiper-slide img{
    width: 100%;
    /* opacity: 0;
    transform: translateX(-3rem);
    -webkit-transform: translateX(-3rem); */
    transition: all 1s ease;
}
.banner .swiper-slide.ani-slide img{
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
}
.banner .swiper-slide.ani-slide .text{
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}
.banner .button{
    position: absolute;
    right: 0.25rem;
    top: 3.8rem;
    width: 5.43rem;
    height: 0.9rem;
    line-height: 0.9rem;
    border-radius: 0.9rem;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(1rem);
    -webkit-transform: translateY(1rem);
    transition: all 1s ease;
}
.banner .swiper-slide.ani-slide .button{
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}
.banner .button p{
    display: inline-block;
    font-size: 0.18rem;
    color: #999;
    width: 55%;
    text-align: right;
}
.banner .button a{
    display: inline-block;
    width: 1.3rem;
    height: 0.55rem;
    background: #00a2e9;
    color: #fff;
    font-size: 0.18rem;
    letter-spacing: 0.03rem;
    margin-right: 0.45rem;
    text-align: center;
    line-height: 0.55rem;
    border-radius: 0.55rem;
    transition: all 0.3s linear;
}
/* banner动画部分 */
.banner .swiper-button-next.swiper-button-disabled,
.banner .swiper-button-prev.swiper-button-disabled {
  pointer-events: inherit;
  opacity: 1;
}
.banner .swiper-button-prev,
.banner .swiper-button-next {
  width: 0.4rem;
  height: 1rem;
  margin-top: -0.5rem;
  border-radius: 3px;
  transition: all 0.3s;
  animation: adBack 3s;
}
@keyframes adBack{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@-webkit-keyframes adBack{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
.banner .swiper-button-prev {
  background: #f8c80f url("../images/banner_prev.png") no-repeat center;
  left: 0.3rem;
  background-size: 0.13rem;
}
.banner .swiper-button-next {
  background: #f8c80f url("../images/banner_next.png") no-repeat center;
  right: 0.3rem;
  background-size: 0.13rem;
}
.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
  opacity: 0.8;
  cursor: pointer;
}
.banner .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.38rem;
  text-align: center;
  z-index: 2222;
  margin: 0 auto;
}
.banner .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 0.15rem;
  height: 0.15rem;
  margin: 0 0.04rem !important;
  transition: all 0.3s;
}
.banner .swiper-pagination-bullet-active {
  background: #ef8200;
  width: 0.4rem;
  border-radius: 0.4rem;
}
.banner .box{
    position: absolute;
    left: 1.2rem;
    color: #fff;
    z-index: 999;
    bottom: 37%;
    width: 47%;
}
.banner .swiper-slide:nth-child(2) .box{
	display: none;
}
.banner .box > b{
    font-size: 0.4rem;
    color: #ccc305;
    text-transform: uppercase;
    line-height: normal;
}
.banner .box > p{
    font-size: 0.5rem;
    color: #ef8200;
    text-transform: uppercase;
    line-height: normal;
}
.banner .box .text{
    font-size: 0.2rem;
    color: #adadad;
    font-family: 'Arial';
}
.banner .box a{
    display: block;
    width: 2.2rem;
    height: 0.55rem;
    line-height: 0.55rem;
    text-align: center;
    font-size: 0.24rem;
    font-family: 'Arial';
    box-shadow: inset 0px 0px 5px 1px #fff;
    background: #ef8200;
    color: #fff;
    margin-top: 0.2rem;
}

.home-about{
    position: relative;
    z-index: 1;
    padding: 1.95rem 1.2rem 1.35rem;
    height: 9rem;
    background: url("../images/home_about_bg.jpg") no-repeat center;
    background-size: cover;
    /* margin-top: -2.5rem; */
}
.home-about .container{
    background: #fff;
    overflow: hidden;
    height: 4.55rem;
    padding: 0;
    border-radius: 0.05rem;
    box-shadow: 2px 2px 10px 1px rgba(0,0,0,0.2);
}
.home-about .left{
    position: relative;
    width: 50%;
    height: 100%;
    float: left;
}
.home-about .left .cont{
    position: absolute;
    color: #646464;
    font-size: 0.16rem;
    line-height: 0.26rem;
}
.home-about .left .cont > b{
    font-size: 0.4rem;
    color: #1b1b1b;
    text-transform: uppercase;
}
.home-about .left .cont > b.cn-name{
	color: #ef8200;
    font-size: 0.45rem;
    letter-spacing: 0.05rem;
}
.home-about .left .cont .text{
    max-height: 4.95rem;
    overflow: hidden;
}
.home-about .left .line{
    width: 2rem;
    height: 0.03rem;
    background: #ef8200;
    margin: 0.3rem 0;
    display: block;
}
.home-about .left a{
    width: 2.05rem;
    height: 0.7rem;
    line-height: 0.7rem;
    text-align: center;
    font-size: 0.16rem;
    color: #1b1b1b;
    display: block;
    border: 1px solid #ef8200;
    margin-top: 0.5rem;
    border-radius: 0.2rem;
    letter-spacing: 0.02rem;
    transition: all 0.5s;
}
.home-about .left a i{
    line-height: normal;
    font-size: 0.2rem;
    margin-left: 0.2rem;
}
.home-about .right{
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 49%;
    height: 6rem;
    float: right;
    background: #ef8200;
}
.home-about .right .text{
    position: absolute;
    bottom: 0.25rem;
    width: 100%;
    text-align: center;
    color: #fff;
}
.home-about .right .box{
    display: inline-block;
    line-height: normal;
    margin: 0 0.45rem;
}
.home-about .right .box .count{
    font-size: 0.5rem;
    width: 1.11rem;
    display: inline-block;
}
.home-about .right .box span:nth-child(2){
    font-size: 0.3rem;
}
.home-about .right .box em{
    font-size: 0.2rem;
    font-family: 'Arial';
    color: #373736;
}

/* 首页热销产品 */
.home-product{
    position: relative;
    width: 100%;
    padding: 1.8rem 0 1.9rem;
    background: url("../images/home_probg.jpg") no-repeat center;
    background-size: cover;
}
.home-product .container:before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ef8200;
    opacity: 0.8;
}
.home-product .title{
    overflow: hidden;
    padding-bottom: 1rem;
}
.home-product .top{
    float: left;
}
.home-product .top b{
    font-size: 0.4rem;
    font-family: 'javatext';
    color: #1b1b1b;
    text-transform: uppercase;
}
.home-product .home-nav{
    float: right;
    margin-top: 0.1rem;
}
.home-product .home-nav .pro-nav{
    display: inline-block;
    margin-right: 0.3rem;
}
.home-product .home-nav .pro-nav a{
    position: relative;
    font-size: 0.2rem;
    font-family: 'Arial';
    color: #1b1b1b;
    margin-left: 0.5rem;
    transition: all 0.3s;
}
.home-product .home-nav .pro-nav a:first-child{
    margin-left: 0;
}
.home-product .home-nav .pro-nav a:after{
    content: '';
    display: block;
    position: absolute;
    bottom: -0.14rem;
    left: 0;
    width: 0;
    height: 2px;
    background: #ef8200;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    transition: all 0.3s;
}
.home-product .arrow{
    position: static;
    float: right;
    margin-top: 0.03rem;
}
.home-product .arrow .fa{
    position: static;
    width: 0.29rem;
    height: 0.29rem;
    text-align: center;
    line-height: 0.29rem;
    color: #090909;
    font-size: 0.22rem;
    background: #eee;
    margin-left: -0.03rem;
    border-radius: 0.03rem;
    transition: all 0.3s;
}
.home-product .arrow .swiper-button-disabled{
    opacity: 1;
}
.home-hotpro{
    overflow: hidden;
}
.container{
    width: 100%;
    padding: 0 1.2rem;
}
.home-hotpro a{
    position: relative;
    display: block;
    background: #eee;
    border-radius: 0 0 0.2rem 0.2rem;
    text-align: center;
    letter-spacing: 0.01rem;
    transition: all 0.3s;
}
.home-hotpro .img{
    overflow: hidden;
}
.home-hotpro .img img{
    width: 100%;
    transition: all 0.2s linear;
}
.home-hotpro .text{
    font-size: 0.27rem;
    color: #2e2f8a;
    min-height: 1.76rem;
    padding: 0.3rem 0.4rem;
    text-align: left;
    transition: all 0.2s linear;
}
.home-hotpro .text > p{
    font-size: 0.24rem;
    color: #ef8200;
    line-height: normal;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.home-hotpro .text .star{
    margin: 0.19rem 0;
    line-height: 0.2rem;
}
.home-hotpro .text .star i{
    font-size: 0.2rem;
    color: #ef8200;
}
.home-hotpro .text .bottom{
    font-size: 0.2rem;
    color: #ef8200;
    line-height: normal;
}
.home-hotpro .text .bottom span{
    display: inline-block;
    width: 70%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.home-hotpro .text .bottom em{
    display: inline-block;
    float: right;
}
.home-hotpro .text .bottom i{
    margin-left: 0.16rem;
}

/* 首页advantage */
.advan{
    margin: 1.3rem 0 1.5rem;
}
.advan .title{
    position: relative;
    text-align: center;
    font-size: 0.4rem;
    height: 0.4rem;
    color: #1b1b1b;
    margin-bottom: 0.9rem;
    font-family: 'javatext';
    text-transform: uppercase;
}
.advan .title:before{
    content: '';
    display: block;
    position: absolute;
    width: 2rem;
    height: 2px;
    background: #ef8200;
    bottom: -0.2rem;
    left: 50%;
    margin-left: -1rem;
}
.advan .slideBox {
    position: relative;
    background: url("../images/home_advanbg.png") no-repeat bottom;
    background-size: contain;
}
.advan .slideBox .hd {
    height: 0.2rem;
    margin-top: 0.6rem;
}
.advan .slideBox .hd ul {
    overflow: hidden;
    zoom: 1;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
}
.advan .slideBox .hd ul li {
    float: left;
    margin: 0 0.095rem;
    width: 0.2rem;
    height: 0.2rem;
    text-align: center;
    background: #b5b5b5;
    border-radius: 50%;
    cursor: pointer;
}
.advan .slideBox .hd ul li.on {
    background: #ef8200;
}
.advan .slideBox .bd {
    position: relative;
    height: 100%;
    z-index: 0;
}
.advan .slideBox .bd li {
    text-align: center;
    zoom: 1;
    vertical-align: middle;
}
.advan .slideBox .bd img {
    /* display: block; */
}

/* 首页新闻中心 */
.home-news{
    background: #ef8200;
    padding: 0.58rem 0 0.35rem;
}
.picScroll-top {
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
.picScroll-top .hd {
    position: absolute;
    right: 0.25rem;
    height: 100%;
}
.picScroll-top .hd .prev,.picScroll-top .hd .next {
	display: block;
    width: 0.29rem;
    height: 0.29rem;
    background: #fff;
    text-align: center;
    border-radius: 0.03rem;
    cursor: pointer;
    transition: all 0.3s;
}
.picScroll-top .hd i{
    font-size: 0.22rem;
    color: #090909;
    position: relative;
    top: 0.035rem;
}
.picScroll-top .hd .next {
    margin: 0 0 0.4rem;
}
.picScroll-top .bd {
	width: 84%;
}
.picScroll-top .bd .tempWrap{
    /* height: 100px!important; */
}
.picScroll-top .bd ul {
	overflow: hidden;
	zoom: 1;
}
.picScroll-top .bd ul li {
	text-align: left;
    zoom: 1;
    font-size: 0.16rem;
    color: #fff;
    cursor: pointer;
}
.picScroll-top .bd ul li .pic {
	text-align: center;
}
.picScroll-top .bd ul li .pic img {
	width: 180px;
	height: 90px;
	display: block;
	padding: 2px;
	border: 1px solid #ccc;
}
.picScroll-top .bd ul li .pic a:hover img {
	border-color: #999;
}
.picScroll-top .bd ul li .title {
    font-size: 0.26rem;
    color: #fff;
    overflow: hidden;
    text-transform: uppercase;
}
.picScroll-top .bd ul li .title a {
    display: block;
    float: left;
    width: 80%;
    line-height: normal;
    transition: all 0.3s;
}
.picScroll-top .bd ul li .title a > p{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff;
}
.picScroll-top .bd ul li .title .date{
    text-align: right;
    line-height: 0.3rem;
    font-size: 0.16rem;
}
.picScroll-top .bd ul li .detail{
    margin-top: 0.25rem;
    font-size: 0.16rem;
    color: #fff;
  	min-height: 0.44rem;
}
.picScroll-top .bd ul li .detail a{
    color: #fff;
}
.picScroll-top .bd ul li .detail a > p{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* 研发中心 */
.banner-slide{
    position: relative;
    margin-top: 1.15rem;
    height: 5rem;
}
.common-one{
    line-height: 0.92rem;
    background: #f18606;
}
.common-one .left{
    float: left;
    font-size: 0.18rem;
    color: #fff;
}
.common-one .left a{
    color: #fff;
    transition: all 0.3s;
}
.common-one .right{
    float: right;
    text-align: right;
    padding-right: 0.3rem;
}
.common-one .right a{
    position: relative;
    margin-left: 0.85rem;
    font-size: 0.2rem;
    color: #fff;
    display: inline-block;
    transition: all 0.4s;
}
.common-one .right a.active{
    color: #010000;
}
.common-one .right a:before{
    content: '';
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    width: 0;
    height: 2px;
    bottom: -0.02rem;
    background: #010000;
    transition: all 0.3s;
}
.common-one .right a.active:before{
    width: 100%;
}
.develop .slide{
    position: relative;
}
.develop-cont{
    overflow: hidden;
}
.develop a{
    display: block;
    cursor: default;
}
.develop .img{
    position: relative;
    overflow: hidden;
    border-radius: 0.1rem;
    margin-bottom: 0.15rem;
}
.develop .img:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.2s linear;
}
.develop .img img{
    width: 100%;
}
.develop .img p{
    opacity: 0;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 0.18rem;
    color: #fff;
    padding: 0 0.1rem;
    transition: all 0.2s linear;
}
.develop .container{
    position: relative;
}
.develop-cont em{
    font-size: 0.12rem;
    color: #3c3c3c;
    text-align: center;
    line-height: 0.2rem;
}
.develop .swiper-button-prev,
.develop .swiper-button-next{
    background: transparent;
    width: 0.3rem;
    height: 0.3rem;
    line-height: 0.3rem;
    margin-top: -0.4rem;
    text-align: center;
    font-size: 0.3rem;
    transition: all 0.3s linear;
}
.develop .swiper-button-prev{
    left: -0.7rem;
    color: #5a5a68;
}
.develop .swiper-button-next{
    right: -0.7rem;
    color: #5a5a68;
}
.develop .photo{
    margin-bottom: 1rem;
    overflow: hidden;
}
.develop .photo .left{
    width: 62.5%;
    float: left;
    padding-right: 0.15rem;
}
/* 工艺展示 */
.technology .photo{
    margin-bottom: 0.7rem;
}
.technology .photo:last-child{
    margin-bottom: 0;
}
.technology .left{
    float: left;
    width: 50%;
    padding-right: 0.3rem;
    padding-top: 0.5rem;
}
.technology .left .top{
    padding-bottom: 0.22rem;
    margin-bottom: 0.22rem;
    border-bottom: 1px solid #eee;
    line-height: normal;
}
.technology .left .top i{
    font-size: 0.3rem;
    color: #00a2e9;
    font-style: italic;
}
.technology .left .top i span{
    position: relative;
    top: -0.03rem;
    font-size: 0.2rem;
    color: #3c3c3c;
    margin-left: 0.12rem;
    font-style: normal;
}
.technology .left .text{
    font-size: 0.14rem;
    color: #3c3c3c;
    line-height: 0.28rem;
    text-indent: 1em;
    max-height: 2.52rem;
    padding-right: 0.1rem;
    overflow-y: scroll;
}
.technology .left .text::-webkit-scrollbar-track-piece {
    /* 滚动条凹槽的颜色，还可以设置边框属性 */
    background: transparent;
}
.technology .left .text::-webkit-scrollbar {
    /* 滚动条的宽度 */
    width: 9px;
    height: 9px;
}
.technology .left .text::-webkit-scrollbar-thumb {
    /* 滚动条的设置 */
    background-color: #dddddd;
    background-clip: padding-box;
    min-height: 28px;
}
.technology .left .text::-webkit-scrollbar-thumb:hover {
    background-color: #bbb;
}
.technology .photo:nth-child(2n) .left{
    float: right;
    padding-left: 0.3rem;
    padding-right: 0;
}
.technology .right{
    padding-left: 50%;
}
.technology .photo:nth-child(2n) .right{
    padding-left: 0;
    padding-right: 50%;
}

/* 新闻中心 */
.newsP{
    overflow: hidden;
}
.newsP a{
    transition: all 0.4s;
    display: block;
}
.newsP a .text{
    position: relative;
    text-align: center;
    font-size: 0.24rem;
    color: #f28708;
    height: 1.15rem;
    line-height: 1.15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.newsP .img{
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.2s linear;
}
.newsP .img img{
    width: 100%;
    transition: all 0.2s linear;
}
.newsProduct{
    margin-top: 1.55rem;
}
.newsProduct .container > b{
    font-size: 0.4rem;
    color: #f28708;
    margin-bottom: 0.55rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid #d1d1d1;
}
#product{
	position: relative;
    top: -1rem;
}
.newscont{
    padding-top: 1rem;
}
.newscont a{
    display: block;
    margin-bottom: 0.2rem;
    padding: 0 1.78rem 0 0.78rem;
    box-shadow: 0px 0px 10px 0 rgba(0,0,0,0.14);
    overflow: hidden;
    transition: all 0.5s ease;
}
.newscont a:last-child{
    margin-bottom: 0;
}
.newscont .left{
    float: left;
    text-align: center;
    color: #f18506;
    padding: 0.575rem 0.22rem 0;
}
.newscont .left em{
    font-size: 0.8rem;
    height: 0.6rem;
    padding: 0 0.18rem;
    line-height: 0.6rem;
}
.newscont .left i{
    display: block;
    width: 100%;
    height: 1px;
    margin: 0.18rem 0;
    background: #f18506;
}
.newscont .left span{
    font-size: 0.24rem;
    line-height: normal;
}
.newscont .right{
    display: flex;
    align-items: center;
    min-height: 2.46rem;
}
.newscont .right .text b{
    font-size: 0.3rem;
    height: 0.34rem;
    color: #303030;
    line-height: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    transition: all 0.2s linear;
}
.newscont .right .text i{
    display: block;
    background: #eee;
    margin: 0.19rem 0 0.24rem;
    width: 100%;
    height: 1px;
}
.newscont .right .text em{
    font-size: 0.16rem;
    height: 0.38rem;
    color: #b4b0b0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.newscont .img{
    float: left;
    padding: 0 1rem 0 0.88rem;
}
.newscont .icon{
    float: right;
    width: 0.28rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1.46rem;
}
.newscont .icon i{
    width: 0.28rem;
    height: 0.28rem;
    border: 1px solid #4c4d4d;
    text-align: center;
    line-height: 0.26rem;
    border-radius: 50%;
    font-size: 0.25rem;
    color: #4c4d4d;
    padding-left: 0.02rem;
    transition: all 0.3s linear;
}
.page{
    text-align: center;
    margin-top: 0.65rem;
    margin-bottom: 1rem;
}
.page ul li a,
.page ul li span{
	border: 1px solid #dcdcdc;
    margin: 0 0.05rem;
    font-size: 0.24rem;
  	color: #959595;
    width: 0.55rem;
    height: 0.55rem;
    line-height: 0.55rem;
    padding: 0;
  	transition: all 0.2s;
}
.page ul li a:hover,
.page ul li.active span,
.page ul li span:hover{
	background: #ef8000!important;
  	border-color: #ef8000!important;
  	color: #fff!important;
}
.page ul li.active span{
	width: 0.57rem;
  	height: 0.57rem;
}
/* 详情 */
.newsinfo{
    background: transparent!important;
}
.newsinfo .title:before{
    display: none;
}
.newsinfo .title{
    text-align: center;
    color: #87888c;
    font-size: 0.2rem;
}
.newsinfo .title i{
    font-size: 0.15rem;
    margin-top: 0.1rem;
}
.news-cont{
    padding: 0.5rem 0;
}
.infocont{
    margin-top: 0.5rem;
    color: #87888c;
    font-size: 0.16rem;
    line-height: 0.3rem;
}
.infocont .class{
    margin-bottom: 0.55rem;
    padding: 0.6rem 0 0.2rem;
    background: #ef8000;
}
.infocont .class a{
    position: relative;
    width: 16%;
    font-size: 0.2rem;
    color: #fff;
    display: inline-block;
    text-align: center;
    transition: all 0.5s;
}
.infocont .class a:after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 40%;
    background: #f29933;
}
.infocont .class a:last-child:after{
    display: none;
}
.infocont .class a img{
    margin-bottom: 0.35rem;
}
.infocont .class a .active{
    display: none;
}
.infocont .class a.active{
    color: #121211;
}
.infocont .class a.active .no-active{
    display: none;
}
.infocont .class a.active .active{
    display: inline-block;
}
/* .infocont .class a:before{
    content: '';
    position: absolute;
    width: 0.08rem;
    height: 0.08rem;
    background: #00a2e9;
    top: 50%;
    margin-top: -0.04rem;
    left: 0;
    opacity: 0;
    transition: all 0.2s linear;
}
.infocont .class a.active:before{
    opacity: 1;
} */
.infocont .class a:last-child img{
    border-right: 0;
}
.infocont .class a p{
    min-height: 30px;
    overflow: hidden;
    height: 60px;
}
.pro{
    position: relative;
    margin-left: -0.12rem;
    overflow: hidden;
    /* animation: proinfoCont 0.3s linear; */
}
@keyframes proinfoCont{
    from{
        top: 0.3rem;
        opacity: 0;
    }
    to{
        top: 0;
        opacity: 1;
    }
}
@-webkit-keyframes proinfoCont{
    from{
        top: 0.3rem;
        opacity: 0;
    }
    to{
        top: 0;
        opacity: 1;
    }
}
.pro .list{
    width: 25%;
    float: left;
    text-align: center;
}
.pro .list a{
    display: block;
    margin-left: 0.12rem;
    transition: all 0.4s;
}
.pro .list .img{
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.2s linear;
}
.pro .list .img img{
    width: 100%;
    transition: all 0.2s linear;
}
.pro .list .text{
    position: relative;
    font-size: 0.24rem;
    color: #f28708;
    height: 1.15rem;
    line-height: 1.15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.pro-text{
    position: relative;
    margin-bottom: 1.2rem;
    overflow: hidden;
}
.pro-text .left{
    position: relative;
    z-index: 1;
    width: 52%;
    float: left;
    padding: 0.6rem 0.2rem;
    overflow: hidden;
    background: #f3f2f2;
}
.pro-text .right{
    position: absolute;
    width: 100%;
    height: 100%;
    padding-left: 58%;
}
.pro-text .right .title{
    padding-bottom: 0.25rem;
    margin-bottom: 0.25rem;
}
.pro-text .right .title:before{
    display: none;
}
.pro-text .detail{
    font-size: 0.16rem;
    color: #3c3c3c;
    line-height: 0.3rem;
}
.pro-text .detail img{
    display: block;
}
.pro-text .detail-cont{
    padding-left: 0.3rem;
    margin-bottom: 0.4rem;
}
.pro-text .detail-cont p{
    position: relative;
}
.pro-text .detail-cont p:before{
    content: '';
    position: absolute;
    width: 0.09rem;
    height: 0.09rem;
    background: #0d4da1;
    left: -0.2rem;
    top: 50%;
    margin-top: -0.045rem;
    border-radius: 50%;
}
.pro-text .detail a{
    position: absolute;
    bottom: 0;
    background: #eee;
    font-size: 0.16rem;
    color: #3c3c3c;
    display: block;
    padding: 0.08rem 0.53rem;
    text-decoration: underline;
    border-radius: 0.03rem;
    transition: all 0.4s;
}
.pro-detail{
    background: #f8f7f7;
    padding: 1.1rem 0;
}
.pro-detail .proinfo-title{
    position: relative;
    line-height: normal;
    font-size: 0.24rem;
    color: #2f3031;
    margin-bottom: 0.4rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid #dcdcdc;
}
.pro-detail .proinfo-title:before{
    content: '';
    width: 0.15rem;
    height: 0.15rem;
    display: inline-block;
    margin-right: 0.19rem;
    background: #00a2e9;
}
.proinfo-box{
    margin-bottom: 1rem;
}
.proinfo-box:last-child{
    margin-bottom: 0;
}
.proinfo-cont{
    font-size: 0.16rem;
    color: #7b7d7e;
    line-height: 0.28rem;
}
.pro-rec{
    margin-top: 1rem;
}
.pro-rec .container{
    overflow: hidden;
}
.pro-rec .title{
    padding-bottom: 0;
    margin-bottom: 0.55rem;
    border-bottom: 0;
}
.pro-rec .pro .list .img {
    padding: 0.1rem 0;
}
.pro-rec .pro .list{
    padding: 0.1rem;
}

.news-page{
    margin-top: 0.65rem;
    overflow: hidden;
}
.news-page a{
    width: 48%;
    color: #f18606;
}
.news-page a em{
    display: inline-block;
    line-height: 0.33rem;
    color: #666;
    max-width: 80%;
    height: 0.33rem;
    text-align: left;
    overflow: hidden;
    position: relative;
    top: 0.1rem;
    transition: all 0.3s;
}
.news-page a span{
    font-size: 0.16rem;
    display: inline-block;
    border: 1px solid #f18606;
    padding: 0.05rem 0.1rem;
    border-radius: 0.05rem;
    color: #f18606;
}
.news-page a span.dian{
    border: 0;
    color: initial;
    padding: 0;
}
.news-page a:first-child{
    float: left;
}
.news-page a:last-child{
    text-align: right;
    float: right;
}
/* 产品资料 */
.product{
    background: transparent!important;
}
.infocont{
    position: relative;
}
.infocont.active{
    z-index: -1;
}

/* 关于我们 */
.ab-cont{
    position: relative;
    background: url("../images/about_bg.jpg") no-repeat bottom;
    background-size: cover;
    padding: 1.25rem 0 1.5rem;
}
.ab-cont:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
}
.ab-cont .textbg{
    position: relative;
}
.ab-cont .left{
    width: 65%;
    float: left;
    padding-right: 0.2rem;
    border-right: 1px solid #f18303;
}
.ab-cont .left > b{
    font-size: 0.35rem;
    color: #f18303;
    line-height: normal;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}
.ab-cont .left > b.cn-name{
	font-size: 0.45rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
}
.ab-cont .left .cont{
    font-size: 0.14rem;
    color: #87888c;
    line-height: 0.25rem;
}
.about-info{
    padding-left: 69%;
}
.about-info .list .shu{
    float: left;
    min-width: 2.2rem;
    width: 2.2rem;
}
.about-info .list .shu span{
    display: inline-block;
    font-size: 0.7rem;
    color: #f08303;
}
.about-info .list .shu span:nth-child(2){
    font-size: 0.5rem;
}
.about-info .list .text{
    position: relative;
    float: left;
    line-height: 1rem;
    text-align: center;
    width: 42%;
    margin-top: -0.1rem;
}
.about-info .list .text:before{
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -0.6rem;
    bottom: 0.17rem;
    width: 1.2rem;
    height: 2px;
    background: #f08303;
}
.about-info .list img{
    float: right;
    margin-top: 0.16rem;
}
.about-info .list{
    overflow: hidden;
    margin: 0.7rem 0;
}
.ab-cont .info{
    overflow: hidden;
}
.ab-cont .img{
    margin-top: 0.9rem;
    position: relative;
}
.ab-cont .img img{
    width: 100%;
    transition: all 0.5s;
}
.ab-cont .img a{
    position: relative;
    display: inline-block;
    width: 33%;
    overflow: hidden;
}
.ab-cont .img a:before{
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(239, 128, 0, 0);
    transition: all 0.5s;
}
.ab-cont .img a .text{
    opacity: 0;
    position: absolute;
    z-index: 2;
    top: 50%;
    margin-top: -0.62rem;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 0.3rem;
    text-transform: uppercase;
    transition: all 0.4s;
}
.ab-cont .img a .text p{
    line-height: normal;
    margin-bottom: 0.4rem;
}
.ab-cont .img a .text span{
    display: block;
    font-size: 0.2rem;
    width: 1.52rem;
    height: 0.5rem;
    border: 1px solid #fff;
    line-height: 0.5rem;
    margin: 0 auto;
}
.factory .ab-cont .left{
    width: 50%;
    border-right: 0;
    padding-right: 0;
}
.factory .ab-cont .left img{
    width: 100%;
}
.factory .ab-cont .right{
    position: relative;
    width: 50%;
    float: right;
    padding: 0.5rem 0 0 0.45rem;
}
.factory .ab-cont .right > b{
    font-size: 0.4rem;
    color: #f48b0d;
    padding-bottom: 0.4rem;
    margin-bottom: 0.4rem;
    border-bottom: 1px solid #f48b0d;
    line-height: normal;
    text-transform: uppercase;
}
.factory .ab-cont .right .cont{
    font-size: 0.24rem;
    color: #6d6b6b;
    max-height: 2.38rem;
    overflow: hidden;
}
.factory .ab-cont .right a{
    display: block;
    margin-top: 0.55rem;
    border-radius: 0.1rem;
    width: 3.9rem;
    height: 1rem;
    line-height: 1rem;
    color: #fff;
    font-size: 0.3rem;
    background: #ef8000;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s;
}
.factory .ab-cont .img{
    overflow: hidden;
    padding-bottom: 0.7rem;
}
.factory .ab-cont .img a{
    width: 100%;
}
.factory .img .swiper-pagination{
	bottom: 0;
}
.factory .img .swiper-pagination-bullet{
    width: 0.15rem;
    height: 0.15rem;
    border-radius: 50%;
    background: #b5b5b5;
    opacity: 1;
    transition: all 0.3s;
}
.factory .img .swiper-pagination-bullet-active{
    width: 0.5rem;
    background: #ef8200;
    border-radius: 0.2rem;
}
.lcl_socials, .lcl_thumbs_toggle, .lcl_txt_toggle{
    display: none!important;
}

/* 联系我们 */
.contact .form{
    position: relative;
    padding: 1.45rem 0.9rem 0.9rem 1.2rem;
    background: url("../images/contact_bg.jpg") no-repeat bottom;
    float: left;
    width: 50%;
}
.contact .form:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(239, 128, 0, 0.95);
}
.contact form{
    position: relative;
}
.contact form .title{
    font-size: 0.3rem;
    color: #fff;
    line-height: normal;
    margin-bottom: 0.6rem;
}
.contact form .list{
    margin-bottom: 0.15rem;
}
.contact form .list.active{
    box-shadow: 0px 0px 1px 1px #fffc00;
}
.contact form .last.active textarea{
    border: 0!important;
}
.contact form .btn{
    display: inline-block;
    width: 48%;
    height: 0.68rem;
    font-size: 0.2rem;
    color: #fff;
    background: transparent;
    transition: all 0.3s;
}
.contact form button{
    border: 1px solid #fff;
}
.contact form .reset{
    float: right;
    text-transform: uppercase;
}
.contact form input{
    width: 100%;
    height: 0.6rem;
    font-size: 0.16rem;
    color: #fff;
    padding: 0 0.1rem;
    border: 1px solid #fff;
}
.contact form input::-webkit-input-placeholder,
.contact form textarea::-webkit-input-placeholder{
    font-size: 0.16rem;
    color: #fff;
}
.contact form textarea{
    width: 100%;
    height: 1.88rem;
    font-size: 0.16rem;
    color: #fff;
    padding: 0.1rem;
    border: 1px solid #fff;
}
.contact .tact{
    padding: 1.45rem 0 0 1.45rem;
    float: right;
    text-align: left;
    width: 50%;
}
.contact .tact > b{
    font-size: 0.3rem;
    color: #0b0b0b;
    line-height: normal;
    margin-bottom: 0.35rem;
}
.contact .tact .list{
    padding: 0.2rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.contact .num-cont{
    margin-bottom: 1rem;
}
.contact .text b{
    display: inline-block;
    font-size: 0.2rem;
    color: #333;
    font-weight: bold;
}
.contact .text em{
    display: inline-block;
    font-size: 0.2rem;
    color: #333;
}
.contact .list:nth-child(5) img{
    top: 0.01rem;
}
.contact .list img{
    position: relative;
    top: -0.02rem;
    display: inline-block;
    margin-right: 0.18rem;
    display: table-cell;
    vertical-align: top;
    float: left;
}
.contact .list p{
    display: inline-block;
    font-size: 0.16rem;
    color: #7d7c7a;
}
.map #container{
    height: 5rem;
}
.map .content{
    /*text-align: center;
    width: 1rem;
    height: 0.55rem;
    position: relative;
    left: -0.4rem;
    top: -0.2rem;*/
}
.map .content .text{
    position: absolute;
    bottom: 50px;
    background: #00a2e9;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    padding: 5px 10px;
    left: -40px;
    width: 100px;
    text-align: center;
}
.map .content .text:after{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-right: 0.08rem solid transparent;
    border-left: 8px solid transparent;
    border-top: 8px solid #00a2e9;
    bottom: -8px;
    left: 50%;
    margin-left: -8px;
}
.map .content img{
    /*position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -0.095rem;
    width: 0.19rem;*/
}


/* footer */
.footer {
    position: relative;
    overflow: hidden;
    background: #1b1b1b;
    padding: 0.23rem 0 0.54rem;
}
.foot-add{
    font-size: 0.16rem;
    color: #fafafa;
    padding: 0.15rem 0;
    border-bottom: 1px solid #453016;
    overflow: hidden;
}
.foot-add .list{
    float: left;
    width: 33.33%;
    display: flex;
    align-items: center;
}
.foot-add .list:nth-child(2){
    text-align: center;
    border: 1px solid #453016;
    border-top: 0;
    border-bottom: 0;
}
.foot-add .list:nth-child(2) img{
    margin-right: 0;
    margin: 0 auto;
}
.foot-add .list:nth-child(3){
    padding-left: 0.6rem;
}
.foot-add .list img{
    margin-right: 0.25rem;
    display: inline-block;
}
.foot-add .list p{
    display: inline-block;
}
.foot-nav{
    text-align: center;
    padding: 0.4rem 0 0.9rem;
    overflow: hidden;
    color: #adacac;
    font-size: 0.14rem;
    text-align: left;
}
.foot-nav .list{
    width: 17%;
    float: left;
    margin-right: 8%;
}
.foot-nav .list:nth-child(2){
    width: 20%;
    padding-left: 3%;
}
.foot-nav .list:last-child{
    width: 20%;
    margin-right: 0;
}
.foot-nav .list > b{
    font-size: 0.18rem;
    font-weight: bold;
    color: #fff;
    line-height: normal;
}
.foot-nav .list .line{
    display: block;
    width: 0.4rem;
    height: 2px;
    background: #ef8200;
    margin: 0.18rem 0 0.3rem;
}
.foot-nav .list a{
    display: inline-block;
    color: #adacac;
    min-width: 1.3rem;
    margin-bottom: 0.14rem;
}
.foot-nav a:hover{
    color: #ccc;
}
.copy{
    color: #595959;
    font-size: 0.16rem;
    padding: 0.3rem 0;
    border-top: 1px solid #453016;
}
.copy a{
    color: #595959;
}
.copy p{
    display: inline-block;
}
.copy p:last-child{
    float: right;
    text-align: right;
}


/* 1200 */
.mb {
  display: none;
}

@media screen and (min-width: 1920px){
    
}

@media screen and (min-width: 992px){

    .banner-img .index-class a:hover,
    .banner-img .about-class a:hover,
    .pro-list a:hover{
        color: #fff;
        background: #d12521;
    }
    .menu ul li:hover a{
        color: #ef8201!important;
    }
    .banner .button a:hover{
        margin-right: -0.015rem;
        height: 100%;
        width: 2rem;
        line-height: 0.9rem;
    }
    .home-about .left a:hover{
        background: #ef8200;
        color: #fff;
        border: 1px solid #ef8200;
    }
    .home-product .home-nav .pro-nav a:hover:after{
        width: 100%;
    }
    .home-product .home-nav .pro-nav a:hover{
        color: #fff;
    }
    .home-product .arrow .fa:hover{
        color: #ef8200;
        background: #090909;
    }
    .home-hotpro a:hover{
        background: #fff;
    }
    .home-hotpro a:hover .img img{
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }
    .picScroll-top .hd a:hover i{
        color: #ef8200;
    }
    .picScroll-top .bd ul li:hover .title a{
        opacity: 0.8;
    }
    .common-one .left a:hover{
        opacity: 0.8;
    }
    .common-one .right a:hover{
        color: #010000;
    }
    .common-one .right a:hover:before{
        width: 100%;
    }
    .ab-cont .img a:hover:before{
        background: rgba(239, 128, 0, 0.8);
    }
    .ab-cont .img a:hover .text{
        opacity: 1;
    }
    .ab-cont .img a:hover img{
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }
    .factory .ab-cont .right a:hover{
        opacity: 0.8;
    }
    .contact form .btn:hover{
        background: #fff;
        color: #ef8000!important;
        border: 1px solid #fff;
    }
    .newscont a:hover{
        box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.2);
    }
    .newscont a:hover .right .text b{
        color: #f18506;
    }
    .pro .list a:hover .img{
        border: 1px solid #f18506;
    }
    .pro .list a:hover .img img{
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }
    .infocont .class a:hover{
        opacity: 0.8;
    }
    .newsP a:hover .img img{
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }
    .newsP a:hover .img{
        border: 1px solid #f18506;
    }
    .footer a:hover{
        color: #ef8000;
    }
    .news-page a:hover em{
        color: #ef8000;
    }

}
@media screen and (max-width: 1800px){
    .advan .slideBox .bd img{
        width: 5rem;
    }
    .factory .ab-cont .right{
        padding-top: 0;
    }
    .about-info .list{
      margin: 0.7rem 0 1rem;
      display: flex;
      align-items: center;
    }
    .about-info .list .shu span{
      font-size: 0.6rem;
    }
  	.about-info .list .shu span:nth-child(2) {
      font-size: 0.4rem;
    }
}

@media screen and (max-width: 1650px){
    .home-about .right .box{
        margin: 0;
        width: 33%;
        float: left;
    }
    .home-product .home-nav{
        width: 100%;
    }
  	.banner .box > p{
  		font-size: 0.5rem;
  	}
  	.about-info .list .shu {
        float: left;
      	min-width: auto;
        width: 1.8rem;
    }
}

@media screen and (max-width: 1600px){
    .banner .index-class,
    .banner-img .index-class{
        width: 19%;
        margin-right: 1%;
    }
    .home-about .left .cont .text{
        max-height: 2.9rem;
    }
}

@media screen and (max-width: 1500px){
    .home-about .right{
        height: auto;
    }
    .home-about .right .text{
        position: static;
    }
    .home-about .right .box{
        padding: 0.4rem 0;
    }
    .home-product .home-nav{
        float: left;
    }
    .home-product .home-nav .pro-nav a{
        margin-left: 0.15rem;
    }
    .advan .slideBox .bd img{
        width: 3.5rem;
    }
    .common-one .right a{
        margin-left: 0.4rem;
    }
    .common-one .right{
        padding-right: 0;
    }
    .factory .ab-cont .right > b{
        padding-bottom: 0.1rem;
        margin-bottom: 0.1rem;
    }
    .factory .ab-cont .right .cont{
        max-height: 1.38rem;
    }
    .contact .tact{
        padding: 0.5rem 0 0 0.5rem;
    }
    .contact .form{
        padding-top: 0.5rem;
    }
    .banner .box > p{
        font-size: 0.3rem;
    }
    .banner .box .text{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }
}

/* 1200 */
@media screen and (max-width: 1200px) {
    /* home */
    nav#menu{
        display: initial;
    }
    .home-about{
        padding: 1rem 0.5rem;
        height: 7rem;
    }
    .home-about .right .box .count{
        font-size: 0.3rem;
        width: auto;
    }
    .home-about .right .box span:nth-child(2){
        font-size: 0.26rem;
    }
    .home-about .left a{
        height: 0.5rem;
        line-height: 0.5rem;
        border-radius: 0.1rem;
    }
    .home-about .left .cont > b{
        font-size: 0.26rem!important;
    }
    .container{
        padding: 0 0.5rem;
    }
    .home-product{
        padding: 1rem 0;
    }
    .home-product .title{
        padding-bottom: 0.5rem;
    }
    .home-product .home-nav .pro-nav a:last-child{
        display: none;
    }
    .picScroll-top .bd ul li .title a{
        width: 70%;
    }
    .common-one .right a{
        margin-left: 0.3rem;
    }
    .common-one .right a:first-child{
        margin-left: 0;
    }
    .banner-slide{
        margin-top: 0;
    }
    .factory .ab-cont .right > b{
        margin-bottom: 0.15rem;
        padding-bottom: 0.15rem;
    }
    .factory .ab-cont .right a{
        margin-top: 0.3rem;
    }
    .pro .list{
        width: 33%;
    }
    .infocont .class a{
        font-size: 0.16rem;
    }
    .contact .form{
        padding-left: 0.5rem;
    }
    .newscont a{
        padding-right: 1rem;
        padding-left: 0.5rem;
    }
    .newscont .img{
        padding: 0 0.5rem 0 0.3rem;
    }
    .banner .box > b{
        font-size: 0.3rem;
    }
    .banner .box > p{
        margin: 0.05rem 0;
    }
  .about-info .list{
  	display:block;
    margin-bottom: 0.5rem;
  }
  .about-info .list .shu {
    min-width: auto;
    width: 100%;
    text-align: center;
}
  .about-info .list .text {
    height: 0.8rem;
    text-align: center;
    width: 100%;
    line-height: 0.8rem;
}
  .about-info .list img {
    float: right;
    margin-top: 0.16rem;
    width: auto;
    float: none;
    margin: 0.16rem auto 0;
    display: block;
}
    
}

/* 992 */
@media screen and (max-width: 992px) {
    .home-about .left .cont .text{
        max-height: 2.4rem;
    }
    .home-about{
        height: 6.5rem;
    }
    .home-product .home-nav .pro-nav a:nth-child(n+5){
        display: none;
    }
    .home-product .top b{
        font-size: 0.3rem;
    }
    .home-about .right .box .count{
        font-size: 0.26rem;
    }
    .home-about .left .line{
        margin: 0.15rem 0;
    }
    .foot-add .list:nth-child(2){
        display: none;
    }
    .foot-add .list:nth-child(3){
        padding-left: 0.1rem;
    }
    .foot-add .list{
        width: 50%;
    }
    .ab-cont .img a{
        width: 32.5%;
    }
    .ab-cont .img a:before{
        background: rgba(239, 128, 0, 0.55);
    }
    .ab-cont .img a .text{
        opacity: 1;
        font-size: 0.2rem;
    }
    .ab-cont .img a .text span{
        height: 0.4rem;
        line-height: 0.4rem;
    }
    .common-one .right{
        display: none;
    }
    .common-one .mb-right{
        display: block!important;
        float: right;
        color: #fff;
        position: relative;
        z-index: 1;
    }
    .common-one .mb-right .layui-form-select .layui-input{
        background: transparent;
        border: 0;
        box-shadow: inset 0px 0px 5px 1px #fff;
    }
    .common-one .mb-right .layui-form-select .layui-edge{
        border-top-color: #fff;
    }
    .common-one .mb-right .layui-form-select dl{
        padding: 0;
    }
    .common-one .mb-right .layui-form-select dl dd{
        color: #333;
    }
    .layui-form-select dl dd.layui-this{
        background: #f18606;
        color: #fff!important;
    }
    .about-info .list img{
        display: none;
    }
    .about-info .list .mb-img{
        display: inline-block!important;
        float: none;
    }
    .about-info .list .shu{
        width: 100%;
        line-height: normal;
        margin-top: 0.1rem;
    }
    .about-info .list{
        text-align: center;
        width: 33%;
        float: left;
        margin: 0.2rem 0 0;
    }
    .about-info .list .text{
        width: 100%;
        font-size: 0.2rem;
        color: #f08303;
        margin-top: 0.27rem;
    }
    .ab-cont .left > b{
        font-size: 0.3rem;
        border-bottom: 1px solid #f48b0d;
        padding-bottom: 0.2rem;
    }
    .factory .ab-cont .right > b{
        display: none;
    }
    .about-info .list .text:before{
        bottom: 0;
        top: 0;
    }
    .ab-cont .left{
        width: 100%;
        border-right: 0;
        float: none;
    }
    .about-info{
        padding-left: 0;
        overflow: hidden;
        border-bottom: 1px solid #fad9b2;
        position: relative;
    }
    .ab-cont .img{
        margin-top: 0.5rem;
    }
    .ab-cont{
        padding: 0.5rem 0;
    }
    .about-info .list .shu span{
        font-size: 0.5rem;
    }
    .factory .ab-cont .left{
        width: 100%;
    }
    .factory .ab-cont .right{
        width: 100%;
        padding-left: 0;
        padding-top: 0.3rem;
    }
    .factory .ab-cont .right .cont{
        max-height: none;
    }
    .pro .list{
        width: 50%;
    }
    .infocont .class a{
        width: 32.5%;
    }
    .infocont .class a:nth-child(3n):after{
        display: none;
    }
    .contact .form{
        width: 100%;
    }
    .contact .tact{
        width: 100%;
        padding-bottom: 0.5rem;
    }
    .newscont a{
        padding-right: 0.5rem;
        padding-left: 0.3rem;
    }
    .news-page a{
        width: 100%;
    }
    .news-page a:last-child{
        text-align: left;
    }

}

/* 768 */
@media screen and (max-width: 768px) {
    html {
        font-size: 55.2px;
        width: 100%;
    }
    body {
        font-size: 0.3rem !important;
        font-size: 16px !important;
        overflow-x: hidden;
    }
  	.contact .tact{
    	padding: 0.5rem;
  	}
    .home-hotpro{
        padding-right: 0;
    }
    .home-hotpro .top{
        right: 0;
    }
    .home-about{
        height: auto;
    }
    .home-about .left{
        float: none;
        width: 100%;
    }
    .home-about .right{
        float: none;
        width: 100%;
    }
    .home-about .left .cont{
        position: static;
    }
    .home-about .left .cont .text{
        max-height: 110px;
        font-size: 0.26rem;
        line-height: 0.4rem;
    }
    .home-about{
        padding: 0.5rem 15px;
    }
    .home-about .left .cont > b{
        font-size: 0.28rem!important;
    }
    .home-about .left a{
        height: 0.7rem;
        line-height: 0.7rem;
        width: 100%;
        margin: 0.5rem 0;
        font-size: 0.26rem;
        border: 0;
        background: #ef8200;
        color: #fff;
    }
    .home-about .left .line{
        margin: 0.3rem 0;
    }
    .home-about .right .box .count{
        font-size: 0.28rem;
    }
    .home-about .right .box em{
        font-size: 0.26rem;
    }
    .container{
        padding: 0 15px;
    }
    .home-product{
        padding: 0.5rem 0;
    }
    .home-product .top b{
        position: relative;
        font-size: 0.28rem;
    }
    .home-product .home-nav .pro-nav a{
        font-size: 0.26rem;
    }
    .home-product .arrow{
        display: none;
    }
    .home-hotpro .text > p{
        font-size: 0.28rem;
    }
    .home-hotpro .text .star i{
        font-size: 0.26rem;
    }
    .home-hotpro .text .bottom{
        font-size: 0.26rem;
    }
    .picScroll-top .bd ul li .title{
        font-size: 0.28rem;
    }
    .picScroll-top .bd ul li .title a{
        width: 100%;
        float: none;
    }
    .picScroll-top .bd ul li .title .date{
        text-align: left;
        margin-top: 0.1rem;
        font-size: 0.26rem;
    }
    .picScroll-top .bd ul li .detail{
        font-size: 0.26rem;
    }
    .home-news{
        padding: 0.5rem 0;
    }
    .picScroll-top .hd .prev, .picScroll-top .hd .next{
        width: 0.6rem;
        height: 0.6rem;
    }
    .picScroll-top .hd i{
        font-size: 0.28rem;
        top: 0;
        line-height: 0.6rem;
    }
    .picScroll-top .hd .next{
        margin-top: 0.05rem;
    }
    .advan{
        margin: 0.5rem 0;
    }
    .advan .title{
        font-size: 0.28rem;
    }
    .advan .slideBox{
        background: transparent!important;
    }
    .advan .slideBox .bd img{
        width: 100%;
    }
    .foot-nav{
        display: none;
    }
    .copy, .copy p{
        text-align: center!important;
        float: none!important;
        font-size: 0.28rem;
    }
    .foot-add .list{
        width: 100%;
        padding: 0.4rem 0;
    }
    .foot-add .list:nth-child(3){
        border-top: 1px solid #453016;
    }
    .foot-add .list img{
        height: 0.35rem;
    }
    .foot-add .list p{
        font-size: 0.25rem;
    }
    .common-one .left > span{
        display: none;
    }
    .common-one .left{
        font-size: 0.25rem;
    }
    .common-one .mb-right .layui-form-select .layui-input{
        font-size: 0.25rem;
    }
    .common-one .mb-right .layui-form-select dl dd{
        font-size: 0.25rem;
    }
    .ab-cont .info{
        position: relative;
    }
    .ab-cont .img a{
        width: 100%;
        margin-bottom: 0.1rem;
    }
    .ab-cont .img a .text{
        font-size: 0.3rem;
    }
    .ab-cont .img a .text span{
        height: 0.5rem;
        line-height: 0.5rem;
        font-size: 0.25rem;
    }
    .ab-cont .left{
        padding-right: 0;
    }
    .ab-cont .left > b{
        width: 100%;
        font-weight: bold;
    }
    .ab-cont .left .cont{
        font-size: 0.25rem;
        line-height: 0.4rem;
    }
    .about-info .list .mb-img{
        height: 0.55rem;
    }
    .about-info .list .shu{
        height: 0.8rem;
        line-height: 0.8rem;
    }
    .about-info .list .text{
        font-size: 0.25rem;
    }
    .factory .ab-cont .right .cont{
        line-height: 0.4rem;
    }
    .factory .ab-cont .right a{
        width: 100%;
    }
    .contact form input,
    .contact form textarea{
        font-size: 0.25rem;
    }
    .contact form input::-webkit-input-placeholder,
    .contact form textarea::-webkit-input-placeholder{
        font-size: 0.25rem;
    }
    .contact form .btn{
        font-size: 0.25rem;
    }
    .contact .list p{
        font-size: 0.25rem;
    }
    .newscont .right .text em{
        height: auto;
        font-size: 0.25rem;
    }
    .newscont .right .text b{
        height: auto;
        -webkit-line-clamp: 2;
    }
    .newscont .img img{
        height: 2.46rem;
    }
    .newscont .img{
        padding-left: 0.2rem;
    }
    .newsinfo .title{
        font-size: 0.3rem;
        text-align: left;
    }
    .newsinfo .title i{
        font-size: 0.24rem;
        margin-top: 0.2rem;
    }
    .infocont{
        font-size: 0.25rem;
        line-height: 0.4rem;
    }
    .news-page a{
        display: flex;
        align-items: center;
        margin-bottom: 0.2rem;
    }
    .news-page a em{
        height: auto;
        top: 0;
    }
    .news-page a span{
        font-size: 0.25rem;
    }
    .newsProduct{
        margin-top: 1rem;
    }
    .newsProduct .container > b{
        padding-bottom: 0.2rem;
        font-size: 0.3rem;
    }
    .newsP a .text{
        font-size: 0.3rem;
    }
    .infocont .class a img{
        height: 0.6rem;;
    }
    .infocont .class a{
        font-size: 0.24rem;
        float: left;
    }
    .pro .list .text{
        font-size: 0.3rem;
    }
    .banner .box{
        width: 80%;
      	left: 15px;
      	bottom: 25%;
    }
    .banner .box > b,
    .banner .box > p{
        font-size: 0.25rem;
    }
    .banner .box .text{
        font-size: 0.22rem;
    }
    
}

/*20191022修改*/
.menu ul li:nth-child(3){
	display: none;
}
.menu ul li {
    padding: 0 0.45rem;
}
#mm-2>ul li:nth-child(2),
#mm-2>ul li:nth-child(3){
	display: none;
}
.home-about .left a{
  	float: left;
    margin-right: 15px;
  }
.home-about .left .cont > img{
  	float: left;
  	margin-top: 15px;
  	width: 124px;
  	display: none!important;
  }
.ab-cont .img2 a:before,
.ab-cont .img2 a:after{
  content:none;
}
.ab-cont .img2 a {
    width:24%;
}
@media (max-width:1200px){
.ab-cont .img2 a {
    width:49%;
}
}
@media (max-width: 992px) {
 .home-about .left .cont > img{
    width: 80px;
    display: block;
    float: none;
    margin: 10px auto;
   margin-bottom:0px;
  }
  .home-about .left a{
   margin-right: 0px;
  }
@media (max-width:768px){
.ab-cont .img2 a {
    width:100%;
}