body {
    background: #f9f9f9 !important;
}


/*产品列表*/
.product-list {
    margin: 3% 0 0 0;
}
.product-list ul {}
.product-list ul li {
    position: relative;
    float: left;
    width: 23.5%;
    margin: 0 2% 2% 0;
    background: #fff;
}
.product-list ul li::after {
    display: none;
    opacity: 0;
    content: "";
    padding: 0 10px;
    width: 50px;
    height: 50px;
    color: #fff;
    position: absolute;
    border-radius: 5px;
    z-index: 1;
    top: 20px;
    left: 20px;
    background: url(../images/news.png) no-repeat right center/100%;
    -webkit-filter: grayscale(0%);
}
.product-list ul li.is0::after {
    display: none;
}
.product-list ul li:nth-child(4n) {
    margin-right: 0;
}
.product-list ul li .photo {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 0;
    padding-top: 70%;
    background: #f9f9f9;
	overflow:hidden;
}

.product-list ul li .photo .pic {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-list ul li .photo .pic img {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.6s ease;
}
.product-list ul li:hover .photo .pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-list ul li .photo .effect {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.product-list ul li:hover .photo .effect {
    display: block;
}
.product-list ul li .photo .effect img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-list ul li .word {
    padding: 20px 0;
    overflow: hidden;
}
.product-list ul li:hover .word {
    background: #d1292e;
}
.product-list ul li .word h3 {
    font-size: 16px;
    color: #2d2926;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.product-list ul li:hover .word h3 {
    color: #fff;
}

@media screen and (max-width:1024px){
.product-list {}
.product-list ul {}
.product-list ul li {
    width: 46%;
    margin: 2%;
}
.product-list ul li:nth-child(3n) {
    margin-right: 2%;
}
.product-list ul li::after {
    width: 50px;
    height: 50px;
    top: 5px;
    left: 5px;
}
.product-list ul li .photo {
    padding-top: 100%;
}

.product-list ul li .photo .pic {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-list ul li .photo .pic img {
    max-width: 100%;
    max-height: 100%;
}
.product-list ul li:hover .photo .pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-list ul li .photo .effect {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.product-list ul li:hover .photo .effect {
    display: block;
}
.product-list ul li .photo .effect img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-list ul li .word {
    padding: 20px 0;
    overflow: hidden;
}
.product-list ul li .word h3 {
    font-size: 14px;
}
}
/*产品列表 end*/