/*产品列表*/
.product-list {
    margin: 3% 0 0 0;
}
.product-list ul {}
.product-list ul li {
    float: left;
    width: 31.33%;
    margin: 0 2% 2% 0;
}

.product-list ul li:nth-child(3n) {
    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 {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    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;
    transform: scale(1.05);
}

.product-list ul li .word {
    padding: 20px 0;
    overflow: hidden;
}
.product-list ul li .word h3 {
    font-size: 18px;
    color: #3a3a3a;
    font-weight: 800;
    text-transform: uppercase;
    font-family: "Futura-Medium";

    padding-bottom: 10px;
    
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.product-list ul li:hover .word h3 {
    color: #d8bd78;
}
.product-list ul li .word p {
    font-size: 16px;
    color: #888;
    
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

@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 .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 {
    width: 100%;
    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 .word {
    padding: 20px 0;
    overflow: hidden;
}
.product-list ul li .word h3 {
    font-size: 14px;
    color: #2d2926;
    font-weight: 800;
    padding-bottom: 5px;
    
}
.product-list ul li .word p {
    font-size: 12px;
    color: #999;
}
}
/*产品列表 end*/
