/* 图文滚动条描述 组件样式 */
.sw_its_wrapper {
    width: 100%;
}

/* 大标题 */
.sw_its_main_title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 500;
    color: var(--sw-color-heading);
    margin: 0 0 48px 0;
    text-align: center;
}

/* 主容器 */
.sw_its_container {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

/* 左侧图片区域 */
.sw_its_image {
    flex-shrink: 0;
    width: 480px;
    height: 360px;
    overflow: hidden;
}

.sw_its_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 32px;
}

/* 右侧内容区域 */
.sw_its_content {
    width: 672px;
    height: 360px;
    overflow: hidden;
    position: relative;
}

.sw_its_content_inner {
    height: 100%;
    overflow-y: auto;
    padding-right: 48px;
    padding-bottom: 24px;
}

/* 内容区域底部渐变遮罩层 */
.sw_its_content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 48px;
    height: 60px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
    pointer-events: none;
    z-index: 10;
}

/* 自定义滚动条样式 - 默认浅色模式 */
.sw_its_content_inner::-webkit-scrollbar {
    width: 3px;
}

.sw_its_content_inner::-webkit-scrollbar-track {
    background: #E6E9F2;
}

.sw_its_content_inner::-webkit-scrollbar-thumb {
    background: var(--sw-color-primary);
    border-radius: 40px;
    min-height: 112px;
}

.sw_its_content_inner::-webkit-scrollbar-thumb:hover {
    background: var(--sw-color-primary);
    opacity: 0.8;
}


/* 内容项目 */
.sw_its_content_item {
    margin-bottom: 24px;
}

.sw_its_content_item:last-child {
    margin-bottom: 0;
}

/* 项目标题 */
.sw_its_item_title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: var(--sw-color-heading);
    margin: 0 0 8px 0;
}

/* 项目描述 */
.sw_its_item_description {
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    color: #586376;
    margin: 0;
}

/* 浅色配色方案（默认） - 提高选择器优先级 */
.elementor-widget-sw-image-text-scrollable.sw-its-scheme-light .sw_its_main_title,
.sw-its-scheme-light .sw_its_wrapper .sw_its_main_title {
    color: var(--sw-color-heading) !important;
}

.elementor-widget-sw-image-text-scrollable.sw-its-scheme-light .sw_its_item_title,
.sw-its-scheme-light .sw_its_wrapper .sw_its_item_title {
    color: var(--sw-color-heading) !important;
}

.elementor-widget-sw-image-text-scrollable.sw-its-scheme-light .sw_its_item_description,
.sw-its-scheme-light .sw_its_wrapper .sw_its_item_description,
.sw-its-scheme-light .sw_its_wrapper .sw_its_item_description li{
    color: #586376 !important;
}

.elementor-widget-sw-image-text-scrollable.sw-its-scheme-light .sw_its_content_inner::-webkit-scrollbar-track,
.sw-its-scheme-light .sw_its_wrapper .sw_its_content_inner::-webkit-scrollbar-track {
    background: #E6E9F2;
}

.elementor-widget-sw-image-text-scrollable.sw-its-scheme-light .sw_its_content_inner::-webkit-scrollbar-thumb,
.sw-its-scheme-light .sw_its_wrapper .sw_its_content_inner::-webkit-scrollbar-thumb {
    background: var(--sw-color-primary);
}

/* 浅色配色方案渐变遮罩 */
.elementor-widget-sw-image-text-scrollable.sw-its-scheme-light .sw_its_content::after,
.sw-its-scheme-light .sw_its_wrapper .sw_its_content::after {
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.9)) !important;
}


/* 深色配色方案 - 提高选择器优先级 */
.elementor-widget-sw-image-text-scrollable.sw-its-scheme-dark .sw_its_main_title,
.sw-its-scheme-dark .sw_its_wrapper .sw_its_main_title {
    color: #ffffff !important;
}

.elementor-widget-sw-image-text-scrollable.sw-its-scheme-dark .sw_its_item_title,
.sw-its-scheme-dark .sw_its_wrapper .sw_its_item_title {
    color: #ffffff !important;
}

.elementor-widget-sw-image-text-scrollable.sw-its-scheme-dark .sw_its_item_description,
.sw-its-scheme-dark .sw_its_wrapper .sw_its_item_description,
.sw-its-scheme-dark .sw_its_wrapper .sw_its_item_description li {
    color: rgba(255, 255, 255, 0.8) !important;
}

.elementor-widget-sw-image-text-scrollable.sw-its-scheme-dark .sw_its_content_inner::-webkit-scrollbar-track,
.sw-its-scheme-dark .sw_its_wrapper .sw_its_content_inner::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.15);
    border: none;
}

.elementor-widget-sw-image-text-scrollable.sw-its-scheme-dark .sw_its_content_inner::-webkit-scrollbar-thumb,
.sw-its-scheme-dark .sw_its_wrapper .sw_its_content_inner::-webkit-scrollbar-thumb {
    background: #ffffff;
}

/* 深色配色方案渐变遮罩 */
.elementor-widget-sw-image-text-scrollable.sw-its-scheme-dark .sw_its_content::after,
.sw-its-scheme-dark .sw_its_wrapper .sw_its_content::after {
    background: linear-gradient(transparent, rgba(20, 20, 20, 0.9)) !important;
}


/* 响应式设计 */
@media (max-width: 1200px) {
    .sw_its_container {
        gap: 32px;
    }
    
    .sw_its_image {
        width: 400px;
        height: 300px;
    }
    
    .sw_its_content {
        width: auto;
        height: 300px;
        padding: 0 32px 20px 0;
    }
}

@media (max-width: 1024px) {
    .sw_its_main_title {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 32px;
    }
    
    .sw_its_container {
        gap: 24px;
    }
    
    .sw_its_image {
        width: 320px;
        height: 240px;
    }
    
    .sw_its_content {
        height: 240px;
        padding: 0 24px 16px 0;
    }
}

@media (max-width: 768px) {
    .sw_its_main_title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 24px;
    }
    
    .sw_its_container {
        flex-direction: column;
        gap: 48px;
    }
    
    .sw_its_image {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        margin: 0 auto;
    }
    
    .sw_its_img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .sw_its_content {
        width: 100%;
        height: 280px;
        overflow: hidden;
        padding: 0 0 16px 0;
        position: relative;
    }
    
    .sw_its_content_inner {
        height: 100%;
        overflow-y: auto;
        padding-right: 20px;
    }
    
    /* 768px以下遮罩层调整 */
    .sw_its_content::after {
        right: 20px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .sw_its_main_title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }
    
    .sw_its_container {
        gap: 24px;
    }
    
    .sw_its_image {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
    }
    
    .sw_its_img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .sw_its_content {
        width: 100%;
        height: 250px;
        overflow: hidden;
        position: relative;
    }
    
    .sw_its_content_inner {
        height: 100%;
        overflow-y: auto;
        padding-right: 16px;
    }
    
    /* 480px以下遮罩层调整 */
    .sw_its_content::after {
        right: 16px;
        height: 40px;
    }
    
    .sw_its_item_title {
        font-size: 18px;
        line-height: 26px;
    }
    
    .sw_its_item_description {
        font-size: 13px;
        line-height: 20px;
    }
    
    .sw_its_content_item {
        margin-bottom: 20px;
    }
} 