/*
 * @Author: fuy
 * @Date: 2020-06-23 11:18:19
 * @LastEditTime: 2020-06-24 17:05:33
 * @LastEditors: fuy
 * @Description: 产品列表页样式
 * @FilePath: /lihua/css/products.css
 */ 
/* poster */
.poster {
    width: 100%;
    height: 300px;
    background: url(../images/poster-03.png) no-repeat center;
    background-size: cover;
    /* 此处加上-ms前缀，让IE识别 */
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/poster-03.png',sizingMethod='scale')";
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/poster-03.png',sizingMethod='scale');
    /* \9 是 IE的CSS hack,IE9以下识别，不包括IE 9 */
    background: none\9;
    position: relative;
    z-index: 1;
}
/* poster end */

/* cont */
.cont-r-list ul li {
    list-style: none;
    width: 250px;
    height: 300px;
    float: left;
    margin: 0 11px;
}

.cont-r-list ul li p {
    width: 100%;
    line-height: 50px;
    text-align: center;
    color: #333333;
    font-size: 16px;
}

.cont-r-list ul li p:hover {
    color: #0082d6;
}

.cont-r-list ul li img {
    width: 100%;
    height: 245px;
    float: left;
}
/* cont end */
