/*新首页样式*/
img{max-width: 100%;}
a{cursor: pointer;}
.clearfix::before, .clearfix::after {
    content: " ";
    display: table;
    clear: both;
}
.w1200{color: #333333;}
.new_contain{
    font-size: 14px;
    /*padding-top: 10px;*/
    padding-bottom: 30px;
}
.product_list,.product_show{
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}
.product_list *{
    box-sizing: border-box;
}
.product_list li{
    width: 15.66%;
    float: left;
    overflow: hidden;
    padding: 1px;
}
.product_list li .pro_img{overflow: hidden;}
.product_list li .pro_img img{width: 100%;transition-duration: 0.8s;transition-timing-function: ease;}
.product_list li:hover img{transform: scale(1.2);}
.product_list li:hover .pro_text{color: #0694d8;}
.product_list li a{
    display: block;
    width: 100%;
    position: relative;
}
.product_list li .pro_text{
    display: flex;
    align-items: end;
    padding: 0 10px 10px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.1);
    z-index: 99;
}
.product_list li .pro_text h3{
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #fff;
    text-shadow: 0px 0px 4px #515151;
}
.product_list li .pro_text p{
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    text-shadow: 0 0 4px #515151;
    margin-top: 10px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}

/*热门产品分类 -start-*/
.hot-cat-wrap ul{
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}
.hot-cat-wrap ul li {
    width: 24%;
    padding: 10px 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.hot-cat-wrap ul li:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FCF0C2;
    mask: linear-gradient(to bottom, #fff, rgba(255, 255, 255, .2));
    -webkit-mask: linear-gradient(to bottom, #fff, rgba(255, 255, 255, .2));
    -moz-mask: linear-gradient(to bottom, #fff, rgba(255, 255, 255, .2));
    -ms-mask: linear-gradient(to bottom, #fff, rgba(255, 255, 255, .2));
}
.hot-cat-wrap ul li .cat-div{
    position: relative;
    z-index: 1;
}
.hot-cat-wrap ul li:nth-child(1)::before{
    background-color: #FCF0C2;
}
.hot-cat-wrap ul li:nth-child(2)::before{
    background-color: #C7DBFF;
}
.hot-cat-wrap ul li:nth-child(3)::before{
    background-color: #F9E3D3;
}
.hot-cat-wrap ul li:nth-child(4)::before{
    background-color: #CFF0F9;
}
.hot-cat-wrap ul li:hover::before{
    mask: none;
    -webkit-mask: none;
    -moz-mask: none;
    -ms-mask:none;
}
.hot-cat-wrap ul li .title-wrap{
    height: 72px;
    padding: 0 16px;
    display: flex;
    align-items: center;
}
.hot-cat-wrap ul li .title-wrap .img-div{
    width: 48px;
    height: 100%;
}
.hot-cat-wrap ul li .title-wrap .img-div img{
    width: 100%;
    height: inherit;
    object-fit: contain;
    object-position: center;
}
.hot-cat-wrap ul li .title-wrap .title-wrap-right{
    width: calc(100% - 48px);
    padding-left: 20px;
}
.hot-cat-wrap ul li .title-wrap .title-wrap-right .cat-title{
    font-size: 17px;
    color: #222529;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
}
.hot-cat-wrap ul li .title-wrap .title-wrap-right p {
    margin-top: 4px;
    font-size: 13px;
    color: #7f8792;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hot-cat-wrap ul li .sub-cat-list{
    height: 60px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.hot-cat-wrap ul li .sub-cat-list a{
    display: inline-block;
    width: 33.33%;
    padding: 0 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    height: 30px;
    line-height: 30px;
    white-space: nowrap;
    position: relative;
}
.hot-cat-wrap ul li .sub-cat-list a:hover{
    color: #000;
    text-decoration: underline;
}
.hot-cat-wrap ul li .sub-cat-list a:nth-child(1)::after,.hot-cat-wrap ul li .sub-cat-list a:nth-child(2)::after,.hot-cat-wrap ul li .sub-cat-list a:nth-child(4)::after,.hot-cat-wrap ul li .sub-cat-list a:nth-child(5)::after{
    content: '';
    display: block;
    width: 1px;
    height: 15px;
    position: absolute;
    right: 0;
    top: 9px;
    background: #c4c4c4;
}
/*热门产品分类 -end-*/

/*首页产品tab切换 开始*/
.tabwap .pro-tabs{
    border-bottom:1px solid #eee;
}
.tabwap .pro-tabs li {
    float: left;
    line-height: 26px;
    text-align: center;
    border-radius: 20px;
    margin-right: 12px;
    background-color: #ffffff;
}
.tabwap .pro-tabs li.current{
    background: linear-gradient(to bottom, #efffe8 0, #d1deff 100%);
    background-image: -webkit-linear-gradient(to bottom, #efffe8 0, #d1deff 100%);
    background-image: -o-linear-gradient(to bottom, #efffe8 0, #d1deff 100%);
    background-image: -moz-linear-gradient(to bottom, #efffe8 0, #d1deff 100%)
}
.tabwap .pro-tabs li a{
    display: inline-block;
    padding: 0 14px;
}
.tabwap .pro-tabs li.current a{
    color: #333;
}
.indexgoodslist{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.indexgoodslist *{
    box-sizing: border-box;
}
.indexgoodslist .indexgoodsitemb{
    width: 230px;
    cursor: pointer;
    padding: 37px 10px 15px;
    background: #fff;
    margin-bottom: 12px;
}
.indexgoodslist .indexgoodsitemb .img-box{
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.indexgoodslist .indexgoodsitemb img{
    max-width: 100%;
    max-height: 100%;
}
.indexgoodslist .indexgoodsitemb .info-b{
    padding: 10px 10px;
    position: relative;
}
.indexgoodslist .indexgoodsitemb .info-b .i1{
    color: #b0b0b0;
    font-size: 12px;
    display: block;
    text-align: center;
    margin-top: 8px;
}
.indexgoodslist .indexgoodsitemb .info-b .name{
    height: 22px;
    line-height: 22px;
    margin-top: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: center;
}
.indexgoodslist .indexgoodsitemb .info-b .price{
    color: #ffaa10;
    margin-top: 10px;
    text-align: center;
}
/*首页产品tab切换 结束*/

/*首页产品tab切换 + slide  开始*/
.pro-slide-tabs{
    display: flex;
    justify-content: center;
}
.pro-slide-tabs li{
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 20px;
    margin-right: 12px;
    background-color: #ffffff;
}
.pro-slide-tabs li.current{
    background: linear-gradient(to bottom, #efffe8 0, #d1deff 100%);
    background-image: -webkit-linear-gradient(to bottom, #efffe8 0, #d1deff 100%);
    background-image: -o-linear-gradient(to bottom, #efffe8 0, #d1deff 100%);
    background-image: -moz-linear-gradient(to bottom, #efffe8 0, #d1deff 100%)
}
.pro-slide-tabs li a{
    display: inline-block;
    padding: 0 14px;
    color: #9a9a9a;
}
.pro-slide-tabs li.current a {
    color: #333;
}
.silder-box{position:relative;}
.silder{margin:0 auto 0;}
.silder li{
    width:180px;
    cursor: pointer;
}
.silder li .img-box{
    width: 100%;
    padding: 20px;
    background-color: #fff;
}
.silder li img{
    width:100%;
    height:100%;
}
.silder-button{
    top: 80px;
    width: 25px;
    height: 54px;
    position: absolute;
    cursor: pointer;
    background-color: rgba(0,0,0,0.2);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0;
    transition: all 0.8s;
}
.silder-button.btl{
    left:0;
    background-image:url(../images/bl.png);
    border-radius: 0 8px 8px 0;
}
.silder-button.btr{
    right:0;
    background-image:url(../images/br.png);
    border-radius: 8px 0 0 8px;
}
.silder-box:hover .silder-button{
    opacity: 1;
}
.slide-info-b{
    text-align: center;
}
.slide-info-b .name{
    height: 30px;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slide-info-b .i1{
    height: 22px;
    line-height: 22px;
    color: #b0b0b0;
    font-size: 12px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slide-info-b .price{
    font-weight: bold;
    color: #0a95da;
    height: 30px;
    line-height: 30px;
}
/*首页产品tab切换 + slide  结束*/

/*热销产品推荐*/
.silder-box-rx .silder li{
    width: 264px;
    height: 264px;
}
.slidewap .tabwap:nth-child(1){
    /*background: url('../images/pbg01.jpg') no-repeat;*/
    background-size: 100% 100%;
}
.slidewap .tabwap:nth-child(2){
    /*background: url('../images/pbg02.jpg') no-repeat;*/
    background-size: 100% 100%;
}

.container{margin-bottom: 40px;}
.product_show li{
    width: 23%;
    margin-right:2%;
    display: inline-block;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 6px;
    color: #323232;
    font-size: 18px;
    line-height: 40px;margin-top:25px;margin-bottom:40px;position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-left: 43px;
    box-sizing: border-box;
}
.product_show span{position: absolute;left:10px;top: 2px;}
.product_show .active span{display: none;}
.product_show .active{background-color: #0a95da;color: #fff;}
.cont_show{padding-bottom: 40px;color: #323232;}
.cont_show li{display: none;width: 83%;margin:auto;}
.cont_show .cur{display: block;}
.cont_show .contimga {display: inline-block;width: 50%;}
.cont_show .contimga img{width: 100%;max-width: 100%;}
.cont_show .cont_text{width: 45%;float: right;}
.cont_text p span{padding-right: 15px;}
.cont_show .cont_text a{color: #323232;}
.cont_show .cont_text a:hover{text-decoration: underline;}
.cont_show .cont_text h3{font-size: 24px;margin-top: 5px;margin-bottom:10px;}
.cont_show .cont_text p{font-size: 14px;line-height: 28px;margin-bottom:20px;}
.cont_show .cont_text h4{font-size: 18px;margin-bottom: 10px;}
.cont_show .cont_text dl dd{font-size: 12px;position: relative;line-height: 25px;padding-left:15px;}
.cont_show .cont_text dl dd::before{position: absolute;    width: 8px;height: 8px;background-color: #f9a93b;left: 0;content: "";border-radius: 50%;top: 9px;}
.show_ist a{display: block;line-height: 25px;text-align: right;margin-top: 15px;position: relative;}
.show_ist a span,.moblie_text a span{position: relative;}
.show_ist a span::before,.moblie_text a span::before{position: absolute;content: "";background: url(../images/more.png)no-repeat;width: 20px;height: 20px;left:-23px;top: -1px;}
.show_ist dl{min-height: 130px;}
.cell_list{margin-bottom: 20px}
.cell_list:after{
    content: '';
    display: block;
    clear: both;
}
.about_us{width: 100%;display: inline-block;margin-bottom:80px;}
.about_us img{float: left;width: 45%;}
.about_text{width: 51%;float: right;color:#333333;padding-right: 10px;padding-bottom:20px;}
.about_text h3{
    font-size: 30px;
    margin-bottom: 50px;
    position: relative;
    font-weight: bold;
}
.about_text h3:after{
    content: '';
    display: block;
    width: 80px;
    height: 8px;
    background: #0a95da;
    position: absolute;
    bottom: -27px;
    left: 0;
}
.about_text p{font-size: 14px;line-height: 30px;margin-bottom: 30px;}
.about_text a{
    padding: 9px 54px;
    font-size: 14px;
    border: 1px solid #4a8d90;
}
.about_text a:hover{
    background: #0a95da;
    color: #fff;
}

.contain h1::before, .contain h1::after{
    background-color: #fff;
}

/*技术专题*/
.snews-warp *{
    box-sizing: border-box;
}
.snews-warp .box-b {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    background-color: #fff;
}
.snews-warp .box-b .line{
    width: 1px;
    height: 250px;
    background-color: #ebebeb;
}
.snews-warp .box-b .box-item {
    width: 280px;
    height: 270px;
}
.snews-warp .box-b .box-item a {
    background-color: #fff;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 12px;
    position: relative;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
}
.snews-warp .box-b .box-item a .img-box{
    width: 100%;
    height: 100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.snews-warp .box-b .box-item a .img-box img{
    object-fit: cover;
    transition-duration: 0.8s;
    transition-timing-function: ease;
}
.snews-warp .box-b .box-item a:hover .img-box img {
    transform: scale(1.2);
}
.snews-warp .box-b .box-item a h3{
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px dashed #dedede;
    margin-top: 12px;
    color: #333;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
}
.snews-warp .box-b .box-item a p{
    height: 60px;
    line-height: 30px;
    margin-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}


/*热门实验*/
.experment-warp{
    margin-top: 20px;
}
.experment-warp *{
    box-sizing: border-box;
}
.experment-warp .box-b{
    position: relative;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    margin-top: 90px;
}
.experment-warp .box-b .box-item{
    width: 280px;
    height: 214px;
    margin-top: 90px;
}
.experment-warp .box-b .box-item:nth-child(1),.experment-warp .box-b .box-item:nth-child(2),.experment-warp .box-b .box-item:nth-child(3),.experment-warp .box-b .box-item:nth-child(4){
    margin-top: 0;
}
.experment-warp .box-b .box-item a{
    background-color: #fff;
    padding: 80px 20px 0;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
    box-shadow: 0 2px 4px rgba(81,142,137,.6);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
}
.experment-warp .box-b .box-item a:hover{
    transform: translateY(-5px) translateZ(0);
    -webkit-transform: translateY(-5px) translateZ(0);
    -moz-transform: translateY(-5px) translateZ(0);
    box-shadow: 0 6px 8px rgba(81,142,137,.6);
}
.experment-warp .box-b .box-item a h3{
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    margin-top: 0;
    font-weight: 700;
    text-align: center;
}
.experment-warp .box-b .box-item a i{
    display: inline-block;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    box-shadow: 0 2px 7px rgba(0,0,0,.24);
    position: absolute;
    top: -47.5px;
    left: calc(50% - 47.5px);
}
.experment-warp .box-b .box-item a p{
    margin-top: 15px;
    margin-bottom: 0;
    color: #666;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}

/*首页文章*/
.news_warp *{
    box-sizing: border-box;
}
.news_warp .left-box{
    width: 50%;
    padding-right: 20px;
}
.news_warp .left-box .promotion-carousel{
    background-color: #fff;
    border-top: 3px solid #6388e0;
    height: 400px;
}
.news_warp .left-box .promotion-item {
    width: 100%;
    display: table;
    padding: 15px 10px 15px 10px;
    table-layout: fixed;
    border-bottom: 1px solid #dfdfdf;
}
.news_warp .left-box .promotion-item:last-child{
    border-bottom: 0;
}
.news_warp .left-box .promotion-item > * {
    display: table-cell;
    vertical-align: top;
}
.news_warp .left-box .promotion-item .block-l {
    width: 134px;
    height: 100px;
    padding: 2px;
    background: #eee;
}
.news_warp .left-box .promotion-item .block-l a{
    display: flex;
    width: 130px;
    height: 100px;
    align-items: center;
    justify-content: center;
}
.news_warp .left-box .promotion-item .block-l a img{
    max-width: 100%;
    max-height: 100%;
}
.news_warp .left-box .promotion-item .block-r {
    padding-left: 20px;
}
.news_warp .left-box .promotion-item .block-r .block-title {
    margin-bottom: 10px;
    font-weight: 700;
    color: inherit;
    font-size: 16px;
}
.news_warp .left-box .promotion-item .block-r .block-title a{
    color: #666;
}
.news_warp .left-box .promotion-item .block-r .block-content{
    line-height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}
body .text-ellipsis {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news_warp .homepage-label {
    display: inline-block;
    line-height: 1.8;
    font-size: 12px;
    padding: 0 10px;
    border-radius: 10px;
    background: #0a95da;
    color: #FFFFFF;
}
.news_warp .right-box{
    width: 50%;
    padding-left: 20px;
    box-sizing: border-box;
}
.news_warp .right-box .tab-title-box{
    display: flex;
    height: 60px;
    align-items: center;
}
.news_warp .right-box .tab-title-box li{
    font-size: 18px;
    margin-right: 30px;
    cursor: pointer;
}
.news_warp .right-box .tab-title-box li.current{
    color: #0a95da;
}
.news_warp .right-box .content{
    background-color: #fff;
    border-top: 3px solid #6388e0;
    height: 400px;
}
.news_warp .right-box .news-item {
    position: relative;
    padding: 13px 75px 13px 20px;
    border-bottom: 1px dashed #ccc;
    line-height: 1.8;
}
.news_warp .right-box .news-item .news-more {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media screen and (max-width: 768px){
    .news_warp .left-box .promotion-item .block-r .block-content {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

/*合作伙伴*/
.partner{
    padding: 50px 80px;
    background: #eee;
}
.partner .box-item{
    float: left;
    width: 240px;
    height: 100px;
    box-shadow: 0 0 1px #a2a0a0;
}
.partner .box-item img{
    width: 100%;
    height: 100%;
}

/*血清*/
.xq-box{
    text-align: center;
}
.xq-box .xqindexm{
    display: none;
}

/*广告弹框*/
.home-popup-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #333;
    opacity: 0.5;
    top: 0;
    left: 0;
    z-index: 999999;
}
.home-popup-box {
    width: 850px;
    height: auto;
    position: fixed;
    z-index: 1000000;
    top: 50%;
    left: 50%;
    margin-left: -425px;
    margin-top: -210px;
    text-align: center;
    font-family: "microsoft yahei";
    border-radius: 3px;
}
.home-popup-box img {
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.home-popup-del {
    z-index: 9999999;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: 425px;
    margin-top: -250px;
    cursor: pointer;
}

@media screen and (max-width: 1200px){
    .product_show li{width: 22%;}
    .product_show span{display: none;}
    .cont_show li{width: 100%;}
    .new_right .first_list{margin-top: 0;margin-bottom:20px;}
    .cont_show .contimga{width: 100%;}
    .cont_show .cont_text{width: 100%;}
    .cont_show .cont_text .show_ist dl{min-height: 50px;}
    .cont_show .cont_text .show_ist dl dd{height: 50px;  overflow: hidden;  text-overflow: ellipsis;  display: -webkit-box;  -webkit-line-clamp: 2;  -webkit-box-orient: vertical;}
}
@media screen and (max-width: 992px){
    .new_contain{
        margin-left: 0;
        margin-right: 0;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .new_contain h1, .new_contain h2{font-size: 25px;padding-left:0;}
    .new_contain h1 span, .new_contain h2 span{position: relative;left:0;top: 0;margin-right: 8px;}
    .product_con{padding: 10px;margin-top: 10px !important;}
    .product_show li{width: 20%;margin-left: 1%;font-size: 16px;}
    .cont_show{padding-bottom: 80px;}
    .bottom_cent{padding-bottom:60px;}
    .cont_show li{width: 98%;}
    .pic_cent p{display: none;}
    .about_us{margin: 30px 0;}

    /*首页广告弹框*/
    .home-popup-box {
        width: 300px;
        margin-left: -150px;
    }
    .home-popup-del {
        margin-left: 150px;
        width: 20px;
    }
}
@media screen and (max-width: 768px){
    .product_list li .pro_text p {
        font-size: 13px;
    }
    .product_list{
        flex-wrap: wrap;
    }
    .product_list li {
        width: 48%;
        float: left;
        margin-right: 1%;
        overflow: hidden;
        margin-left: 1%;
        margin-bottom:15px;
    }
    .cell_list{
        margin-bottom: 0;
    }

    /*首页热销品类*/
    .product_list li a{
        display: block;
        width: 100%;
        position: relative;
    }
    .product_list li a .pro_text{
        position: absolute;
        bottom: 0;
        width: 100%;
    }
    /*.product_list li .pro_text{padding-top: 5px;}*/
    .about_us img{display: none;}
    .about_text{width: 97%;padding-right:1%;padding-bottom:30px;margin-top: 20px;}
    /*.cont_show .cont_text{display: none;}*/
    .moblie_text{width: 50%;float:right;display: none;}
    .moblie_text a{display: block;padding-left: 30px;padding-top: 30px;color: #fff;}
    .product_show li {width: 46%;margin:10px 1%;font-size: 14px;}
    .cont_show{padding:20px 0;}
    .new_right ul li img{float: none;display: block;margin:0 auto;}
    .pic_cent{text-align: center;}
    .new_right{width: 100%;margin-left: 0;padding-top: 16px;}
    .new_left {text-align: center;margin-bottom: 25px;width: 100%;display: none;}

    .tabwap{
        padding: 0 10px;
    }
    .tabwap .pro-content{
        border: 0;
    }
    .indexgoodslist .indexgoodsitemb {
        width: 50%;
    }
    .slidewap{
        display: none;
    }

    .indexgoodslist{
        margin: 0;
    }
    .indexgoodslist .indexgoodsitemb{
        padding: 15px 7.5px;
    }

    /*热门实验*/
    .experment-warp{
        padding-left: 10px;
        padding-right: 10px;
    }
    .experment-warp .box-b{
        margin-top: 70px;
    }
    .experment-warp .box-b .box-item {
        width: 48%;
        margin-bottom: 0;
        height: 170px;
        margin-top: 80px;
    }
    .experment-warp .box-b .box-item:first-child , .experment-warp .box-b .box-item:nth-child(2){
        margin-top: 0;
    }
    .experment-warp .box-b .box-item:nth-child(3), .experment-warp .box-b .box-item:nth-child(4){
        margin-top: 60px;
    }
    .experment-warp .box-b .box-item a{
        padding: 50px 10px 19px 10px;
    }
    .experment-warp .box-b .box-item a h3{
        font-size: 14px;
    }
    .experment-warp .box-b .box-item a p{
        margin-top: 10px;
        height: 72px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .experment-warp .box-b .box-item a i{
        width: 80px;
        height: 80px;
        left: calc(50% - 40px);
    }

    /*技术服务*/
    .service-wrap .servicebox{
        width: 49%;
    }
    .service-wrap .servicebox .service-click-box{
        width: 100%;
        left: 0;
    }
    .service-wrap .servicebox .service-click-box p{
        margin-left: calc(50% - 70px);
    }
    .service-wrap .servicebox .service-click-box .service-font-left{
        font-size: 14px;
    }
    .service-wrap .servicebox .service-click-box .service_ul{
        display: none;
    }

    /*技术服务专题*/
    .snews-warp{
        padding-left: 10px;
        padding-right: 10px;
    }
    .snews-warp .box-b .box-item{
        width: 48%;
        margin-bottom: 20px;
    }

    /*促销活动*/
    .news_warp{
        padding: 0 10px;
    }
    .news_warp .left-box{
        width: 100%;
        padding-right: 0;
    }
    .news_warp .right-box{
        width: 100%;
        padding-left: 0;
    }

    /*合作伙伴*/
    .partner {
        padding: 50px 10px;
    }
    .partner .box-item {
        width: 50%;
        height: 58px;
    }

    /*服务*/
    .serve_bg .bottom_cent li {
        margin: 15px 0;
        text-align: center;
        flex-wrap: wrap;
    }

    /*血清*/
    .xqindex{
        display: none;
    }
    .xqindexm{
        display: block;
    }

    .footer-height{
        height: 5rem;
    }
}
@media screen and (max-width:576px){
    .new_contain h1 span img, .new_contain h2 span img{width: 30px;}
    .new_contain h1, .new_contain h2{
        font-size: 20px;
        font-weight: bold;
        margin: 10px 0;
    }
    .product_list li .pro_text h3{
        font-size: 13px;
    }
    .serve_bg .bottom_cent li p{padding:8px;font-size: 12px;}
    .serve_bg .bottom_cent li img{float: none;padding-right: 0px;}
    .serve_bg .bottom_cent li{margin: 15px 0px;text-align: center;}
}
