        /* 组件专用样式 - 使用特定前缀避免冲突 */
 .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: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.exclusive-feature-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 左侧文章区域 */
.exclusive-feature-section {
    padding: 70px 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;
}

/* 文章内容样式 */
.article-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.article-title {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    align-items: center;
    color: #7f8c8d;
    font-size: 14px;
}

.article-author {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #db343480;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
}

.article-date {
    margin-right: 20px;
}

.article-tag {
    background: #ff321f52;
    color: rgb(223, 223, 223);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.article-content {
    text-align: justify;
    font-size: 16px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2 {
    font-size: 22px;
    color: #2c3e50;
    margin: 30px 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.article-content h3 {
    font-size: 18px;
    color: #34495e;
    margin: 25px 0 10px;
}

.article-image {
    width: 100%;
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
    padding: 10px;
    background: #f9f9f9;
}

.article-quote {
    border-left: 4px solid #ff0000;
    padding: 15px 20px;
    margin: 25px 0;
    background: #f9f9f9;
    font-style: italic;
}

.zu p{
    font-size: 12px;
    color: #6d6d6d;
}

/* 右侧案例区域 */
.exclusive-cases-section {
    padding: 70px 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: #5e5e5e;
}

/* 响应式设计 */
@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;
    }
    
    .exclusive-feature-section {
        padding: 20px;
    }
    
    .article-title {
        font-size: 24px;
    }
}