/* 导航按钮-向右 */
.nav-btn-right{
    width: max-content;
    padding: 0 1.375rem;
    height: 2.75rem;
    border: #000000 solid 1px;
    border-radius: 1.4375rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.nav-btn-right-title{
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    margin-right: 1.75rem;
}
.nav-btn-right-icon{
    width: 1.125rem;
    /*height: 0.4375rem;*/
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.nav-btn-right-icon-img{
    width: 1.125rem;
    /*height: 0.4375rem;*/
    object-fit: contain;
}
.nav-btn-right:hover{
    background: #87272a;
    border: #87272a solid 1px;
}
.nav-btn-right:hover .nav-btn-right-title{
    color: #ffffff;
}
.nav-btn-right:hover .nav-btn-right-icon-img{
    filter: grayscale(100%) brightness(1000%);
}

/* 导航按钮-向右(白色) */
.nav-btn-right-white{
    width: max-content;
    padding: 0 1.375rem;
    height: 2.75rem;
    border: #ffffff solid 1px;
    border-radius: 1.4375rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.nav-btn-right-white-title{
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    margin-right: 1.75rem;
}
.nav-btn-right-white-icon{
    width: 1.125rem;
    /*height: 0.4375rem;*/
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.nav-btn-right-white-icon-img{
    width: 1.125rem;
    /*height: 0.4375rem;*/
    object-fit: contain;
    filter: grayscale(100%) brightness(1000%);
}
.nav-btn-right-white:hover{
    background: #87272a;
    border: #87272a solid 1px;
}

/* 导航按钮-上一页 */
.navigation-btn-prev{
    /*width: 4.625rem;*/
    height: 2.75rem;
    border: #000000 solid 1px;
    border-radius: 1.4375rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 1rem;
    padding-right: 2.375rem;
}
.navigation-btn-prev-icon{
    width: 1.125rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.navigation-btn-prev-icon-img{
    width: 1.125rem;
    object-fit: contain;
}
.navigation-btn-prev:hover{
    background: #87272a;
    border: #87272a solid 1px;
}
.navigation-btn-prev:hover .navigation-btn-prev-icon-img{
    filter: grayscale(100%) brightness(1000%);
}

/* 导航按钮-下一页 */
.navigation-btn-next{
    /*width: 4.625rem;*/
    height: 2.75rem;
    border: #000000 solid 1px;
    border-radius: 1.4375rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-right: 1rem;
    padding-left: 2.375rem;
}
.navigation-btn-next-icon{
    width: 1.125rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.navigation-btn-next-icon-img{
    width: 1.125rem;
    object-fit: contain;
}
.navigation-btn-next:hover{
    background: #87272a;
    border: #87272a solid 1px;
}
.navigation-btn-next:hover .navigation-btn-next-icon-img{
    filter: grayscale(100%) brightness(1000%);
}
.navigation-btn-prev+.navigation-btn-next{
    margin-left: 0.625rem;
}

/* 推荐产品 */
.recommend-products-container{
    width: 100%;
    height: 62.5rem;
}
.recommend-products-swiper{
    width: 100%;
    height: 62.5rem;
}
.recommend-products-swiper .swiper-pagination{
    bottom: 8.125rem;
    text-align: left;
    width: 98.75rem;
    left: calc((100% - 98.75rem) / 2);
}
.recommend-products-swiper .swiper-pagination-bullet{
    background: #ffffff;
    opacity: 1;
}
.recommend-products-swiper .swiper-pagination-bullet-active{
    background: #87272a;
}
.recommend-product{
    width: 100%;
    height: 62.5rem;
    position: relative;
}
.recommend-product-poster{
    width: 100%;
    height: 62.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.recommend-product-poster-img{
    width: 100%;
    height: 62.5rem;
    object-fit: cover;
}
.recommend-product-info{
    width: 100%;
    height: calc(62.5rem - 12.5rem);
    padding-bottom: 12.5rem;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}
.recommend-product-info-wrap{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.recommend-product-sub-title{
    width: 100%;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
}
.recommend-product-title{
    width: 100%;
    padding-top: 1.25rem;
    text-align: left;
    font-size: 3.75rem;
    font-weight: 400;
    color: #ffffff;
}
.recommend-product-actions{
    width: 100%;
    padding-top: 3.125rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

/* 产品筛选 */
.product-filters-container{
    width: 100%;
    padding: 7.8125rem 0;
}
.product-filter-list{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.product-filter{
    width: 9.375rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-right: 6.25rem;
}
.product-filter:last-of-type{
    margin-right: 0;
}
.product-filter-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.product-filter-title{
    width: 100%;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 400;
}
.product-filter-options{
    width: 100%;
    padding-top: 0.625rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.product-filter-option{
    width: 100%;
    font-size: 0.9375rem;
    font-weight: 400;
    margin-bottom: 0.625rem;
}
.product-filter-option:last-of-type{
    margin-bottom: 0;
}

/* 页面导航 */
.page-nav-container{
    width: 100%;
    padding: 1.25rem 0;
    background: #ffffff;
}
.page-nav-container-content{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.page-nav-item{
    text-decoration: none;
    font-size: 0.875rem;
    text-align: left;
    color: #676767;
}
.page-nav-item-split{
    padding: 0 0.625rem;
    font-size: 1rem;
    text-align: left;
    color: #676767;
}
.page-nav-item-current{
    color: #87272a;
}

/* 分页 */
.custom-pagination{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    user-select: none;
    padding: 2.5rem 0;
}
.custom-pagination .prev, .custom-pagination .next{
    width: 2.375rem;
    height: 2.375rem;
    border: #999999 solid 1px;
    border-radius: 1.1875rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0.3125rem;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
}
.custom-pagination .prev:hover, .custom-pagination .next:hover{
    background: #87272a;
    color: #ffffff;
    border: #87272a solid 1px;
}
.custom-pagination .page{
    width: 2.375rem;
    height: 2.375rem;
    border: #999999 solid 1px;
    border-radius: 1.1875rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0.3125rem;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
}
.custom-pagination .page:hover, .custom-pagination .active{
    background: #87272a;
    color: #ffffff;
    border: #87272a solid 1px;
}