    /*产品-间距分类*/
/*    .clear:after {
       content: "";
    display: block;
    height: 0;
    line-height: 0;
    clear: both;
    visibility: hidden;
    
    
}*/




 
.dialog-bg{
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.3);
    z-index: 222
}
 
 
.dialog-bg .img-box{
    width: 400px;
    height: 400px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -200px;
    margin-top: 0px;
    
}
 
.dialog-bg .img-box img{
    width: 100%;
    height: 100%;
}
       
.mcd-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    width: 100%;
    text-align: center;
}

.mcd-menu li {
    position: relative
}

.mcd-menu li a {
    display: block;
    text-decoration: none;
    padding: 0px 10px;
    color: #777;
    text-align: left;
    line-height: 22px;
    position: relative;
    border-bottom: 1px solid #eee
}

.mcd-menu li a i {
    float: left;
    font-size: 20px;
    margin: 0 10px 0 0
}

.mcd-menu li a p {
    float: left;
    margin: 0
}

.mcd-menu li a strong {
    display: block;
    text-transform: uppercase
}

.mcd-menu li a small {
    display: block;
    font-size: 10px
}
.mcd-menu li a i, .mcd-menu li a strong, .mcd-menu li a small {
    position: relative;
    transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -webkit-transition: all 300ms linear
}

.mcd-menu li a {
    font-size: .875rem;
}
.mcd-menu li:hover > a i {
    opacity: 1;
    -webkit-animation: moveFromTop 300ms ease-in-out;
    -moz-animation: moveFromTop 300ms ease-in-out;
    -ms-animation: moveFromTop 300ms ease-in-out;
    -o-animation: moveFromTop 300ms ease-in-out;
    animation: moveFromTop 300ms ease-in-out
}

.mcd-menu li:hover a strong {
    opacity: 1;
    -webkit-animation: moveFromLeft 300ms ease-in-out;
    -moz-animation: moveFromLeft 300ms ease-in-out;
    -ms-animation: moveFromLeft 300ms ease-in-out;
    -o-animation: moveFromLeft 300ms ease-in-out;
    animation: moveFromLeft 300ms ease-in-out
}

.mcd-menu li:hover a small {
    opacity: 1;
    -webkit-animation: moveFromRight 300ms ease-in-out;
    -moz-animation: moveFromRight 300ms ease-in-out;
    -ms-animation: moveFromRight 300ms ease-in-out;
    -o-animation: moveFromRight 300ms ease-in-out;
    animation: moveFromRight 300ms ease-in-out
}

.mcd-menu li:hover a {
    opacity: 1;
    -webkit-animation: moveFromRight 300ms ease-in-out;
    -moz-animation: moveFromRight 300ms ease-in-out;
    -ms-animation: moveFromRight 300ms ease-in-out;
    -o-animation: moveFromRight 300ms ease-in-out;
    animation: moveFromRight 300ms ease-in-out
}
.mcd-menu li:hover > a {
    color: #e67e22
}

.mcd-menu li a.active {
    position: relative;
    color: #e67e22;
    border: 0;
    box-shadow: 0 0 5px #ddd;
    -moz-box-shadow: 0 0 5px #ddd;
    -webkit-box-shadow: 0 0 5px #ddd;
    border-left: 4px solid #e67e22;
    border-right: 4px solid #e67e22;
    margin: 0 -4px
}

.mcd-menu li a.active:before {
    content: "";
    position: absolute;
    top: 33%;
    left: 0;
    border-left: 5px solid #e67e22;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent
}

.mcd-menu li a.active:after {
    content: "";
    position: absolute;
    top: 33%;
    right: 0;
    border-right: 5px solid #e67e22;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent
}

@-webkit-keyframes moveFromTop {
    from {
        opacity: 0;
        -webkit-transform: translateY(200%);
        -moz-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%)
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%)
    }
}

@-webkit-keyframes moveFromLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(200%);
        -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
        -o-transform: translateX(200%);
        transform: translateX(200%)
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%)
    }
}

@-webkit-keyframes moveFromRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(-200%);
        -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        -o-transform: translateX(-200%);
        transform: translateX(-200%)
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%)
    }
}

