.top-picks-page{
    width: 100%;
    max-width: 1400px;
    margin: auto;
}
.top-container{
    margin-top: 40px;
    color: #1D1D1F;
}
.top-container .page-title{
    font-size: 54px;
    display: flex;
    align-items: center;
}
.top-container .page-title::before{
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    background: url('/wp-content/themes/southchip-pro/assets/img/page/single/Hot.webp');
    background-size: cover;
}
.top-container .page-content{
    width: 100%;
    max-width: 860px;
    color: rgba(29, 29, 31, 0.7);
    font-size: 14px;
    margin: 20px 0 40px;
}
.top-container .page-block{
    height: 38px;
    width: 100%;
    background: rgba(116,116,128,0.08);
}
.top-picks-page .content-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.top-picks-page .content-container .column{
    min-width: 25%;
}
.top-picks-page .content-container .column .sort{
    display: inline-block;
    min-width:22px ;
    min-height: 22px;
    text-align: center;
    margin-right: 5px;
}
.top-picks-page .content-container .column:nth-child(1) li:nth-child(1) .sort{
    color: transparent;
    background: url("/wp-content/themes/southchip-pro/assets/img/page/single/first.png");
}
.top-picks-page .content-container .column:nth-child(1) li:nth-child(2) .sort{
    color: transparent;
    background: url("/wp-content/themes/southchip-pro/assets/img/page/single/second.png");
}
.top-picks-page .content-container .column:nth-child(1) li:nth-child(3) .sort{
    color: transparent;
    background: url("/wp-content/themes/southchip-pro/assets/img/page/single/third.png");
}
.top-picks-page .content-container a{
    color: #1D1D1F;
    display: inline-block;
    padding: 10px 0;
}
.top-picks-page .content-box{
    position: relative;
    padding:40px 0 350px;
}
.top-picks-page .content-box .product-box img{
    width: 224px;
    height: 200px;
}
.top-picks-page .content-box .product-box{
    position: absolute;
    display: flex;
    
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    background: #FFFFFF;
    width: 264px;
    padding: 20px;
    box-sizing: border-box;
    min-height:200px;
    border: solid 1px rgba(60, 60, 67, 0.30);
    border-radius: 4px;
    box-shadow: 
        6px 8px 6px 0px rgba(0, 0, 0, 0.08),
        2px 4px 2px 0px rgba(0, 0, 0, 0.04),
        10px 10px 8px 0px rgba(0, 0, 0, 0.06);
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.7);
    pointer-events:none;
    transition: all 0.3s ease;
}
.top-picks-page .content-box .product-box.show{
    transform: scale(1);
    visibility:visible;
    opacity: 1;
}

.top-picks-page .content-box .product-box .box-title{
    width: 100%;
    min-height:64px;
    font-size: 24px;
    line-height: 32px;
    color: #1D1D1F;
    font-weight: 900;
    margin-bottom: 10px;
    word-break:break-all
}
.top-picks-page .content-box .product-box .box-desc{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.top-picks-page .content-box .product-box .box-desc .box-price{
    font-size: 17px;
    font-weight: 900;
    color: #FF3B30;
}
.top-picks-page .content-box .product-box .box-desc .box-stock{
    font-size: 17px;
font-weight: 900;
color: #1D1D1F;
}
.top-picks-page .content-box .product-box .box-desc .box-text{
    font-size: 12px;
font-weight: 900;
color: #8E8E93;
}

@media screen and (max-width: 768px) {
    .top-picks-page{
        padding: 0 20px;
        box-sizing: border-box;
    }
    .top-container .page-title{
        font-size: 28px;
        align-items: flex-start;
    }
    .top-picks-page .content-container{
        flex-direction: column;
        margin-left: 40px;
    }
}