.b-pro-top{
    position: relative;
}

.b-top-title{
    position:absolute;
    z-index: 1;
    padding-top: 5%;
    padding-left: 10%;
}
@media screen and (max-width: 768px) {
    .b-top-title h4{
        font-size: 18px;
        font-weight: 700;
    }
}

.b-table{
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  max-width: 1300px;
  margin: auto;
}

.b-table-title{
    max-width: 1250px;
    margin: auto;
}

.b-img-bor{
    border: 1px solid #eeeeee;
}


/*产品页侧边栏*/

.mcd-menu {
    list-style: none;
    padding: 10px 0px;
    margin: 0;
    background: #eee;
    /*height: 100px;*/
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    
    /* == */
   /* width: 250px;*/
    /* == */
  }
  .mcd-menu li {
    position: relative;
    /*float:left;*/
  }
  .mcd-menu li a {
    display: block;
    text-decoration: none;
    padding: 10px 20px;
    color: #000;
    /*text-align: center;
    border-right: 1px solid #E7E7E7;*/
    margin: 10px 20px;
    background-color: #FFF;
    
    /* == */
    text-align: left;
    
    position: relative;
    border-bottom: 1px solid #EEE;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    /* == */
  }

.mcd-menu li a:after {
    content: '\f105';
    font-family: FontAwesome;
    position: absolute;
    top: 25%;
    right: 25px;
    -webkit-transition: width 0.3s linear;
    transition: width 0.3s linear;
    z-index: 1;
    height: 25px;
    width: 25px;
    color: #000;
    background-color: #fff;
    line-height: 25px;
    border-radius: 50%;
    text-align: center;
    font-size: 13px;
    padding-left: 2px;
    font-weight: 700;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.04);
}

  .mcd-menu li a i {
    /*display: block;
    font-size: 30px;
    margin-bottom: 10px;*/
    
    /* == */
    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: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 {
    color: #fff;
    background-color: #4c84cb;
  }
  .mcd-menu li a.active {
    position: relative;
    color: #4c84cb;
    border:0;
    /*border-top: 4px solid #4c84cb;
    border-bottom: 4px solid #4c84cb;
    margin-top: -4px;*/
    box-shadow: 0 0 5px #DDD;
    -moz-box-shadow: 0 0 5px #DDD;
    -webkit-box-shadow: 0 0 5px #DDD;
    
    /* == */
    border-left: 4px solid #4c84cb;
    border-right: 4px solid #4c84cb;
    margin: 0 -4px;
    /* == */
  }
  .mcd-menu li a.active:before {
    content: "";
    position: absolute;
    /*top: 0;
    left: 45%;
    border-top: 5px solid #4c84cb;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;*/
    
    /* == */
    top: 42%;
    left: 0;
    border-left: 5px solid #4c84cb;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    /* == */
  }
  
  /* == */
  .mcd-menu li a.active:after {
    content: "";
    position: absolute;
    top: 42%;
    right: 0;
    border-right: 5px solid #4c84cb;
    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;
    width: 100%;
    padding: 0;
    margin: 0;
    background: #FFF;
    /*border-top: 4px solid #4c84cb;*/
    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;
    /*top: 130px;*/
    z-index: 1000;
    
    /* 这里left决定二级目录从什么位置进入*/
    left:500px;
    top: 0px;
    border-left: 4px solid #4c84cb;
    /* == */
  }

  .mcd-menu li ul li a:after {
    content: '';
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: width 0.3s linear;
    transition: width 0.3s linear;
    z-index: 1;
    height: 0;
    width: 0;
    line-height: 25px;
    border-radius: 50%;
    text-align: center;
    font-size: 13px;
    padding-left: 2px;
    font-weight: 700;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.04);
}

  .mcd-menu li ul:before {
    content: "";
    position: absolute;
    /*top: -8px;
    left: 23%;
    border-bottom: 5px solid #4c84cb;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;*/
    
    /* == */
    top: 25px;
    left: -9px;
    border-right: 5px solid #4c84cb;
    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;
    /*top: 100px;*/
    
    /* == */
    left:100%;
    /* == */
  }
  /*.mcd-menu li ul li {
    float: none;
  }*/
  .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 #4c84cb;
  }  
  .mcd-menu li ul li ul:before {
    content: "";
    position: absolute;
    top: 15px;
    /*left: -14px;*/
    /* == */
    left: -9px;
    /* == */
    border-right: 5px solid #4c84cb;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
  }
  .mcd-menu li ul li:hover > ul {
    top: 0px;
    /*left: 200px;*/
  }
  
  
  
  /*.mcd-menu li.float {
    float: right;
  }*/
  .mcd-menu li a.search {
    /*padding: 29px 20px 30px 10px;*/
    padding: 10px 10px 15px 10px;
    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 #4c84cb;
    /*padding: 10px;*/
    background: #4c84cb;
    outline: none;
    color: #FFF;
    margin-left: -4px;
    
    /* == */
    float:left;
    padding: 10px 10px 11px 10px;
    /* == */
  }
  .mcd-menu li a.search input:focus {
    border: 1px solid #4c84cb;
  }
  
  
  .search-mobile { 
      display:none !important;
      background:#4c84cb;
      border-left:1px solid #4c84cb;
      border-radius:0 3px 3px 0;
  }
  .search-mobile i { 
      color:#FFF; 
      margin:0 !important;
  }
  

  /*产品页侧边栏-手机*/
  ul.menu-m {
    padding: 0;
    list-style: none;
    width: 100%;
    margin: 20px auto;
    
    box-shadow: 0px 0px 8px #ddd;
    clear: both;
    display: table;
  }
  ul.menu-m .list {
    font-size: 14px;
    border-bottom: 1px solid #fff;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    vertical-align: sub;
    background: #eee;
    clear: both;
  }
  ul.menu-m .list:after {
    content: "";
    font-family: FontAwesome;
    position: absolute;
    right: 17px;
    top: 17px;
    padding: 0px 5px;
    color: #000;
  }
  ul.menu-m .list:before {
    content: '';
    font-family: FontAwesome;
    position: absolute;
    left: 17px;
    top: 17px;
    padding: 0px 5px;
    color: #000;
  }
  ul.menu-m .list a {
    text-decoration: none;
    cursor: pointer;
    color: #000;
    padding: 17px 0px 17px 45px;
    display: block;
    height: 100%;
    box-sizing: border-box;
  }
  ul.menu-m .list a:hover {
    background-color: #eee;
    transition: 300ms all;
    color: #000;
  }
  ul.menu-m .list .items {
    height: 0px;
    overflow: hidden;
  }
  ul.menu-m .list .items a {
    padding: 17px;
  }
  ul.menu-m .list .items a:hover {
    background-color: #eee;
    color: #000;
    transition: 300ms all;
  }
  ul.menu-m .list:last-child {
    border-bottom: none;
  }
  ul.menu-m .active:after {
    content: "";
    font-family: FontAwesome;
    position: absolute;
    right: 17px;
    top: 17px;
    padding: 0px 5px;
    color: #000;
  }
  ul.menu-m .active:before {
    content: '';
    font-family: FontAwesome;
    position: absolute;
    left: 17px;
    top: 17px;
    padding: 0px 5px;
    color: #000;
  }
  ul.menu-m .active > .items {
    display: block;
    background: #fff;
    padding: 0px;
    height: auto;
    color: #000;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 200ms;
    clear: both;
    float: left;
    width: 100%;
  }
  ul.menu-m .active > .items li {
    padding: 0px;
    border-bottom: 1px solid #fff;
    list-style: none;
  }
  ul.menu-m .active > .items li:last-child {
    border-color: transparent;
    padding-bottom: 0px;
  }
  ul.menu-m .active > .items .active > .items {
    background-color: #eee;
  }
  ul.menu-m .active > a {
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
  }
  ul.menu-m .active .list {
    background: #eee;
  }
  ul.menu-m .active .list a {
    padding: 17px 0px 17px 45px;
  }

  .b-pro-dispaly{
      display: none;
  }
  
  .b-pro-dispaly-pc{
    display: block;
}

  @media screen and (max-width: 991px) {
    .b-pro-dispaly{
        display: block;
    }
    
    .b-pro-dispaly-pc{
        display: none;
    }
  }
