.main-content .product-select{
    margin-top: 40px;
}
.main-content .product-select .product-select-category,
.main-content .product-select .product-select-profession{
    width: 42.5%;
    height: 60px;
    border: none;
    background-color: #F3F2F9;
    padding: 0 20px;
    font-size: 20px;
    color: #666666;
    line-height: 60px;
    float: left;
}
.main-content .product-select .product-select-category option,
.main-content .product-select .product-select-profession option{
    background-color: #FFFFFF;
    font-size: 16px;
}
.main-content .product-select .product-select-category{
    margin-left: 2.5%;
}
.main-content .product-select .product-select-btn{
    width: 10%;
    height: 60px;
    background: #0070D9;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 60px;
    text-align: center;
    float: right;
    cursor: pointer;
}



/**** product list style ****/
.product_list_warp{
    margin-top: 40px;
}
.product_list{
    display: flex;
    flex-wrap: wrap;
}
.product_list .product_item{
    width: 24%;
    margin-right: 1.33%;
    margin-bottom: 40px;
    cursor: pointer;
}
.product_list .product_item:nth-child(4n){
    margin-right: 0;
}
.product_list .product_item .product_list_item_img{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.product_list .product_item .product_list_item_img img{
    width: 100%;
    height: 100%;
}
.product_list .product_item .product_list_item_img::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
    transform: skewX(-25deg);
}
.product_list .product_item:hover .product_list_item_img::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 100%;
    }
}
.product_list .product_item .product_list_item_title{
    font-weight: bold;
    font-size: 16px;
    color: #333333;
    line-height: 20px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product_list .product_item .product_list_item_category{
    font-size: 14px;
    color: #999999;
    line-height: 16px;
    margin-top: 10px;
}
.product_list .product_item:hover .product_list_item_title{
    color: #2980D3;
}

.products-content-right-page{
    display: flex;
    justify-content: center;
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .product_list .product_item .product_list_item_title{
        font-size: 14px;
        line-height: 20px;
    }
}

@media only screen and (max-width: 1000px) {
    .product_list .product_item .product_list_item_title{
        font-size: 12px;
        line-height: 16px;
    }
    .product_list .product_item .product_list_item_category{
        font-size: 12px;
        margin-top: 4px;
    }
}