
html body {
    background: #f7f7f7;
}
/*搜索产品功能*/
.search-list {
    margin: 0 0 15px 0;
}
.search-list .search {
    position: relative;
}
.search-list .search .keywords {
    width: 100%;
    padding: 15px 0 15px 50px;
    background: #f7f7f7;
    border-bottom: 1px solid #eee;
}
.search-list .search .bottom {
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translate(0%, -50%);
    width: 30px;
    height: 30px;
    background: url(../images/search-fix.svg) no-repeat center/24px;
    opacity: 1;
}

.search-list .search .bottom:hover {
    opacity: 0.8;
}
.search-list .search input.keywords:focus {
    border-bottom: 1px solid #e5002d;
}
/*搜索产品功能 end*/

/*产品列表*/
.product-list {
    margin:0  0 0 0;
}
.product-list ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2%;
}
.product-list ul li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 23.5%;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 2%;
    background: #fff;
}
.product-list ul li::after {
    content: "热销";
    padding: 0 10px;
    height: 26px;
    line-height: 26px;
    color: #fff;
    position: absolute;
    border-radius: 5px;
    z-index: 1;
    top: 20px;
    left: 20px;
    background: #e30920;
}

.product-list ul li a {
    display: block;
    width: 100%;
}
.product-list ul li .photo {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0% 0 0 0;
    padding-top: 120%;
	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%;
    padding: 0 10%;
    transition: all 0.6s ease;
}
.product-list ul li .photo .pic:before {
	content:"";
	position:absolute;
	width:80px;
	height:850px;
	top:0;
	left:-150px;
	z-index: 999999999999999999;
	overflow:hidden;
	background:-moz-linear-gradient(left,rgba(255,255,255,0)0,rgba(255,255,255,.2)50%,rgba(255,255,255,0)100%);
	background:-webkit-gradient(linear,left top,righttop,color-stop(0%,rgba(255,255,255,0)),color-stop(50%,rgba(255,255,255,.2)),color-stop(100%,rgba(255,255,255,0)));
	background:-webkit-linear-gradient(left,rgba(255,255,255,0)0,rgba(255,255,255,.2)50%,rgba(255,255,255,0)100%);
	background:-o-linear-gradient(left,rgba(255,255,255,0)0,rgba(255,255,255,.2)50%,rgba(255,255,255,0)100%);
	-webkit-transform:skewX(-25deg);
	-moz-transform:skewX(-25deg);
	-o-transform:skewX(-25deg);
	
}
.product-list ul li:hover .photo .pic:before {
	left:600px;
	transition:left 2s ease 0s;
}
.product-list ul li:hover {
    box-shadow: 0 10px 15px 8px rgba(0, 0, 0, 0.05);
}
.product-list ul li:hover .photo .pic img {
    transform: scale(1.05);
}

.product-list ul li .word {
    padding: 0 0 40px 0;
    overflow: hidden;
}
.product-list ul li .word h3 {
    font-size: 22px;
    color: #333;
    text-align: center;
}
.product-list ul li:hover .word h3 {
    color: #e4002b;
}
.product-list ul li .word h4 {
    font-size: 18px;
    color: #777;
    text-align: center;
    padding:15px 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.product-list ul li .word p {
    text-align: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}
.product-list ul li .word p span {
    font-size: 15px;
    color:#e6213a;
}
.product-list ul li .word p span::after {
    content: "";
    width: 30px;
    height: 30px;
    background: url(../images/go-right.svg) no-repeat center center/26px;
    margin: 0 5px;
    display: inline-block;
    vertical-align: middle;
}

@media screen and (max-width:1024px){
.product-list {}
.product-list ul {
    gap: 4%;
}
.product-list ul li {
    width: 48%;
    margin-bottom:4%;
}
.product-list ul li::after {
    padding: 0 10px;
    font-size: 12px;
    height: 26px;
    line-height: 26px;
    top: 10px;
    left: 10px;
}
.product-list ul li .photo {
    margin: 20% 0 0 0;
}
.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 .word {
    padding: 0 0 20px 0;
    overflow: hidden;
}
.product-list ul li .word h3 {
    height: 50px;
    font-size: 16px;
    line-height: 1.6;
    
}
.product-list ul li .word h4 {
    font-size: 14px;
}
.product-list ul li .word p {
    display: none;
}
}
/*产品列表 end*/