.mcd-menu li ul, .mcd-menu li ul li ul {
    position: absolute;
    height: auto;
    min-width: 200px;
    padding: 0;
    margin: 0;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
    z-index: 1000;
    left: 280px;
    top: 0;
    border-left: 4px solid #e67e22
}

.mcd-menu li ul:before {
    content: "";
    position: absolute;
    top: 25px;
    left: -9px;
    border-right: 5px solid #e67e22;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent
}

.mcd-menu li:hover > ul, .mcd-menu li ul li:hover > ul {
    display: block;
    opacity: 1;
    visibility: visible;
    left: 250px
}

.mcd-menu li ul li a {
    padding: 10px;
    text-align: left;
    border: 0;
    border-bottom: 1px solid #eee;
    height: auto
}

.mcd-menu li ul li a i {
    font-size: 16px;
    display: inline-block;
    margin: 0 10px 0 0
}

.mcd-menu li ul li ul {
    left: 230px;
    top: 0;
    border: 0;
    border-left: 4px solid #e67e22
}

.mcd-menu li ul li ul:before {
    content: "";
    position: absolute;
    top: 15px;
    left: -9px;
    border-right: 5px solid #e67e22;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent
}

.mcd-menu li ul li:hover > ul {
    top: 0;
    left: 200px
}

.mcd-menu li a.search {
    padding: 10px 10px 15px;
    clear: both
}

.mcd-menu li a.search i {
    margin: 0;
    display: inline-block;
    font-size: 18px
}

.mcd-menu li a.search input {
    border: 1px solid #eee;
    padding: 10px;
    background: #fff;
    outline: none;
    color: #777;
    width: 170px;
    float: left
}

.mcd-menu li a.search button {
    border: 1px solid #e67e22;
    background: #e67e22;
    outline: none;
    color: #fff;
    margin-left: -4px;
    float: left;
    padding: 10px 10px 11px
}

.mcd-menu li a.search input:focus {
    border: 1px solid #e67e22
}

.search-mobile {
    display: none !important;
    background: #e67e22;
    border-left: 1px solid #e67e22;
    border-radius: 0 3px 3px 0
}

.search-mobile i {
    color: #fff;
    margin: 0 !important
}


#paging {
    overflow: hidden;
    width: 100%;
    margin-top: 60px;
    text-align: center;
    color: #09f;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

#paging .first, #paging .last, #paging .prev, #paging .next, #paging .list li {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    margin: 0 4px;
    padding: 0 10px;
    border: 1px solid #ddd;
    cursor: default;
    border-radius: 4px;
    vertical-align: top
}

#paging .list {
    display: inline-block;
    vertical-align: top
}

#paging .list li {
    width: 40px;
    padding: 0;
    text-align: center
}

#paging .list li.cur {
    color: #fff;
    background-color: #09f;
    border-color: #428bca
}

#paging .go {
    display: none;
    position: relative;
    max-width: 160px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 4px
}

#paging .go input {
    float: left;
    width: 70%;
    height: 30px;
    line-height: 30px;
    padding: 0 6px;
    font-size: 16px;
    box-sizing: border-box;
    color: #09f
}

#paging .go button {
    float: left;
    width: 30%;
    height: 100%;
    cursor: pointer;
    color: #fff;
    background-color: #09f;
    border-radius: 0 4px 4px 0
}

#paging .disable {
    color: #bfbfbf;
    cursor: not-allowed
}

#paging input::-webkit-input-placeholder {
    color: #bfbfbf
}

#paging input::-moz-input-placeholder {
    color: #bfbfbf
}

#paging input:-ms-input-placeholder {
    color: #bfbfbf
}

#resultBox {
    width: 105%;
    height: auto;
    margin: 0 -.625rem;
   
}

