/**
 * 全平台适配列表小部件样式
 * 
 * @package ShengWang
 * @since 1.0.0
 */

.sw_platforms_wrapper {
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px;
    overflow: hidden;
    border-radius: 32px;
}

.sw_platforms_container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.sw_platforms_content {
    text-align: center;
    color: #FFFFFF;
}

/* 标题样式 */
.sw_platforms_title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0 0 8px 0;
    padding: 0;
}

/* 描述文字样式 */
.sw_platforms_description {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.9;
    margin: 0 0 48px 0;
    padding: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

/* 平台图片容器 */
.sw_platforms_image {
    margin-top: 48px;
    
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 平台图片样式 */
.sw_platforms_image img {
    width: 762px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* 悬停效果 */
.sw_platforms_wrapper:hover .sw_platforms_image img {
    opacity: 0.9;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .sw_platforms_wrapper {
        padding: 60px 20px;
    }
    
    .sw_platforms_title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .sw_platforms_description {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .sw_platforms_wrapper {
        padding: 40px 15px;
    }
    
    .sw_platforms_title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 12px;
    }
    
    .sw_platforms_description {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 32px;
    }
    
    .sw_platforms_image {
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    .sw_platforms_wrapper {
        padding: 30px 10px;
    }
    
    .sw_platforms_title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .sw_platforms_description {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 24px;
    }
    
    .sw_platforms_image {
        margin-top: 24px;
    }
    
    .sw_platforms_image img {
        max-width: 95%;
    }
}

/* 编辑器样式 */
.elementor-editor-active .sw_platforms_wrapper {
    min-height: 300px;
}

/* 对齐方式样式 */
.sw_platforms_content[style*="text-align: left"] {
    text-align: left !important;
}

.sw_platforms_content[style*="text-align: center"] {
    text-align: center !important;
}

.sw_platforms_content[style*="text-align: right"] {
    text-align: right !important;
}

.sw_platforms_content[style*="text-align: left"] .sw_platforms_description {
    margin-left: 0;
    margin-right: auto;
}

.sw_platforms_content[style*="text-align: right"] .sw_platforms_description {
    margin-left: auto;
    margin-right: 0;
} 