.hostingtheme_8dK3a{
    position: relative;
    margin: var(--margin_tb) 0;
    height: var(--section_height, 100vh);
    background-image: var(--bg_image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: clip;
}

.hostingtheme_8dK3a::before{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--background_mask);
    z-index: 0;
    pointer-events: none;
}

.hostingtheme_8dK3a::after{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, var(--edge_fade_color, rgba(0, 0, 0, .45)) 0%, rgba(0, 0, 0, 0) 100%) top / 100% var(--edge_fade_height, 28%) no-repeat,
        linear-gradient(to top, var(--edge_fade_color, rgba(0, 0, 0, .45)) 0%, rgba(0, 0, 0, 0) 100%) bottom / 100% var(--edge_fade_height, 28%) no-repeat;
    z-index: 2;
    pointer-events: none;
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_stage{
    position: relative;
    z-index: 1;
    
    max-width: var(--custom-content-max-width);
    padding-left: var(--padding-lr);
    padding-right: var(--padding-lr);
    margin-left: auto;
    margin-right: auto;
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_layout{
    
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.2rem;
    align-items: stretch;
    
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_intro{
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 10rem;
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_heading{
    font-size: var(--title_size);
    color: var(--title_color);
    line-height: 1.4;
    letter-spacing: -0.02em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_lead{
    font-size: var(--description_size);
    color: var(--description_color);
    line-height: 1.65;
    max-width: 54rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_action{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.4rem;
    border-radius: 0.6rem;
    border: 1px solid var(--button_border_color);
    color: var(--button_text_color);
    font-size: var(--button_font_size);
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    width: fit-content;
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_action:hover{
    background: var(--button_hover_bg_color);
    color: var(--button_hover_text_color);
    border-color: var(--button_hover_bg_color);
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_hintRow{
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: .4rem;
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_hint{
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: .8rem 1.2rem;
    border: 1px solid var(--card_border_color);
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(8px);
    border-radius: 0;
    color: var(--description_color);
    font-size: calc(var(--description_size) * .9);
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_hintText{
    font-size: calc(var(--description_size) * .9);
    color: var(--description_color);
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_marquee{
    position: relative;
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_columns{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: 100%;
    border-radius: 0;
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_column{
    position: relative;
    min-width: 0;
    border-radius: 0;
    overflow: hidden;
    border: none;
    background: transparent;
    backdrop-filter: none;
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_viewport{
    height: 100%;
    overflow: hidden;
    touch-action: pan-y;
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_track{
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding: 0;
    will-change: transform;
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_card{
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
    border-radius: 0;
    
    box-shadow: none;
    box-sizing: border-box;
    overflow: hidden;
}

.hostingtheme_8dK3a .custom_image_wrapper{
    width: 100%;
    aspect-ratio: var(--image_ratio, 1 / 1);
    border-radius: var(--image_shape, 0%);
    overflow: hidden;
    /* background: rgba(15, 23, 42, .06); */
}

.hostingtheme_8dK3a .custom_image{
    width: 100%;
    height: 100%;
    object-fit: var(--image_fit, cover);
    display: block;
    transform: scale(1.03);
    transform-origin: center;
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_cardText{
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .8rem;
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_cardText{
    display: none;
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_cardTitle{
    font-size: var(--card_title_size);
    color: var(--card_title_color);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.hostingtheme_8dK3a .hostingtheme_8dK3a_cardDesc{
    font-size: var(--card_description_size);
    color: var(--card_description_color);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.hostingtheme_8dK3a[data-columns="1"] .hostingtheme_8dK3a_columns{
    grid-template-columns: 1fr;
}

.hostingtheme_8dK3a[data-columns="1"] .hostingtheme_8dK3a_columnDown{
    display: none;
}

/* 平板（Pad）样式，适用于平板设备的样式 */
@media (min-width: 768px) and (max-width: 1024px) {
    .hostingtheme_8dK3a .hostingtheme_8dK3a_layout{
        grid-template-columns: 1fr;
        gap: 3.2rem;
        padding: 2rem;
    }

    .hostingtheme_8dK3a_intro{
        margin-top: 0rem !important;
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_heading{
        font-size: calc(var(--title_size) * .95);
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_lead{
        font-size: calc(var(--description_size) * .95);
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_hint,
    .hostingtheme_8dK3a .hostingtheme_8dK3a_hintText{
        font-size: calc(var(--description_size) * .85);
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_action{
        font-size: calc(var(--button_font_size) * .95);
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_columns{
        height: clamp(32rem, 56vw, 54rem);
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_cardTitle{
        font-size: calc(var(--card_title_size) * .95);
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_cardDesc{
        font-size: calc(var(--card_description_size) * .95);
    }
}

/* 手机端样式 */
@media (max-width: 767px) {
    .hostingtheme_8dK3a::after{
        background: linear-gradient(to top, var(--edge_fade_color, rgba(0, 0, 0, .45)) 0%, rgba(0, 0, 0, 0) 100%) bottom / 100% var(--edge_fade_height, 28%) no-repeat;
    }

    .hostingtheme_8dK3a{
        height: auto;
        height: 100vh;
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_layout{
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        gap: 2.4rem;
        padding: 2rem;
        min-height: calc(100vh - 4rem);
    }
    .hostingtheme_8dK3a_intro{
        margin-top: 0rem !important;
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_stage{
        padding-left: 2%;
        padding-right: 2%;
    }
    

    .hostingtheme_8dK3a .hostingtheme_8dK3a_heading{
        font-size: calc(var(--title_size) * .9);
        margin-top: 2rem;
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_lead{
        font-size: calc(var(--description_size) * .9);
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_hint,
    .hostingtheme_8dK3a .hostingtheme_8dK3a_hintText{
        font-size: calc(var(--description_size) * .8);
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_action{
        font-size: calc(var(--button_font_size) * .9);
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_columns{
        height: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_marquee{
        height: 100%;
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_track{
        padding: 0;
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_card{
        grid-template-columns: 1fr;
        padding: 0;
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_cardTitle{
        font-size: calc(var(--card_title_size) * .9);
    }

    .hostingtheme_8dK3a .hostingtheme_8dK3a_cardDesc{
        font-size: calc(var(--card_description_size) * .9);
    }
}
