:root {
    --page-padding: 60px;
    --main-color: rgb(var(--color-button-background));
    --white: #fff;

    --page-gap-space: 12px;
    --text-size: 17.33px;
}


.__skt_btn {
    background: var(--main-color);
    color: var(--white);
    padding: 10px 12px;
    font-size: 16px;
    border-radius: 6px;
    margin-bottom: 15px;
    border: none;
    outline: none;
    cursor: pointer;
}



/* 产品卡片 */
.grid__item {padding: 0;}
.__skt_product_card {
    --price-size: 14px;
    --price-color: #666;
    --hover-bg-color: #F0F0F0;
    --hover-btn-bg-color: #000;
    transition: .3s;
}
.__skt_product_card .price-item  {
    font-size: var(--price-size) !important;
    color: var(--price-color) !important;
    font-weight: 400 !important;
}
.__skt_product_card .card__media img {
    transform: scale(1) !important;
}
.__card_link {
    position: relative;
    z-index: 1;
    transition: .3s;
}
.__skt_product_card .card__content {
    padding-bottom: 20px;
}
.__skt_card_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 6px 12px;
    background-color: var(--main-color);
    color: var(--white) !important;
    display: block;
    font-size: 16px;
    font-weight: 400;
    border: none;
    outline: none;
    line-height: 24px;
    border-radius: 6px;
    transition: .3s;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}
.__skt_card_btn:hover { background-color: var(--hover-btn-bg-color);}
.__skt_product_card .card__media { background-color: transparent !important; transition: .3s; }


.__skt_product_card:hover { background-color: var(--hover-bg-color);}
.__skt_product_card:hover .product__title { color: var(--main-color);}
.__skt_product_card:hover .__skt_card_btn { opacity: 1;}
.__skt_product_card:hover .card__media { background-color: var(--hover-bg-color) !important;}
/* 产品卡片 */



/* image with text */
.__skt_image_with_text .image-with-text__info {
    padding-right: 12px;
    padding-left: 24px;
}
.__skt_image_with_text  .image-with-text__title {
    margin-bottom: 10px !important;
    font-weight: 400 !important;
}
.__skt_image_with_text .image-with-text__content { margin-top: 0 ;}
.__skt_image_with_text  .image-with-text__content p { margin-bottom: 10px; margin-top: 0;}
.__skt_image_with_text  .image-with-text__content p:last-child { margin-bottom: 10px; }
/* image with text */




/* 系列列表 */
.__skt_collection_list .title3 { font-size: 24px; }
.__skt_collection_list .page-width {padding-left: 0; padding-right: 0;  overflow: hidden;}
.__skt_collection_list .collection-item { padding: 0; position: relative; transition: .3s;}
.__skt_collection_list .collection-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hover-collection-bg-color);
    z-index: 1;
    opacity: 0;
    transition: .3s;
}
.__skt_collection_list .global-collection-card-border-shadow { border-radius: 0;}
.__skt_collection_list .collection__scroll__item img { transform: scale(1) !important;}
._collection_title {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 20px 0px;
    margin-bottom: 30px;
    margin-top: 0 !important;
    text-align: center;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    background: rgb(61, 65, 71, 0.5);
    z-index: 2;
    transition: .3s;
}

.__skt_collection_list .collection-item:hover::after {
    opacity: 1;
}
/* 系列列表 */





@media only screen and (max-width: 1440px) {
    :root {
        --page-padding: 30px;
    }
}
@media only screen and (max-width: 1280px) {
    /* 产品卡片 */
    .grid-cols-6-desktop > * {  width: 20%; }
    /* 产品卡片 */
}
@media only screen and (max-width: 960px) {
    :root {
        --page-padding: 16px;
    }

    /* image with text */
    .__skt_image_with_text .image-with-text__info {
        padding-right: 0;
        padding-left: 0;
    }
    /* image with text */


    /* 系列列表 */
    .__skt_collection_list .collection-item {
        width: 100% !important;
        display: block;
        margin-top: 0;
    }
    .__skt_collection_list #Slider-collection_list {
        display: block !important;
        overflow-x: visible !important;;
        scroll-snap-type: none !important;
        scroll-behavior: smooth;
        padding: 0 !important;
        margin: 0 !important;
    }
    ._collection_title {
        font-size: 18px;
    }
    /* 系列列表 */



    /* 产品卡片 */
    .grid-cols-6-desktop > * {  width: 25%; }
    /* 产品卡片 */
}


@media only screen and (max-width: 768px) {
    :root {
        --page-padding: 12px;
    }
    /* 产品卡片 */
    .grid-cols-6-desktop > * {  width: 33.33%; }
    /* 产品卡片 */
}

@media only screen and (max-width: 550px) {
    /* 产品卡片 */
    .grid-cols-6-desktop > * {  width: 50%; }
    /* 产品卡片 */
}