/* 产品列表页面样式 */
.products-wrapper{
    width: 78%;
    display: flex; 
    flex-direction: column; 
    background-color: rgb(250, 250, 250);
    border-radius: 8px;
}
.products-list {
    width:100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    list-style-type: none;
    margin: 0 auto;
    padding: 10px 5%;
}

.products-list li {
    padding: 10px;
    display: inline-block;
    width: 260px;
    height: auto;
    margin: 5px;
}
.products-list li:hover{
    background-color: rgb(255, 239, 222);
    border: 2px solid #000000;
    border-radius: 3px;
}
.products-wrapper .page-nav{
    align-self: center;
    margin: 20px;
}
.products-list .title a h6 {
    display: inline-block;
    height: 30px;
    vertical-align: center;
}

.products-list .preview-img a img {
    display: inline-block;
    vertical-align: center;
    width: 100%;
}
.page-nav {
    align-self: center;
}
@media (max-width: 768px) {
    .products-wrapper{
        width: 100%;
    }
    .products-list li{
        width: 90%;
        margin:auto;
        padding:10px;
    }
}