.container .bq{
   height: 5px; width: 134px;
    background-color: #00A94A;
    border-left: 50px solid #f28b00;
    position: absolute;
    display: block;
    top: 10px;
    content: "";
    z-index: inherit;
}
.spa_a{display:inline-block;line-height:21px;color:#fff;width:76px;background:url(images/pro_pic10.jpg) no-repeat 10px 4px #eb9700;border-radius:10px;padding-left:26px;font-size:12px;box-shadow:1px 2px 1px #d1d1d1;position:absolute;top:18px;left:260px;}
.spa_coti{margin-left:20px;margin-right:20px;color:#41444e;padding-bottom:12px;}
.spa_coti h4{float:left;font-size:20px;}
.spa_coti h4 span{font-size:14px;color:#a71ead;padding-left:20px;}
.spa_coti p{float:right;}
.spa_coti p span{color:#9a019a;}
.spa_con{margin-top:10px;border-radius:6px;box-shadow:0px 0px 6px rgba(0,0,0,.1);width:100%;height:100%;border:1px solid #cfcfcf;padding-left:8px;position:relative;margin-bottom:20px;
    background:url(images/propic.jpg) right top repeat-y;
}
.spa_con:hover{box-shadow:0px 0px 6px rgba(0,0,0,.3);}
.spa_con .img{width:150px;height:150px;margin:10px 0px;border-radius:3px;cursor:pointer;}
.spa_con .img img{width:150px;height:150px;-webkit-transition:all .3s ease;; 
    -moz-transition:all .3s ease;;
    -o-transition:all .3s ease;;
    transition: all .3s ease;}
.spa_con .img img:hover{position:absolute;-webkit-transform:rotate(360deg) scale(1.4);
    -ms-transform:rotate(360deg) scale(1.4);
    -o-transform:rotate(360deg) scale(1.4);
     transform:rotate(360deg) scale(1.4); z-index:990;}
.spa_con .txt{width:500px;position:absolute;left:180px;top:0px;padding:10px 0px 5px 10px;}

.spa_con .spa_ctit{background:none;font-size:14px;color:#E37770;font-weight:bold;margin:0px 0 5px;}
.spa_con .spa_ctit span{font-size:22px;}
.spa_con .txt a:hover,.spa_con .spa_ctit:hover{text-decoration:underline;color:red;}
.spa_con .pro_detail{height:60px;}
.spa_con .pro_detail.auto{height:auto;}

.spa_down{width:190px;padding:17px 15px 16px 15px;position:absolute;right:-15px;top:0px;display:flex;flex-direction: column;align-items: flex-start;}
.spa_down a{display:block;background:url() no-repeat 0px 4px;color:#50535C;line-height:27px;text-decoration:none;padding-left:22px;padding-bottom:10px;font-size:15px;}
.spa_down a:hover{text-decoration:underline;color:red;}
.spa_down img{
    width: 24px;
    height: 24px;
}
.bkgd{
    background-color: #000;
}
.spa_fen{
    border:1px solid #e37770;
    border-radius: 3px; 
    padding: 2px 5px;
    color:#e37770;
}
.spa_more1 a{width:54px;line-height:25px;background-color: #e37770; border: 1px;border-radius: 3px; color:#fff;position:absolute;right:220px;bottom:15px;font: 13px/22px "Trebuchet MS", Arial, "SimSun", "MingLiu", Verdana, Helvetica, sans-serif;}
.spa_more1 a:hover{text-decoration:underline;color: blue;}
.spa_more2 a{width:64px;line-height:25px; padding-left:6px;background-color: #e37770; border: 1px;border-radius: 3px; color:#fff;position:absolute;right:241px;bottom:15px;font: 13px/22px "Trebuchet MS", Arial, "SimSun", "MingLiu", Verdana, Helvetica, sans-serif;}
.spa_more2 a:hover{text-decoration:underline;color: blue;}
@media screen and (max-width:991px){
    .spa_more2,.spa_more1,#footer .section{ display: none;}
    .spa_con .img img:hover{position:absolute;-webkit-transform:rotate(360deg) scale(1.0);
    -ms-transform:rotate(360deg) scale(1.0);
    -o-transform:rotate(360deg) scale(1.0);
     transform:rotate(360deg) scale(1.0); z-index:990;}
      .spa_fen{
        font-size: 12px;
     }
     .spa_ctit{
         font-size: 12px;
         height: 30px;
         overflow: hidden;
     }


}
.pro_detail p {
    font:500 13px/22px "Microsoft YaHei","微软雅黑",SimSun,"宋体",Heiti,"黑体",sans-serif;
    -webkit-text-size-adjust: none;
    color: #41444e;
    margin: 0px;
    display: block;
    
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}


/**/
 .swiper-container{
    width:100%;
    height:50%;
  }
  .he{
    width:100%;
    height:100%;
  }
   ul,li{
    margin: 0;
    padding:0;
    list-style: none;
}
.tabfirst li{
     float: left;
    list-style: none;
  display: inline-block;
  width: 25%;
 
 padding: 0.3em;
  color: #FFF;


  text-align: center;
  font-weight: 700;
 /* -webkit-transition: 0.2s all;
  transition: 0.2s all;*/
  cursor: pointer;
}
@media screen and (max-width: 981px) {
    .tabfirst li{width: 50%;}
}

.content{
    clear: both;
   
}
.content-first{
    clear: both;
    height: 2.0em;
    font-size: 2em;
    text-align: center;
    display: none;
border-top: 1px solid #E4E7ED;
  padding-top: 0.5em;
  
  line-height: 1.0em;
}
 .filtr-item{
    display: none;
 }
@media screen and (max-width: 1500px) {
   
  .content-first{
   
    height: 2em;
    font-size: 1.5em;
   
  padding-top: 0em;
  
  line-height: 1.0em;
}
}
@media screen and (max-width: 767px) {
    .spa_con .txt {
      padding-top: 5px;
    }
    .spa_con {
        background:#fff;
    }
  .content-first{
   
    height: 2.0em;
    font-size: 1em;
   
  padding-top: 0em;
  
  line-height: 1.0em;
}
    .filtr-item{
        display: block;
    }
   .spa_con{
   float: left;
    margin: 2%;
    padding: 0px;
    width: 46%;
   }
   .spa_con .img{
        position: relative;
        width: 100%;
        height: 100%;
        margin: 0px;
        padding: 5px;
   }
   .spa_con .img img{
        position: relative;
        width: 100%;
        height: 100%;
        margin: 0px;
   }
   .spa_con .img img:hover{position:relative;left:0px;top:0px;width:100%;height:100%;z-index:990;}
    .spa_con .txt{
         position: relative;
         width: 100%;
         left:0;
          text-align: center;
    }
    .spa_con .txt .spa_fen{
        position: relative;
          margin: 0 auto;
    }
    .spa_con .spa_ctit{
         position: relative;
         text-align: center;
         font-size:12px;
    }
   .spa_con .spa_ctit span{font-size:14px;}
    .pro_detail p,.spa_more a,.spa_down,.spa_con .pro_detail{
        display: none;
    }
   
}
.content{
    
   display: block;
}

.myicon{
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}
.top-bar-section ul li.mylink{
     list-style: none;
     color: #fff;
    background: #fff;
}
.top-bar-section li:not(.has-form) a.mylia:not(.button){
     background: #fff;
     padding: 0px;
}
#work{
    background: #fff
}
@media only screen and (max-width: 46.875em) {
    #breadcrumb {
    padding: 2.8rem;
   
}
#mu-service{
    padding: 0px;
}
.mu-service-area {
    margin-top:1rem; 
}
}

@media screen and (max-width: 767px) {
    #footer .section .container .col-md-3{
        display: none;
    }
    .copyright {
      margin-top: 0.6rem;
    }
   
}


.upper-modal-bar img {
    
    vertical-align:middle !important;
}

#diandu,#diandu2,#chailiao2,#zhuzi,#tudian,#pianchaban,#zhiwanzhen,#smt {
                display: none;
            }


            .pwd-place {
  position: absolute;
  top: 0;
  left: 72px;
  width: 100%;
  height: 100%;
  font-size: 12px;
}

.button-primary.close-reveal-modal{
    position: relative;
    width: 30rem;
    color: #fff !important;
    text-align: center;
    padding: .67rem;
    font-size: 1.125rem;
   
    height: auto !important;
    line-height: normal !important;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    display: block;
    -moz-transition: background-color .3s ease-out 0s;
    -o-transition: background-color .3s ease-out 0s;
    -webkit-transition: background-color .3s ease-out 0s;
    transition: background-color .3s ease-out 0s
}