
html, body {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  background-color:transparent;
}
html,body,header,section,footer,div,ul,ol,li,img,a,span,em,del,legend,center,strong,var,fieldset,form,label,dl,dt,dd,cite,input,hr,time,mark,code,figcaption,figure,textarea,h1,h2,h3,h4,h5,h6,p {
  margin:0;
  border:0;
  padding:0;
  font-style:normal;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

 
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  
}
a {
  text-decoration:none;
  color:#333;
  
}
a:hover {
  text-decoration:none;
}
ul, ol, li {
  list-style-type:none;
  vertical-align:0
}
/* 设置滚动条的样式*/
  ::-webkit-scrollbar {
  width:10px;
  height:10px;
}
/* 滚动槽*/
  ::-webkit-scrollbar-track {
  -webkit-box-shadow:inset006pxrgba(0,0,0,0.3);
  border-radius:10px;
}
/* 滚动条滑块*/
  ::-webkit-scrollbar-thumb {
  border-radius:10px;
  background:rgba(0,0,0,0.6);
  -webkit-box-shadow:inset006pxrgba(0,0,0,0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
  background:rgba(0,0,0,0.6);
}
@media (max-width: 992px) {
  }
/*顶部*/
.top {
  position: fixed;
  left:0;
  top:0;
  right:0;
  height:50px;
  z-index: 999999;
  background-color: rgba(255,255,255,0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  transition:all ease 0.5s;
}
.top .top-left {
   position: absolute;
   left:0;
   top:0;

}
.top-left-logo {
  padding:5px 150px;
  transition:all ease 0.5s;
  opacity: 0;
}
@media (max-width: 992px) {
  .top-left-logo {
    padding:5px 10px;
    transition:all ease 0.5s;
    opacity: 0;
  }
}
.top-left-logo-show {
  padding:5px 50px;
  transition:all ease 0.5s;
  opacity: 1;
}
@media (max-width: 992px) {
  .top-left-logo-show {
    padding:5px 10px;
    transition:all ease 0.5s;
    opacity: 1;
  }
}
.top-logo-img {
  position: relative;
  width:41px;
  padding-top:41px;
  height:0;
  display: inline-block;
}
.top-logo-text {
  display: inline-block;
  font-size: 30px;
  line-height: 41px;
  vertical-align:top;
  font-weight: 800;
  margin-left:10px;
  color:#D50021;
}
@media (max-width: 992px) {
  .top-logo-text {
    
    font-size: 20px;
     
  }
}
.top-logo-text span {
  color:#132848;
}
.top-logo-img .logo1 {
  position: absolute;
  top:0;
  width:100%;
  height:100%;
  transform-origin: center center;
  animation: rotateForever 20s linear infinite;
}
.top-logo-img .logo1 img {
  width:100%;
  height:100%;
}
@keyframes rotateForever {
  from {
  transform: rotate(0deg);
}
to {
  transform: rotate(360deg);
}
} .top-logo-img .logo2 {
  position: absolute;
  top:0;
  width:100%;
  height:100%;
}
.top-logo-img .logo2 img {
  width:100%;
  height:100%;
}
.top .top-right {
  float:right;
  text-align: right;
}
.top-right-nav {
  display: inline-block;
  margin-right:20px;
}

.bodys {
  transition:all ease 0.5s;
  filter: blur(0px);
}
.right-bg {
  position: fixed;
  left:0;
  top:0;
  right:0;
  bottom:0;
  background: rgba(0,0,0,0.3);
  z-index: 998;
  display: none;
}
.right {
  position: fixed;
  right:-810px;
  /*right:0px;*/
  top:0;
  bottom:0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  width:800px;
  max-width: 90%;
  transition:all ease 0.5s;
   
}
.right-bottom{
  border-top:1px solid #eee;
  position: absolute;
  bottom:0;
  left:70px;
  right:70px;
  height:80px;
}

.right-bottom .tel{
  display: inline-block;
  font-size: 18px;
 
  line-height: 80px;
  font-weight: 700;
}
.right-bottom .tel p{
  display: inline-block;
  
}
.right-bottom .tel span{
  margin-left:10px;
  margin-right:10px;
}
@media (max-width: 992px) {
  .right-bottom{
 
    height:100px;
  }
  .right-bottom .tel{
    line-height: 40px;
  
  }
}
.right-nav{
  position: absolute;
  top:80px;
  left:70px;
  bottom:160px;
  overflow-y: auto;
  width:190px;
  max-width: 100%;
  
  border-right: 1px solid #eee;


}
@media (max-width: 992px) {
  .right-nav{
    position: absolute;
    top:80px;
    left:70px;
    bottom:160px;
    overflow-y: auto;
    width:190px;
    max-width: 100%;
    
    border-right: 0px solid #eee;


  }
}
.right-nav ul{
  height:100%;
   
  display: flex;
  flex-direction:column;
   justify-content:space-around;

}
.right-nav ul li{
  position: relative;
  line-height: 30px;
  padding-left:15px;
}
 
.right-nav ul li a{
  display: inline-block;
  width:100%;
  position: relative;
  padding-left:0px;
  transition:all ease 0.5s;
  font-size: 18px;
}
.right-nav ul li:hover a{
  padding-left:5px;
}
.right-nav ul li a:after{
  content: '';
  position: absolute;
  width:8px;
  height:2px;
  background: red;
  top:50%;
  margin-top:3px;
  left:-15px;
  transform: rotate(-45deg);
  transition:all ease 0.5s;
}
.right-nav ul li:hover a:after{

  transform: rotate(45deg);
}
.right-nav ul li a:before{
  content: '';
  position: absolute;
  width:8px;
  height:2px;
  background: red;
  top:50%;
  margin-top:-3px;
  left:-15px;
  transform: rotate(45deg);
  transition:all ease 0.5s;

}
.right-nav ul li:hover a:before{
  transform: rotate(-45deg);
}

.right-right{
  position: absolute;
  top:80px;
  right:70px;
  bottom:160px;
   
  width:360px;
   
  
   
  display: flex;
  flex-direction:column;
  justify-content:space-around;
  
}
@media (max-width: 700px) {
  .right-right{
     display: none;


  }
}
.right-right .img{

  width:100%;
 height:300px;

}


/*面包按钮*/
  .sp_nav {
  width:20px;
  display: inline-block;
  position: relative;
  cursor:pointer;
  height:20px;
}
.sp_nav span {
  display:block;
  background:#333;
  width:100%;
  height:2px;
  position:absolute;
  left:0px;
  transition:all ease 0.35s
}
.sp_nav span:nth-of-type(1) {
  top:0px
}
.sp_nav span:nth-of-type(2) {
  top:45%
}
.sp_nav span:nth-of-type(3) {
  top:90%
}
.sp_nav_se span:nth-of-type(1) {
  top:45%;
  transform:rotate(45deg)
}
.sp_nav_se span:nth-of-type(2) {
  width:0
}
.sp_nav_se span:nth-of-type(3) {
  top:45%;
  transform:rotate(-45deg)
}
/*搜索图标*/
  .search-icon {
  cursor:pointer;
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 12px;
  transition:all ease 0.35s
}
.search-icon::before {
  content: "";
  transition:all ease 0.35s;
  position: absolute;
  top: 90%;
  left: 90%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 2px;
  background: #000;
  transform: rotate(40deg);
}
/*留言图标*/
  .message-icon {
  cursor:pointer;
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
}
.message-icon:after {
  content: '';
  position: absolute;
  left:0px;
  top:0;
  width:14px;
  height:20px;
  border-left:2px solid #000;
  border-top:2px solid #000;
  border-radius: 5px 0 0 5px;
}
.message-icon::before {
  content: '';
  position: absolute;
  transition:all ease 0.35s;
  right:-0px;
  bottom:0;
  width:20px;
  height:12px;
  border-right:2px solid #000;
  border-bottom:2px solid #000;
  border-radius:0 0 5px 5px;
}
.message-icon span {
  transition:all ease 0.35s;
  position: absolute;
  display: inline-block;
  width:12px;
  height:2px;
  background: #000;
  transform: rotate(-45deg);
  right:-2px;
  top:5px;
}
.message-icon span:after {
  content: '';
  position: absolute;
  width:2px;
  height:2px;
  background: #000;
  left:-4px;
  top:0px;
}

.lang-icon{
  display: inline-block;
  width:20px;
  height:20px;
  position: relative;

   
}
.lang-icon .in{
  position: absolute;
  left:2px;
  top:2px;
  font-size: 14px;
  
  line-height: 13px;
  font-weight: 800;
}
.lang-icon .out{
  position: absolute;
  right:-3px;
  bottom:-3px;
  font-size: 9px;
  
  line-height: 13px;
}
.lang-icon::after{
  content: '';
  position: absolute;
  width:22px;
  height:12px;
  left:-2px;
  top:-2px;
  border-top:2px solid #000;
  
  border-right:2px solid #000;
   
   
  border-radius: 5px 5px 0px 0px;
  
}
.lang-icon::before{
  content: '';
  position: absolute;
  width:12px;
  height:22px;
  left:-2px;
  top:-2px;
 
  border-left:2px solid #000;
   
  border-bottom:2px solid #000;
   
  border-radius: 5px 0px 0px 5px;
  
}


.home-icon {
  cursor:pointer;
  display: inline-block;
  width:20px;
  height:20px;
  position: relative;
}
.home-icon::after {
  content: '';
  position: absolute;
  width:20px;
  height:10px;
  bottom:0;
  left:0;
  border-left:2px solid #000;
  border-right:2px solid #000;
  border-bottom:2px solid #000;
  border-radius: 0 0 5px 5px;
}
.home-icon::before {
  content:'';
  width:18px;
  height:18px;
  position: absolute;
  left:1px;
  top:0px;
  transform: rotate(45deg);
  border-left:2px solid #000;
  border-top:2px solid #000;
  border-radius: 7px 0 0 0;
}
.home-icon span {
  display: inline-block;
  position: absolute;
  width:10px;
  height:10px;
  border:2px solid #000;
  left:5px;
  bottom:0;
  border-radius: 3px;
}
/*中间图片*/
  .home-img {
  width:100%;
  height:0;
  padding-top:110%;
  margin-bottom:30px;
  position: relative;
  transition: transform 0.3s ease;
}
.home-img-2{
  padding-top:50%;
}
.home-img-big {
  padding-top:60%;
}
@media (max-width: 992px) {
  .home-img-big {
    padding-top:110%;
  }
   .home-img {
  
  padding-top:140%;
  
}
  }
.home-img .img {
  width:100%;
  height:100%;
  position: absolute;
  left:0;
  top:0;
  transition:all ease 2.5s;
  background-position: center;
  background-size: 120% ;
  text-align: center;
}
@media (max-width: 992px) {
  .home-img-big .img {
   
   padding-top:30%;
  
  }
}
.ban-logo-img-box {
  margin-top:5%;
  display: inline-block;
  position: relative;
  width:600px;
  max-width: 50%;
  background: red;
}
.ban-logo-img {
  position: absolute;
  width:100%;
  padding-top:100%;
  height:0;
}
.ban-logo-img .logo1 {
  position: absolute;
  top:0;
  width:100%;
  height:100%;
  transform-origin: center center;
  animation: rotateForever 20s linear infinite;
}
.ban-logo-img .logo1 img {
  width:100%;
  height:100%;
}
@keyframes rotateForever {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
} .ban-logo-img .logo2 {
  position: absolute;
  top:0;
  width:100%;
  height:100%;
}
.ban-logo-img .logo2 img {
  width:100%;
  height:100%;
}
.home-img-now .img {
  background-size: 101% ;
}
.home-img .text {
  width:100%;
  position: absolute;
  text-align: center;
   
  bottom:50px;
  transition: opacity 1s ease;
  opacity: 0;
  /*transition: transform 0.3s ease;*/
}
@media (max-width: 992px) {
  .home-img .text {
  
    opacity: 1;
    
    
  }
}
.home-img .textP {
  position: fixed;
}
.home-title {
  line-height: 1em;
  font-size: 40px;
  margin-bottom:0.5em;
  text-transform:uppercase;

}
.home-title-min {
  line-height: 2em;
  font-size: 30px;
}
@media (max-width: 992px) {
  .home-title {
  line-height: 1em;
  font-size: 20px;
}
.home-title-min {
  line-height: 3em;
  font-size: 16px;
}
}
.home-about-title{
  text-align: center;
  font-size: 30px;
  line-height: 2em;
  margin-top:10%;
  margin-bottom:10%;
}
.home-about-title span{
  margin-left:20px;
}
.about-img{
  width:100%;
  padding-top:100%;
  height:0;
   
}
.about-text{
  display: flex;
  flex-direction:column;
   justify-content:center;
   height:100%;
  line-height: 3em;
  font-size: 18px;
  text-indent: 2em;
}
@media (max-width: 992px) {
  .about-text{
    line-height: 2em;
    border-bottom:1px solid #eee;
    padding-bottom:2em;
  }

}

/*news*/
.home-news{
  margin-bottom:200px;
}
@media (max-width: 992px) {
  .home-news{
  margin-bottom:50px;
}
}
.home-news-box{
  width:100%;
  margin-bottom:20px;
  padding:5%;

}
.home-news-img{
  width:100%;
  padding-top: 100%;
  background-size: 100%;
  
  background-position: center;
  transition:all ease 1s;
}
.home-news-box:hover .home-news-img{
  background-size: 110%;
}
.home-news-title{
  width:100%;
   
  font-size: 16px;
  text-align: center;
  line-height: 2em;
  margin-top: 10px;
  white-space: nowrap; /* 防止文本换行 */
  overflow: hidden; /* 隐藏超出容器的文本 */
  text-overflow: ellipsis;
}
.home-news-case-title{
  text-align: center;
  line-height: 2em;
  font-size: 20px;
  font-weight: 800;
  margin-top:20px;
}
.home-news-more{
  text-align: center;
  position: relative; 
}
.home-news-more::after{
  content: '';
  position: absolute;
  bottom:0;
  width:80px;
  left:50%;
  margin-left:-40px;
  height:2px;
  background: #000;
  transition:all ease 0.5s;

}
.home-news-box:hover .home-news-more::after{
  content: '';
  position: absolute;
  bottom:0;
  width:120px;
  left:50%;
  margin-left:-60px;
  height:2px;
  background: #000;

}
.home-news-more p{
  display: inline-block;
   
  margin-top:30px;
  line-height: 2em;

}

/*内页主体*/
.ny-body{
  width:100%;
  background:#fff;
  position: relative;
  z-index: 2;
  margin-top:30%;
  min-height: 600px;
}
 
.ny-title{
  font-size: 20px;
  font-weight: 800;
  line-height: 2em;
  color:#D10028;
}
.ny-title span{
  color:#333;
}
.ny-weizhi{
  text-align: right;
  font-size: 14px;
  line-height:40px;
}










/*底部*/
.bottom{
  background: #333;
  padding-top:50px;
  padding-bottom:50px;
}
.bottom-title{
  border-bottom:1px solid #666;
  color:#fff;
  line-height: 4em;
  font-size: 24px;
  text-align: center;
  margin-bottom:50px;


}

.bottom-contact p{
  color:#fff;
  line-height: 2em;
}
.bottom-nav{
  height:100%;


}

.bottom-nav ul{
  height:130px;
  display: flex;
  flex-direction:column;
  flex-wrap:wrap;
  border-left:1px dashed #555;
}
@media (max-width: 992px) {
  .bottom-nav{
  margin-top:20px;
  border-top:1px dashed #555;
  padding-top:20px;


}
   .bottom-nav ul{
    height:130px;
    display: flex;
     
    border-left:0px dashed #555;
    

  }
  .bottom-banquan{
     margin-top:20px;
  border-top:1px dashed #555;
  padding-top:20px;
  }
}
.bottom-nav ul li{
  line-height: 2em;
  text-align: center;
  
}
.bottom-nav ul li a{
  
}
.bottom-erweima{
  border-left:1px dashed #555;
  text-align: center;
}
.bottom-erweima img{
  width:120px;

}
.bottom-banquan{
  border-left:1px dashed #555;
  color:#fff;
}
.bottom-banquan a{
  color:#fff;
  margin-right:10px;
  line-height: 2em;
  font-size: 14px;
 
}
.bottom a,.bottom p,.bottom{
  font-size: 14px;
  color:#ccc;
  line-height: 2em;
}
 


/*内页产品*/
.inpage-p{
        width:100%;
        padding-top:100%;
        background: red;
        position: relative;
        margin-bottom:30px;
      }
      .inpage-p a{
        display: block;
        position: absolute;
        width:100%;
        height:100%;
        top:0;
      }
      .inpage-p a .img{
        position: absolute;
        width:100%;
        height:100%;
        top:0;
        background-size: cover;
      }
      .inpage-p a .bg{
        background: rgba(0,0,0,0);
        width:0%;
        height:0%;
        position: absolute;
        top:50%;
        left:50%;
        transition:all ease 0.3s;

      }
      .inpage-p a:hover .bg{
        background: rgba(0,0,0,0.5);
        width:100%;
        height:100%;
        position: absolute;
        top:0%;
        left:0%;
      }
      .inpage-p a .text{
        position: absolute;
        width:100%;
        bottom:0;
        left:0;
        z-index: 3;
        color:#000;
        font-size: 1.8em;
        padding:20px;
         
        text-align: center;
        transition:all ease 0.3s;


      }
      .inpage-p a .text p{
         
        display: inline-block;
         
        text-align: center;
         
        padding:10px;
        border-radius: 5px;
        border:1px solid #666;
        color:#666;
        margin-top:10px;
        font-size: 14px;
         
         
      }
      .inpage-p a:hover .text{
        bottom:50%;
        font-size: 1.8em;
        color:#fff;
        margin-bottom:-40px;
         
         
      }
      .inpage-p a:hover .text p{
         
        background: #fff;
         
      }
#qd-pages{width:100%; text-align: center; display: flex;justify-content: center;margin-top:3%}
#qd-pages p{display: inline-block; height:30px;line-height: 10px; }
#qd-pages li{display: inline-block; height:30px; border:1px solid #ddd;margin:3px;border-radius: 3px; background: #eee}
#qd-pages li:hover{background: #333}
#qd-pages li:hover a{color:#fff;}
#qd-pages li a{display:block; width:auto;height:30px;padding:5px 10px;font-size: 14px; line-height: 20px;color:#777 }
#qd-pages li a:hover{color:#fff;}
#qd-pages span{display:inline-block;  height:30px;  font-size: 14px; }
#qd-pages .now{background: #333}
#qd-pages .now a{color:#fff;}
#qd-pages .dian{border:none; background: none; padding: 0;line-height: 20px; height: 30px; vertical-align:top;}
#qd-pages .dian a{color: #aaa; line-height: 20px;padding: 0}
#qd-pages .dian:hover{border:none; background: none}
#qd-pages .pages-first{text-transform:Uppercase;padding:5px 10px }
#qd-pages .pages-last{text-transform:Uppercase; padding:5px 10px }
