/* 
* @Author: anchen
* @Date:   2023-07-26 09:44:11
* @Last Modified by:   anchen
* @Last Modified time: 2023-07-26 17:26:03
*/

/*搜索产品功能*/
.search-list {}
.search-list .search {
    position: relative;
}
.search-list .search .keywords {
    width: 100%;
    padding: 15px 0 15px 50px;
    border-bottom: 1px solid rgb(245, 245, 245);
    background: none;
}
.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 #f4de26;
    *background: #fff;
}
/*搜索产品功能 end*/

.product-box {
    padding:0.5rem 0;
}
.product-box .item {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
/*产品列表*/
.product-list {
    width:100%;
}
.product-list ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2%;
}
.product-list ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 18%;
    
    border-radius: 4px;
    margin-bottom: 2%;
}
.product-list ul li a {
    width:100%;
}
.product-list ul li .photo {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 69%;
    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%;
}
.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: 0.2rem 0;
    overflow: hidden;
}
.product-list ul li .word h3 {
    font-size: 0.18rem;
    color: #333;
    text-transform: uppercase;
    font-family: "Futura-Medium";
    text-align: center;
    padding-bottom: 10px;
    
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.product-list ul li:hover .word h3 {
    color: #333;
}
.product-list ul li .word p {
    font-size: 12px;
    color: #999;
    text-align: center;
    
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

@media screen and (max-width:1024px){
.product-list {
    width:100%;
}
.product-list ul {}
.product-list ul li {
    width: 49%;
}
.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 {
}

.product-list ul li .word {
    padding: 0.2rem 0;
    overflow: hidden;
}
.product-list ul li .word h3 {
    font-size: 0.14rem;
    padding-bottom: 5px;
    
}
.product-list ul li .word p {
    font-size: 0.12rem;
    color: #999;
}
}
/*产品列表 end*/