.page-product {
    width: 100%;
    padding-bottom: 30px;
    background: #f4f9fc;
}

.page-product .product-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 60px;
}

.page-product .product-list .card {
    padding-bottom: 20px;
    margin-bottom: 38px;
    border: 1px solid #DCDFE6;
    transition: all ease .2s;
    background: #ffffff;
    border-radius: 4px;
    width: 100%;
    height: 100%;
}

.page-product .product-list .card:hover {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    border-color: transparent;
    box-shadow: 0 0 30px #DCDFE6;

}

.page-product .info {
    padding: 0 14px;
}

.page-product .product-list .card img.cover {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.page-product .info .title {
    height: 24px;
    line-height: 24px;
    padding-left: 8px;
    border-left: 3px solid #FCB814;
    font-size: 18px;
    font-weight: bold;
}

.page-product .info .desc {
    margin-top: 15px;
    color: #909399;;
    line-height: 1.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

.page-product .card a {
    display: block;
    width: 100%;
    margin-top: 20px;
    text-align: right;

}

.page-product a .h-button {
    color: #fff;
    background-color: #409eff;
    border-color: #409eff;
}