@charset "UTF-8";
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html,body{
    font-size: 16px;
    color: #333333;
    font-family: "Microsoft YaHei UI Light";
}
button,input[type='submit'],input[type='reset'],input[type='button'],input[type='radio'],input[type='checkbox']{
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
    appearance: none!important;
}
i,em{
    font-style: normal;
}
a{
    color: #333;
    text-decoration: none;
}
ul,ol{
    list-style: none;
}
/*自定义CheckBox，Radio样式*/
label{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
input[type='checkbox'],input[type='radio']{
    outline: none;
    width: 16px;
    height: 16px;
    cursor: pointer;
    vertical-align: middle;
    background: #fff;
    border: 1px solid #ccc;
    position: relative;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    margin: 2px;
    overflow: hidden;
}
input[type='checkbox']:checked:after{
    content: '\2713';
    display: block;
    position: absolute;
    top: 50%;
    left: 50.5%;
    width: 14px;
    height: 14px;
    padding-left: 4px;
    line-height: 14px;
    border: 1px solid #ddd;
    color: #fff;
    font-size: 14px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
input[type='checkbox']:checked,input[type='checkbox']:checked:after{
    background: red;
    border-color: red;
}
input[type='radio']:checked:after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: red;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
input[type='radio'],input[type='radio']:checked:after{
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
input[type='radio']:checked,input[type='radio']:checked{
    border-color: red;
}
header,footer,.body{
    display: block;
    width: 100%;
    position: relative;
}
.body_main,.footer_main{
    position: relative;
    width: 1200px;
    margin: 0 auto;
}
.header_main{
    background: #3d3d3d;
}
.header_top{
    width: 1200px;
    margin: 0 auto;
    padding: 5px 0;
    color: #fff;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.header_top span{
    font-size: 16px;
}
.header_top>i{
    font-size: 14px;
}
.header_top span b{
    color: rgb(255, 229, 153);
}
.header_body{
    background: #fff;
}
.header_body_main{
    width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 30px 0;
}
.logo>img{
    width: 80px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.logo>div{
    display: inline-block;
    vertical-align: middle;
}
.logo>div h2{
    font-weight: 600;
    font-size: 25px;
}
.logo>div em{
    padding-left: 2px;
    font-size: 14px;
}
.search{
    position: absolute;
    top: 50%;
    margin-left: 100px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}
.search input{
    width: 250px;
    display: inline-block;
    vertical-align: middle;
    padding: 4px 4px;
    border: 1px solid #e5e5e5;
    outline: none;
    margin-right: -6px;
    font-size: 14px;
}
.search input:focus{
    border-color: #3d8cff;
}
.search button{
    border: none;
    outline: none;
    background: transparent;
    display: inline-block;
    vertical-align: middle;
}
.search button img{
    width: 100%;
    position: relative;
    height: 100%;
}
.ry{
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 1;
}
.ry img{
    width: 80px;
    display: inline-block;
    vertical-align: middle;
}
.ry span{
    display: inline-block;
    vertical-align: middle;
    padding-left: 0px;
}
.ry span *{
    display: block;
}
.ry span b{
    font-size: 21px;
}
.ry span em{
    font-size: 14px;
}
.nav_main{
    background: #db2426;
}
.nav{
    width: 1200px;
    margin: 0 auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.nav li{
    display: inline-block;
    vertical-align: middle;
    width: 12.5%;
}
.nav li a{
    display: block;
    text-align: center;
    height: 42px;
    line-height: 42px;
    color: #fff;
}
.nav li a:hover{
    background: url("../../../images/chongmei/index/nb.jpg") no-repeat center center /cover;
}
.lb_box{
    position: relative;
}
.lb_title{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 5;
    color: #fff;
    text-align: center;
}
.lb_title>img{
    width: 475px;
    height: 213px;
    opacity: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.content_box{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 5;
    padding: 25px 0;
}
.content_box h1{
    font-size: 50px;
    position: absolute;
    top: 15px;
    left: -500px;
    z-index: 5;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    opacity: 0;
}
.content_box em{
    display: block;
    font-size: 19px;
    margin: 15px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.1);
    -moz-transform: translate(-50%, -50%) scale(0.1);
    -ms-transform: translate(-50%, -50%) scale(0.1);
    -o-transform: translate(-50%, -50%) scale(0.1);
    transform: translate(-50%, -50%) scale(0.1);
    z-index: 5;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.content_box b{
    display: block;
    font-size: 25px;
    position: absolute;
    bottom: 30px;
    right: -500px;
    z-index: 5;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    opacity: 0;
}
.lb_item img{
    width: 100%;
}
.article{
    display: inline-block;
    width: 1200px;
    margin: 25px auto;
}
.product_title{
    width: 400px;
    margin: 20px auto 40px auto;
    position: relative;
    text-align: center;
    color: #fff;
    font-size: 20px;
    height: 60px;
    line-height: 50px;
}
.product_title img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.product_left{
    display: inline-block;
    vertical-align: top;
    width: 208px;
}
.product_list_nav li{
    height: 78px;
    margin: 0 0 10px 0;
    width: 100%;
    background: url("../../../images/chongmei/index/02.png") no-repeat center center / cover;
}
.product_list_nav li:hover{
    background-image: url("../../../images/chongmei/index/02a.png");
}
.product_list_nav li a{
    display: block;
    width: 100%;
    line-height: 78px;
    height: 78px;
    color: #fff;
    text-align: center;
}
.product_right{
    display: inline-block;
    vertical-align: top;
    width: 954px;
    margin-left: 30px;
}
.profuct_list{
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.profuct_list li{
    width: 210px;
    height: 250px;
    margin: 0 38px 15px 0;
}
.profuct_list li:nth-child(4n){
    margin-right: 0;
}
.profuct_list li a{
    display: block;
    text-align: center;
}
.profuct_list li a img{
    width: 100%;
    height: 210px;

}
.profuct_list li a p{
    display: block;
    margin: 10px 0;
    text-align: center;
}
.more_product{
    cursor: pointer;
    display: block;
    width: 100%;
    height: 110px;
    background: url("../../../images/chongmei/index/1.jpg") no-repeat center center / 100% 100%;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    margin-top: -17px;
}
.more_product:hover{
    background-image: url("../../../images/chongmei/index/2.jpg");
}
.article_info{
    background: url("../../../images/chongmei/index/bg.png");
}
.introduction{
    width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.introduc_left{
    width: 458px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    height: 394px;
}
.introduc_left:before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 359px;
    height: 394px;
    border: 3px solid #de020b;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 0;
}
.introduc_left .swiper-container {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.introduc_left .swiper-wrapper {
    height: 300px;}
.introduc_left img{
    position: absolute;
    display: block;
    width: 100%;
    top: 50%;
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 4px solid #fff;
}

.introduc_middle{
    width: 455px;
}
.introduc_right{
    width: 200px;
}
.introduc_middle>h1{
    color: #de020b;
    font-weight: bold;
    font-size: 28px;
}
.introduc_middle>em{
    color: #de020b;
    font-size: 16px;
}
.content_txt{
    margin: 15px 0;
    text-indent: 30px;
    line-height: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    height: 200px;
    overflow: hidden;
}
.introduc_middle>a{
    display: inline-block;
    width: 150px;
    color: #fff;
    height: 50px;
    line-height: 50px;
    background-color: #de020b;
    cursor: pointer;
    text-align: center;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.introduc_middle div{
    display: block;
    margin-top: 15px;
}
.introduc_middle div *{
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    color: #000;
}
.introduc_middle div img{
    width: 35px;
}
.introduc_middle div span i{
    font-size: 12px;
    display: block;
}
.introduc_middle div span em{
    width: 60px;
    font-size: 14px;
}
.introduc_middle div b{
    font-size: 18px;
    color: #de020b;
}
.link_top{
    position: relative;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.link_top img{
    width: 100%;
}
.link_top a{
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 10px 0;
    text-align: center;
    color: #fff;
    background: rgba(91, 15, 0, .64);
}
.roll_list{
    width: 100%;
}
.roll_list li{
    display: inline-block;
    vertical-align: middle;
    width: 200px;
    margin: 10px;
}
.roll_list li a img{
    width: 100%;
}
.words{
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.words_left{
    width: 458px;
}
.words_right{
    width: 741px;
}
.words_left{
    background: #de020b;
}
.words_left h2{
    display: block;
    padding: 15px 0;
    text-align: center;
    color: #fff;
    font-size: 18px;
}
.words_form{
    position: relative;
}
.row{
    width: 100%;
    margin: 20px 0;
    display: inline-block;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    display: flex;
}
.row i{
    display: inline-block;
    vertical-align: middle;
    padding: 0 10px;
    width: 15%;
    color: #fff;
}
.row input, .row textarea{
    display: inline-block;
    vertical-align: middle;
    width: 75%;
    border: none;
    background: #fff;
    outline: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    height: 40px;
    line-height: 40px;
    margin-right: 40px;
    padding: 0 5px;
}
.row textarea{
    height: 100px;
}
.row button{
    display: block;
    background-color: #ffd966;
    border-style: solid;
    border-width: 0;
    line-height: 40px;
    height: 40px;
    width: 75%;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-border-radius: 3px;
    text-align: center;
    color: #fff;
    margin-top: 5px;
}
.first_news{
    display: inline-block;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    display: flex;
}
.first_news>a{
    display: inline-block;
    vertical-align: middle;
    width: 180px;
}
.first_news>a img{
    width: 100%;
}
.first_news_right{
    width: 75%;
    padding-left: 20px;
}
.first_news_right h3 a{
    color: #de020b;
    font-size: 18px;
}
.news_content{
    margin: 10px 0;
    text-indent: 30px;
    font-size: 13px;
    color: #000;
}
.first_news_right>a{
    display: inline-block;
    width: 106px;
    color: #fff;
    height: 39px;
    line-height: 39px;
    background-color: #de020b;
    cursor: pointer;
    text-align: center;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.news_list{
    display: block;
    margin: 10px 0;
}
.news_list li{
    display: block;
    position: relative;
    border-bottom: 1px dashed #e1e1e1;
}
.news_list li a{
    display: block;
    width: 100%;
    padding: 10px 0 15px 0;
}
.news_list li a:hover{
    color: #de020b;
}
.news_list li a em{
    float: right;
    font-size: 14px;
}
.words_right{
    padding: 20px;
    border: 1px solid #dedede;
}
footer{
    background-color: rgb(61, 61, 61);
}
.footer_main{
    display: inline-block;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 20px 0;
}
.foot_left{
    width: 30%;
    color: #fff;
    line-height: 30px;
    font-size: 14px;
}
.foot_mid{
    width: 40%;
    color: #fff;
    text-align: center;
}
.foot_right{
    width: 30%;
    color: #fff;
}
.foot_left h3,.foot_right h3{
    margin-bottom: 10px;
}
.qr_code span{
    display: inline-block;
    vertical-align: middle;
    width: 122px;
    overflow: hidden;
    margin: 10px;
}
.qr_code span img{
    width: 100%;
    height: 122px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    margin-bottom: 10px;
}
.qr_code span i{
    color: #fff;
    display: block;
    text-align: center;
    width: 100%;
}
.foot_mid>p{
    display: inline-block;
    padding: 2px 6px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    font-size: 14px;
    margin: 0 auto;
}
.foot_nav li{
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px;
    width: 160px;
}
.foot_nav li a{
    font-size: 14px;
    color: #fff;
}
.menu{
    display: none;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 22px;
    z-index: 5;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.mobali_show{
    display: none;
}
.mobail_more_pro,.mobail_addr{
    display: none;
}

.mobail_addr_info{
    padding: 0 5px 20px 20px;
    color: #000;
}
.mobail_addr_info h3{
    margin-bottom: 20px;
}
.mobail_addr_info p{
    line-height: 30px;
    font-size: 14px;
}
.mobeil_text_show{
    display: none;
}
.swiper-pagination-bullet-active{
    background: #fff;
}
.an_roll{
    width: 100%;
}
.an_roll .swiper-slide img{
    width: 100%;
    max-width: 172px;
    height: 100%;
    max-height: 130px;
}

.min_banner{
    position: relative;
    margin: 0px auto;
    width: 100%;
    /*background: url("../../../images/chongmei/index/l2.jpg") no-repeat center 100%;*/
}
.min_banner img{ width:100%;max-height: 400px; min-height: 150px;}
.min_banner_content{
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    max-width: 600px;
    min-width: 300px;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 5;
    padding: 25px 0;
}
.min_banner_content h1{
    font-size: 40px;
    text-align: center;
    position: absolute;
    top: 30%;
    left: -500px;
    z-index: 5;
    width: 360px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    opacity: 0;
}
.min_banner_content em{
    display: block;
    font-size: 15px;
    margin: 15px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width:280px;
    -webkit-transform: translate(-50%, -50%) scale(0.1);
    -moz-transform: translate(-50%, -50%) scale(0.1);
    -ms-transform: translate(-50%, -50%) scale(0.1);
    -o-transform: translate(-50%, -50%) scale(0.1);
    transform: translate(-50%, -50%) scale(0.1);
    z-index: 5;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.min_banner_content b{
    display: block;
    font-size: 18px;
    position: absolute;
    bottom: 30%;
    right: -500px;
    z-index: 5;
    width:280px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    opacity: 0;
}
.body_main_left{
    width: 251px;
    background: #f0f0f0;
    float: left;
}
.body_main_left ul li{
    width: 208px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    float: left;
    margin-top:14px;
    margin-left:20px;
    background: url("../../../images/chongmei/index/left_menu_hui.png") center no-repeat;
}
.body_main_left ul li:hover{background: url("../../../images/chongmei/index/left_menu_red.png") center no-repeat;}
.body_main_left ul li a{
    color: #FFFFFF;
}
.body_main_left_contact_us{
    float: left;
}
.body_main_left_contact_us .bg_title{
    width: 251px;
    height:100px;
    background: url("../../../images/chongmei/index/contactus.png") center no-repeat;
}
.body_main_left_contact_us .bg_title_cont{
    width: 251px;
    height:auto;
    background: #ffffff;
}
.body_main_left_contact_us .bg_title_cont p{
    font-size: 14px;
    line-height: 28px;
}
.body_main_right{
    width: 949px;
    float: left;
}
.body_main_right_all{
    width:909px;
    margin: 40px 0 0 40px;
}
.body_main_right_title{
    position: relative;
    height: 40px;
    line-height: 40px;
    background:url("../../../images/chongmei/index/content_top_bg.png") left no-repeat;
}
.body_main_right_title span{
    margin: 0 0 0 40px;
}
.body_main_right_title span a{
    font-size: 14px;
}
.body_main_right_content{
    word-break: break-all;
    width: 909px;
}
.clear{clear: both;}
.height20px{height: 20px; line-height: 20px;}
.height10px{height: 10px; line-height: 10px;}
.whitebg{background: #ffffff;}
.redbg{background: url("../../../images/chongmei/index/left_menu_red.png") center no-repeat !important;}
.pc_show{display: block;}
.mobile_show{display:none; }
.pc_position{margin: 0px auto;}
.ssortlist{margin: 0px auto;}
.ssortlist ul li{
    float: left;
    width: 100px; height: 30px; line-height: 30px; font-size: 14px; font-style: inherit;
    border: 1px solid #CCCCCC; margin-right: 15px; margin-bottom: 8px;text-align: center;
}
.ssortlist ul li:hover{background: #CF2626;}
.ssortlist ul li:hover a{color: #ffffff; }
.redbg2{background: #CF2626;}
.redbg2 a{color: #ffffff; }

.showpage ul li{
    float: left; margin-right: 10px;
    padding: 2px 5px 2px 5px;
}
/*分页*/
.pagination {display: inline-block; padding-left: 0; margin: 10px 0; border-radius: 4px; }
.pagination li { display: inline; }
.pagination li a,.pagination li span { position: relative; float: left; padding: 6px 12px; margin-left: -1px; line-height: 1.428571429; text-decoration: none; background-color: #fff; border: 1px solid #ddd; }
.pagination li:first-child a { margin-left: 0; border-bottom-left-radius: 4px; border-top-left-radius: 4px; }
.pagination li:last-child a { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }
.pagination li a:hover, .pagination li a:focus { background-color: #eee; }
.pagination .active span, .pagination .active span:hover, .pagination .active span:focus { z-index: 2; color: #fff; cursor: default; background-color: #CF2626; border-color: #CF2626; }
.pagination .disabled span, .pagination .disabled span:hover, .pagination .disabled span:focus { color: #999; cursor: not-allowed; background-color: #fff; border-color: #ddd; }
.pagination-lg li a { padding: 10px 16px; font-size: 18px; }
.pagination-sm li a, .pagination-sm li span { padding: 5px 10px; font-size: 12px; }
/*-----------------------------*/
.product_list{
    width: 100%;
}
.product_list ul li{
    float: left; margin-right: 17px; margin-bottom: 20px;
    width: 210px;
    height: 250px;
    border: 1px solid #CCCCCC;
}
.product_list ul li p{text-align: center;}
.product_list ul li img{
    width: 180px;height: 190px;
    margin: 15px 15px 15px;
}
.product_content{
    width: 100%;
}
.product_content h1{font-size: 20px;  text-align: center; border-top:1px dashed #CCCCCC;  line-height: 30px;}
.product_content h3{font-size: 13px; text-align: center; color: #999999;border-bottom:1px dashed #CCCCCC;line-height: 30px;}
.product_content .pimg { text-align: center;}
.product_content p img{max-width: 750px;}
#bigpic{max-width:450px;}
.product_content .pimg2 { text-align: left;width:100%;}
.product_content .showminpic{margin: 0px auto;}
.product_content .showminpic li{width:136px; height:109px;float: left; margin:0px 10px 10px 0px;}
.product_content .showminpic li:hover{opacity:0.4;filter:alpha(opacity=40);}
.product_content .showminpic li img{width: 136px; height: 109px;}

.borderbottom1px{border-bottom: 1px dashed #CCCCCC;}
.nextprev p{
    font-size: 14px; margin:10px;
}

.allnews{
    width: 100%;
}
.allnews li{
    float: left;
    width: 100%;
    height: 100px;
    border-bottom: 1px dashed #CCCCCC;
}
.news_time_box{
    float: left;
    width: 62px;
    height: 62px;
    margin: 22px 10px 13px 0;
    background: #666666;
    color: #FFFFFF;
}
.news_time_box .p1{
    height:38px; line-height: 38px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
.news_time_box .p2{
    height:24px; line-height: 24px;
    text-align: center;
    font-size: 13px;
}
.news_title_box{
    float: left;
    width: 820px;
    margin: 22px 0;
}
.news_title_box .p3{
    height:26px; line-height: 26px;
    text-align: left;
    font-size: 22px;
    color: #5A5A5A;
}
.news_title_box .p4{
    line-height: 16px;
    text-align: left;
    font-size: 14px;
    color: #999999;
}
@media screen and (max-width: 720px){
    .product_content p img{width:99%; height: auto;}
    .product_content .showminpic li{width:130px; height:90px;float: left; margin-right: 10px; margin-bottom: 10px;}
    .product_content .showminpic li:hover{opacity:0.4;filter:alpha(opacity=40);}
    .product_content .showminpic li img{width: 130px; height: 90px;}
    .menu{
        display: block;
        position: absolute;
        top: 50%;
        right: 10px;
        width: 22px;
        z-index: 5;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
    /*分页*/
    .pagination {display: inline-block; padding-left: 0; margin: 10px 0; border-radius: 4px; }
    .pagination li { display: inline; }
    .pagination li a,.pagination li span { position: relative; float: left; padding: 4px 8px; margin-left: -2px; line-height: 1.428571429; text-decoration: none; background-color: #fff; border: 1px solid #ddd; }
    .pagination li:first-child a { margin-left: 0; border-bottom-left-radius: 4px; border-top-left-radius: 4px; }
    .pagination li:last-child a { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }
    .pagination li a:hover, .pagination li a:focus { background-color: #eee; }
    .pagination .active span, .pagination .active span:hover, .pagination .active span:focus { z-index: 2; color: #fff; cursor: default; background-color: #CF2626; border-color: #CF2626; }
    .pagination .disabled span, .pagination .disabled span:hover, .pagination .disabled span:focus { color: #999; cursor: not-allowed; background-color: #fff; border-color: #ddd; }
    .pagination-lg li a { padding: 10px 16px; font-size: 18px; }
    .pagination-sm li a, .pagination-sm li span { padding: 5px 10px; font-size: 12px; }
    /*-----------------------------*/
    /*地毯知识*/
    .allnews_mobile{
        width: 100%;
    }
    .allnews_mobile li{
        float: left;
        width: 100%;
        height: 100px;
        border-bottom: 1px dashed #CCCCCC;
    }
    .news_time_box{
        float: left;
        width: 62px;
        height: 62px;
        margin: 22px 10px 13px 0;
        background: #666666;
        color: #FFFFFF;
    }
    .news_time_box .p1{
        height:38px; line-height: 38px;
        text-align: center;
        font-size: 24px;
        font-weight: bold;
    }
    .news_time_box .p2{
        height:24px; line-height: 24px;
        text-align: center;
        font-size: 13px;
    }
    .news_title_box{
        float: left;
        width: 220px;
        margin: 22px 0;
    }
    .news_title_box .p3{
        height:26px; line-height: 26px;
        text-align: left;
        font-size: 18px;
        color: #5A5A5A;
    }
    .news_title_box .p4{
        line-height: 16px;
        text-align: left;
        font-size: 14px;
        color: #999999;
    }
    /*-----*/
    .product_list{
        width: 100%;
    }
    .product_list ul li{
        float: left; margin-right: 5px; margin-bottom: 5px;
        width: 140px;
        height: 160px;
        border: 1px solid #CCCCCC;
    }
    .product_list ul li p{text-align: center; line-height: 22px;}
    .product_list ul li img{
        width: 130px;height: 130px;
        margin: 4px 4px 0 4px;
    }



    .body_main{}
    .pc_show{display: none;}
    .mobile_show{display: block;}
    .mobile_info{
        padding: 0 5px 20px 20px;
        color: #000;
        font-size: 14px;
    }
    .mobile_info h3{
        margin-bottom: 20px;
    }
    .mobile_info p{
        line-height: 30px;
        font-size: 14px;
    }
    .ssortlist ul li{
        text-align: center;
        border: 1px solid #cccccc;
        margin: 2px;
        float: left;
        width: 48%;
        height: 30px; line-height: 30px;
    }
    .header_top,.logo>img,.logo>div em,.ry,.search,.lb_title>img,.product_left{
        display: none;
    }
    .lb_box .swiper-button-next,.lb_box .swiper-button-prev{
        display: none;
    }
    .header_body_main{
        width: 100%;
        padding: 12px 4px;
        background: rgb(204, 0, 0);
        color: #fff;
    }
    .logo>div h2{
        font-size: 16px;
    }
    .logo>div h2 a{
          color: #FFFFFF;
      }
    .nav{
        width: 100%;
        display: none;
        justify-content: normal;
        position: absolute;
        top: 47px;
        left: 0;
        z-index: 20;
        background: rgb(204, 0, 0);
    }
    .nav li{
        display: block;
        width: 100%;
        border-bottom: 1px solid #f1f1f1;
    }
    .content_box h1{
        font-size: 20px;
        position: relative;
        top: -30px;
        left: -20px!important;
    }
    .content_box em{
        position: relative;
        top: -20px;
        left: 50%;
        font-size: 14px;
    }
    .content_box b{
        display: none;
    }
    .min_banner_content{
        width: 330px;

    }
    .min_banner_content h1{
        font-size: 20px;
        position: relative;
        width: 100%;
        top: 10px;
        left: -20px!important;
    }
    .min_banner_content em{
        position: relative;
        top: 20px;
        left: 50%;
        font-size: 14px;
    }
    .min_banner_content b{
        display: none;
    }

    .body_main,.product_right{
        width: 100%;
        margin-left: 0;
    }
    .profuct_list{
        /*display: block;*/
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
    .article{
        width: 100%;
    }
    .product_title{
        width: 80%;
        line-height: 36px;
    }
    .product_title h3{
        font-size: 13px;
    }
    .profuct_list li{
        width: 45%;
        display: inline-block;
        vertical-align: top;
        margin: 8px;
    }
    .profuct_list li a img{
        width: 100%;
        height:146px;
    }
    .introduction{
        width: 100%;
        padding: 50px 15px
    }
    .mobail_hideen{
        display: none;
    }
    .introduc_left,.introduc_right,.introduc_middle div img,.introduc_middle div *{
        display: none;
    }
    .mobali_show{
        display: block;
        width: 100%;
        padding-bottom: 20px;
    }
    .mobail_more_pro{
        display: block;
        margin: 0 auto;
        width: 100px;
        color: #fff;
        height: 38px;
        line-height: 38px;
        background-color: #de020b;
        cursor: pointer;
        text-align: center;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }
    .mobail_addr{
        display: block;
    }
    .mobail_addr .product_title{
        margin-bottom: 10px;
    }
    .footer_main{
        display: block;
        justify-content: normal;
        width: 100%;
    }
    .footer_main .foot_left,.footer_main .foot_right{
        display: none;
    }
    .qr_code{
        display: none;
    }
    .foot_mid>p,.foot_mid{
        display: block;
        width: 95%;
        text-align: center;
        margin: 0 auto;
    }
    .mobeil_text_show{
        display: block;
        text-align: center;
        line-height: 26px;
        font-size: 14px;
    }
    .content_box{
        width: 320px;
    }
    .profuct_list li:nth-child(4n){
        margin: 8px;
    }
}