
/* banner 在common.css中 */
/* 面包屑 在common.css中 */


/* 产品中心.html */
/* 产品列表 */
.pro_list {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0 0.8rem 0.65rem;
    background: #F5F5F5;
    
}
.pro_list .lineTwo {
    position: relative;
    width: 100%;
    padding: 0.65rem 0 0.65rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.01rem solid #CFCFCF;
}
.pro_list .lineTwo:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    width: 0.05rem;
    height: 1rem;
    background: #fff;
}
.pro_list .li {
    width: 40%;
}
.pro_list .li .pro_img {
    display: block;
    width: 100%;
    height: 3.1rem;
    background-image: url("../images/common/product_bgc23.jpg");
    background-size: cover;
}

.pro_list .li .pro_img img{
    object-fit: contain;
}
.pro_list .li .pro_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 0.3rem;
}
.pro_list .li .t1 {
    display: none;
    font-size: 0.28rem;
    font-family: Source Han Sans CN-Medium, Source Han Sans CN;
    font-weight: 500;
    color: #333333;
}
.pro_list .li .t2 {
    margin-top: 0;
    font-size: 0.16rem;
    /* font-family: Source Han Sans CN-Medium, Source Han Sans CN; */
    font-weight: 400;
    color: #666666;
    line-height: 0.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: none;
}
.pro_list .li .zixun {
    display: block;
    width: 1.28rem;
    height: 0.4rem;
    margin-top: 0;
    border: 0.01rem solid #666666;
    font-size: 0.16rem;
    font-weight: 400;
    color: #666666;
    line-height: 0.4rem;
    text-align: center;
}
/* hover状态 */
.pro_list .li:hover {
    border-color: #167BD4;
}
.pro_list .li:hover .t1 {
    color: #167BD4;
}
.pro_list .li .zixun:hover {
    color: white;
    background-color: #167BD4;
    border: none;
}


.textExplain {
    width: 100%;
    margin-top: 0.5rem;
    /*padding: 0.3rem;*/
    /*background: rgba(236,240,241,1);*/
    border-radius: 0.05rem;
}




