html {
  position: relative;
  overflow-x: hidden !important;
}

body {
  font-family: sans-serif;
}

a, a:hover {
  text-decoration: none;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.background {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.background:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(30deg, rgba(255, 255, 255, 0.6) 0%, #0E5DC4 100%);
  opacity: 0.9;
}
.background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.item-bg {

    /* width: 0px; */
    height: 0px !important;
    position: absolute;
    /* top: 30px; */
    /* background: #fff; */
    /* border-radius: 10px; */
    /* box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25); */
    opacity: 0;
    transition: all .3s;
    left: 0px;
}
.item-bg.active {
  left: 0;
  top: 0;
  opacity: 1;
}

.news-slider {
  z-index: 2;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;

}
@media screen and (max-width: 1300px) {
  .news-slider {
    max-width: 1000px;
  }
}
@media screen and (max-width: 576px) {
  .news-slider {
    margin-top: 45px;
  }
}
.news-slider__wrp {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.news-slider__item {
  width: 400px;
  flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  .news-slider__item {
    width: 340px;
  }
}
.news-slider__item.swiper-slide {
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}
.news-slider__item.swiper-slide-active, .news-slider__item.swiper-slide-prev, .news-slider__item.swiper-slide-next {
  opacity: 1;
  pointer-events: auto;
}
.news-slider__ctr {
      top: -100px;
  position: relative;
  z-index: 12;
}
.news-slider__arrow {
  background: #fff;
  border: none;
  display: inline-flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 12;
  cursor: pointer;
  outline: none !important;
}
.news-slider__arrow:focus {
  outline: none !important;
}
.news-slider__arrow .icon-font {
  display: inline-flex;
}
.news-slider__arrow.news-slider-prev {
  left: 15px;
  transform: translateY(-50%);
}
.news-slider__arrow.news-slider-next {
  right: 15px;
  transform: translateY(-50%);
}
.news-slider__pagination {
  text-align: center;
  margin-top: 50px;
}
.news-slider__pagination .swiper-pagination-bullet {
  width: 13px;
  height: 10px;
  display: inline-block;
  background: #fff;
  opacity: .2;
  margin: 0 5px;
  border-radius: 20px;
  transition: opacity .5s, background-color .5s, width .5s;
  transition-delay: .5s, .5s, 0s;
}
.news-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffffff;
  width: 100px;
  transition-delay: 0s;
}
@media screen and (max-width: 576px) {
  .news-slider__pagination .swiper-pagination-bullet-active {
    width: 70px;
  }
}
.news__item {
  padding: 10px;
  color: #fff;

  display: block;
  transition: all .3s;
}
@media screen and (min-width: 800px) {
  .news__item:hover {
    color: #222222;
    transition-delay: .1s;
  }
  .news__item:hover .news-date, .news__item:hover .news__title, .news__item:hover .news__txt {
    opacity: 1;
    transition-delay: .1s;
  }
  .news__item:hover .news__img {
    box-shadow: none;
  }
}
.news__item.active {
  color: #222222;
}
.news__item.active .news-date, .news__item.active .news__title, .news__item.active .news__txt {
  opacity: 1;
}
.news__item.active .news__img {
  box-shadow: none;
}
@media screen and (max-width: 992px) {
  .news__item {
    padding: 30px;
  }
}
@media screen and (max-width: 576px) {
  .news__item {
    padding: 20px;
  }
}
.news-date {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid;
  display: inline-block;
  opacity: .7;
  transition: opacity .3s;
}
@media screen and (max-width: 576px) {
  .news-date {
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    padding-bottom: 0;
  }
}
.news-date__title {
  display: block;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 500;
}
@media screen and (max-width: 576px) {
  .news-date__title {
    margin-right: 10px;
  }
}
.news-date__txt {
  font-size: 16px;
}
.news__title {
  font-size: 25px;
  font-weight: 500;
  opacity: .7;
  margin-top: 10px;
  margin-bottom: 15px;
  transition: opacity .3s;
}
@media screen and (max-width: 576px) {
  .news__title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.news__txt {
  margin: 10px 0;
  line-height: 1.6em;
  font-size: 15px;
  opacity: .7;
  transition: opacity .3s;
}
.news__img {

  box-shadow: 0 2px 2px 3px rgba(208, 205, 205, 0.17);
  /* height: 200px; */
  margin-top: 30px;
  width: 100%;
  transition: all .3s;
  transform-origin: 0% 0%;
}
@media screen and (max-width: 576px) {
  .news__img {
    height: 180px;
    margin-top: 20px;
  }
}
.news__img img {
  max-width: 100%;

  /* height: 100%; */
  width: 100%;
}
#icon{
	display:none;}


.product_categories, .brand_news{
  margin-bottom:25px;
}
 .item_news{
   display: block;
   padding: 5px;
   box-sizing: border-box;
   position: relative;
 }
 .item_news .news_title {
   text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: absolute;
    display: block;
    bottom: 0;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: rgba(0,0,0,0.4);
    color: #fff;
    left: 0;
    right: 0;
    margin: 0 5px 5px;
}
/* .index_title{
  background:#f3f3f3;
} */
.index_title h2{
  text-align: center;
   margin: 25px auto;
line-height: 45px;
font-size: 26px;

 }
 .brand_newscontent{
   margin-top:15px;
 }
 .dl-contact {
     color: #cacaca;
     margin-bottom: 11px;
 }
.dl-contact dt {
    float: left;
    clear: left;
    font-size: 16px;
    text-align: center;
    width: 20px;
   line-height: 1.57142857;
   font-weight: 500;
}
.dl-contact dd {
    margin-left: 45px;
}
.social-box {
    padding-top: 29px;
}
.social-box a {
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 45px;
    background: rgb(70, 70, 70);
    color: #fff;
    text-align: center;
    line-height: 45px;
    font-size: 16px;
    margin: 0 10px 10px 0;
}
#met-weixin {
    cursor: pointer;
}
.met-weixin-img img {
    max-width: 160px;
}
.foot{
  background: rgb(61,63,62);
overflow: hidden;
padding: 30px 0 10px 0;
color: #a2a2a2;
line-height: 2;
}

.dl-news {
    margin-bottom: 11px;
    min-height: 50px;
}
.dl-news dt {
    float: left;
    clear: left;
    width: 50px;
}
.met-footer a {
    color: #aaa;
}
.dl-news dd {
    margin-left: 60px;
}
.dl-news dd i {
    display: block;
    font-style: normal;
}
.foot h4 {
    color: #dfdfdf;
    padding-bottom: 5px;
    font-size:18px;
}
.foot_nav .breadcrumb {
    padding: 0px;
    margin-bottom: 0px;
    list-style: none;
    background-color: transparent;
    border-radius: 3px;
}
.foot_nav{
  position: relative;
}
.foot_nav p {
    margin-bottom: 0px;
}
.met-langlist {
    display: inline-block;
    position: absolute;
  right: 16%;
  top: 0;
}
.foot_nav button.btn-outline.btn-default {
    border: none;
    background: rgb(61,63,62);
    color: #76838f;
    background-color: transparent;
}
.banner{
  margin-top:125px;
}
.nei_nav{
  background:#DDD;
  margin-top:125px;

}
.nei_nav .breadcrumb{
  line-height: 50px;
    list-style: none;
    border-radius: 4px
    padding:0px;
    background-color: transparent;
    margin-bottom:0px;

}
.media-object{
  width:250px;
}
.media_item{

  padding-bottom:25px;
}
.met-bar {
    background: #fff;
    border-radius: 1px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: -1px 1px 6px 2px rgba(0,0,0,.05);
    padding: 20px 15px;

}
.input-search {
    position: relative;
}
.input-search-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 10px;
    background: 0 0;
    border: none;
    border-radius: 0 200px 200px 0;
}
.met-bar .sidebar-news-list .list-group li a {
    color: #666;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}
.met-bar  h3 {
    color: #fb7d00;
    font-size: 20px;
}
ul, ol, li {
    list-style: none;
}
.column.list-icons {
    padding: 0;
}
.list-icons li{
  line-height: 35px;
  border-bottom:1px dotted #DDD;
}
.met-news-list, .met-download-list{
  ackground: #fff;
    border-radius: 1px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: -1px 1px 6px 2px rgba(0,0,0,.05);
    padding: 20px 15px;

}
.bottom_pagination{
  text-align:right;
  margin-top:35px;
  margin-right:25px;
}
.met-news-list ul li {
  border-bottom: 1px solid #DDD;
    list-style: none;
    padding-top: 20px;
}
.met-news-list ul {
  margin:0px;
  padding:0px;
}
.carousel-inner>.item>a>img, .carousel-inner>.item>img {
    background-size: cover !important;
    line-height: 1;
}
.carousel-inner>.item>img, .home-slide .carousel-inner>.item>a>img {
    width: 100%;
}
.news_line{
  padding-bottom: 15px;
  border-bottom: 1px dotted #DDD;
  margin-bottom: 15px;
}
.met-pag{
  margin-top:15px;
  border-top:1px solid #DDD;
  padding-top:15px;
  padding-bottom:55px;
}
.met-pag_left{

  border-radius: 5%;
  float: left;
  padding: 6px 15px;
  margin-left: -1px;
  line-height: 1.57142857;
  color: #76838f;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid #e4eaec;
}

.met-pag_right{

border-radius: 5%;
  float: right;
  padding: 6px 15px;
  margin-left: -1px;
  line-height: 1.57142857;
  color: #76838f;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid #e4eaec;
}

ul{
  padding:0px;
  margin:0px;
}
.met-download .met-download-list a.btn {
    margin-right: 10px;
}
.btn-outline.btn-primary {
      top: 15px;
  position: absolute;
color: #fb7d00;
background-color: transparent;
border-color: #fb7d00;
right: 5px;
}
.met-download-list i {
     font-size: 38px;
    color: #a3afb7;
    padding-top:5px;
}
.met-download .met-download-list .list-group-item {
    padding: 30px 0px;
    border-bottom: 1px solid #ddd;
    background: transparent;
}
.met-download-list h4 {
  margin: 0px;
color: #2a333c;
font-size: 16px;
padding: 0px;
}
.video_text{
  text-align:center;
  font-size:48px;
  margin:15px auto;
}

.met-download-list .list-group-item{

  border-bottom:1px dotted #DDD;
  border-top:none;
  border-left:none;
  border-right:none;
  background-color: #fff0;
}
.caption h3{
  font-size:14px;
  line-height: 30px;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #666;
display: block;

white-space: nowrap;
width: 100%;
}

/*products main*/
.page-title{margin-bottom:15px;  padding-bottom:5px; line-height:34px; border-bottom:1px solid #e3e3e3}

.page-title em,.page-title2 em{ font-family: 'Aria';font-size:19px;display:inline-block;text-transform:uppercase; line-height:20px;background:#fff;color:#444;}
.page-title em{ background:none}
.products{ margin-top:5px}
.pro_table_de{ line-height:24px; overflow:hidden; max-height:72px; font-size:13px; color:#999}
.products .pro_img{ padding-left:0}
.products .pro_img>img{max-width:100%;max-height:100%;height:auto;width:100%;border:1px solid #eee;}
.products .pro_img .pro_simples{margin-top:10px;}
.products .pro_img .pro_simples img{max-width:76px;margin:4px 9px 0 0;border:1px solid #ebebeb;}
.products .pro_img .pro_simples img:last-child{ margin-right:0}
.products .pro_table{float:right; padding-right:0}
.pro_table h1{font-size:17px;color:#444;display:block;text-transform:capitalize;margin:0 0 14px 0; padding:0; line-height:22px; }
.pro_table ul{margin-top:10px;}
.pro_table ul li{margin:5px 0;font-size:13px; vertical-align:middle;text-transform:capitalize;}
.pro_table ul li p{display:inline-block;margin:0px;color:#999;font-size:13px; vertical-align:middle;padding-bottom:3px;}
.pro_table .pro_more{display:inline-block;background:#f08200;font-size:13px;color:#fff;text-transform:uppercase;padding:7px 20px;margin-top:40px;border-radius:2px;}
.pro_table .pro_more:hover{filter:alpha(opacity=80);-moz-opacity:0.8;opacity:0.8;text-decoration:none;}

.mostBox{margin-top:30px;}
.mostBox>em{color:#547ac0;text-transform:uppercase;display:block;font-size:20px;margin-bottom:30px;padding-bottom:5px;border-bottom:2px solid #bbcae6;}
.mostBox>div.mostBox-detail{line-height:20px;font-size:13px;padding:0px;}
.mostBox>div.mostBox-detail img{max-width:100%;height:auto;width:auto;}

.relatedTags{width:100%;background:#FFFFFF;line-height:20px;margin:10px 0 20px;padding:10px;overflow:hidden;}
.relatedTags p{float:left;overflow:hidden;margin:0;margin-right:10px;font-size:14px;}
@media only screen and (max-width: 768px) {.relatedTags p{width:100%;}.products .pro_table{padding-left:0; margin-top:15px}.products .pro_img{padding-right:0}.con-left{padding:0}}

.re_main{width:85%;display:block;float:left;}
.re_main a{margin-right:15px;color:#4c4c4c;text-transform:capitalize;}
.relatedTags a:hover{color:#f08200;text-decoration:underline;}
.reProTitle{width:100%;border-bottom:2px solid #1996e6;}
.reProTitle p{color:#1a1a1a;font-weight:bold;font-size:16px;margin-top:30px;}

.onlineshop ul li {
  float:left;
  padding:5px;
}

.number_content{
  margin: 15px 0px;
  margin-bototm: 15px;
  position: relative;
  /* padding: 60px 0; */

}
.bg_bg{
  position: relative;
}

/* Numbers */
.number_content ul.row {
    margin: 0 -10px;
}
.fudong{
  position: absolute;
  top:45px;
  left:0px;
  right:0px;
}
.btn-outline.btn-primarya {
    left: 0px;
    /* top: 15px; */
    /* position: fixed; */
    color: #fb7d00;
    margin-top:5px;
    background-color: transparent;
    border-color: #fb7d00;
    right: 5px;
}

#counterBgdx{opacity:0.5;position:absolute;top:0px;left:0px;width:100%;height:100%;}
.number_content ul.row{margin:0 -10px;}
.number_content ul li{list-style:none;text-align:center;width:25%;float:left;padding:20px 10px 0;position:relative;}
.number_content ul li .icon{ margin-bottom:30px;}
.number_content ul li .number{ font-size:56px; color:#ffffff; line-height:60px;}
.number_content ul li .number2 .unit{ font-size:36px; color:#fff;line-height:50px;}
.number_content ul li .title{ font-size:14px; color:#b2b2b2; text-transform:uppercase; margin-top:10px; position:relative; display:inline-block;}
@media only screen and (max-width: 1200px) {
	.number_content ul li .icon{margin-bottom:20px;}
	.number_content ul li .number{font-size:48px;}
}
@media only screen and (max-width: 840px) {
	.number_content{padding:60px 0;}
	.number_content ul li .number{font-size: 32px; line-height:34px}
	.number_content ul li .number2 .unit{font-size:24px; line-height:24px;}
}
@media only screen and (max-width: 768px) {
	.number_content{padding:40px 0;}
	.number_content ul li{ float:left; width:25%;text-align:center;padding-top:0;}
	.number_content ul li .number{ font-size:30px;}
	.number_content ul li .number2 .unit{ font-size:18px; line-height:30px;}
	.number_content ul li .title{font-size:12px;}
	.number_content ul li:before{display:none;}
}
@media only screen and (max-width: 550px) {
	.number_content{padding:40px 0 10px 0;}
	.number_content ul li{ float:left; width:50%; margin-bottom:30px;}
	.number_content ul li .title:before{ display:none}
	.number_content ul li .title:after{display:none }
}
.zeng{
  height:45px;
   background:#3c3c3c;
}
.zeng ul{
  float:right;
}
.zeng ul li {
  float:left;
  margin-left:10px;
  margin-top:10px;
}
.zeng ul li a{
  display: inline-block;
  background: #FFF;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  padding: 2px 0;
}
.dropdown-menu {
  min-width: 100%;
}
@media (min-width: 1024px){
nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li > a {
    padding: 10px 5px;
    border-bottom: solid 1px #eee;
    color: #6f6f6f;
    text-align: center;
}
/* nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li > a {
    padding: 0px 0px;
    border-bottom: none;
    line-height: 30px;
    color: #6f6f6f;
} */


}

.star .form-item label i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 16px;
    color: #dadada;
}
.star .form-item label  {
    position: relative;

}
.message_content .form-item {
    margin-bottom: 35px;
}
.footer-form input[type=password] {
  display: block;
  border: none;
  border-bottom: 1px solid #c0c1c3;
  background: transparent;
  width: 120%;
  padding: 2px 0 5px 3em;
  outline: none;
  color: #2b2b2b;
}
.footer-form input[type=text] {
    display: block;
    border: none;
    border-bottom: 1px solid #c0c1c3;
    background: transparent;
    width: 120%;
    padding: 2px 0 5px 3em;
    outline: none;
    color: #2b2b2b;
}
.message_content .form-item label {
    display: block;
    width: 80%;
    position: relative;
}
.message_content .form-item label i {
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 28px;
    color: #dadada;
}
.footer-form input[type=text]:focus {
  border-bottom-color: #0a75b0;
}
.footer-form input[type=text]:focus + i {
  color: #0a75b0;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #fb7d00;
    border-color: #fb7d00;
}
.pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #3d3d3d;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.message_content .form-item .btn {

    text-transform: uppercase;
    color: #fff;
    border-radius: 10em;
    background: #fb7d00;
    padding: 10px 20px;
}
.message_content{
  padding:25px 0;
  background:#f1f1f1;
}

a.weixin {
    position: relative;
}

.weixin img.qrcode {
  position: absolute;
z-index: 99;
top: -100px;
right: -28px;
width: 7.5rem;
max-width: none;
height: 7.5rem;
transform: scale(0);
transform-origin: top right;
opacity: 0;
border: 1px solid #fb7d00;
border-radius: .25rem;
-webkit-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;

}

.weixin:hover img.qrcode {
    transform: scale(1);
    opacity: 1;
}
.about_content, .product_content, .download_content, .news_content{
  padding-top:25px;
}
 .modal-backdrop{
      position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.message_bg{
  padding-top: 25px;
  background: #dddddd52;
}
.news_content .panel-default>.panel-heading {
    color: #333;
    background-color: #ffffff;
    border-color: #fff;
}
.news_content .panel-default {
    border-color: #fff;
}


/*会员登录*/

.logo_login {
  width: 150px;
  margin-top: 15px;

}
.login_content_box{
  /* border:1px solid #DDD; */
    box-shadow: 1px 1px 13px 1px #bbb9b9a3;
    margin:55px auto;
    background:#FFF;
    padding:0px;
}
.star , .star_pic{
  padding:0px;
  margin:0px;
}
.login_content_box .form-item .btn {
    text-transform: uppercase;
    color: #fff;
    border-radius: 10em;
    background: #fb7d00;
    padding: 10px 20px;
    margin-top:25px;
}
.login_content_box .form-item .registered {
    text-transform: uppercase;
    color: #fff;
    border-radius: 10em;
    background: #a0a0a0;
    padding: 10px 20px;
}
.login_content_box h3 {
    padding-top: 105px;
    font-size: 24px;
    /* font-size: 30px; */
    line-height: 36px;
}
.zhao{
  padding-top: 15px;
    padding-bottom: 15px;
    font-size: 12px;
    color: #bdbdbd;
}
.protocol{


  margin-top:10px;
  font-size:12px;
}
.return{
  margin-top: 45px;
  font-size: 12px;
  /* padding-right: 25px; */
  clear: both;
  float: right;
  bottom: 0px;
  position: relative;
  bottom: 0px
   float:right;
  color: #bdbdbd;
}


@media (max-width: 992px){
.banner {
    margin-top: 100px;
}
.nei_nav{
  margin-top:100px;
}
.video_text{
  margin-top:55px;
}

}
