 /* 组件专用样式 - 使用特定前缀避免冲突 */
 .exclusive-feature-container {
    display: grid;
    grid-template-columns: 80% 20%;
    min-height: 100vh;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 5;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.exclusive-feature-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 左侧专题区域 */
.exclusive-feature-section {
    padding: 30px 65px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
}

.exclusive-section-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #000000;
    padding-bottom: 10px;
    display: inline-block;
}

.exclusive-category-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.exclusive-category-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
    border-bottom: 3px solid transparent;
    outline: none;
}

.exclusive-category-tab:hover {
    color: #ff0000;
}

.exclusive-category-tab.active {
    color: #ff0000;
    border-bottom: 3px solid #ff0000;
    font-weight: bold;
}

.exclusive-content-area {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.exclusive-content-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.exclusive-content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.exclusive-content-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.exclusive-content-text {
    padding: 0 15px;
}

.exclusive-content-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000000;
}

.exclusive-content-excerpt {
    font-size: 14px;
    color: #000000;
    margin-bottom: 2px;
}

.exclusive-content-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #ff0606;
}

/* 右侧案例区域 */
.exclusive-cases-section {
    padding: 30px 45px;
    background-color: #f8f9fa;
    overflow-y: auto;
    height: 100vh;
    position: sticky;
    top: 0;
}

.exclusive-cases-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #000000;
    text-align: center;
}

.exclusive-case-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.exclusive-case-item:hover {
    transform: scale(1.03);
}

.exclusive-case-image {
    width: 100%;
    height: auto;
    display: block;
}

.exclusive-case-caption {
    padding: 10px;
    background-color: #fff;
    font-size: 14px;
    color: #ff2424;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .exclusive-feature-container {
        grid-template-columns: 70% 30%;
    }
}

@media (max-width: 768px) {
    .exclusive-feature-container {
        grid-template-columns: 1fr;
    }
    
    .exclusive-cases-section {
        height: auto;
        position: static;
    }
}