/* 营销页面头部样式 */
.marketing-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.marketing-hero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.marketing-hero p {
    font-size: 1.2em;
    opacity: 0.9;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* 营销导航样式 */
.marketing-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.marketing-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.marketing-nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.marketing-nav-item i {
    font-size: 2em;
    margin-bottom: 10px;
}

/* 内容区域样式 */
.marketing-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.marketing-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out;
}

.marketing-section h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8em;
}

.marketing-section h2 i {
    color: var(--primary-color);
}

/* 市场分析样式 */
.market-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: var(--primary-color);
}

.stat-icon i {
    font-size: 1.8em;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon i {
    color: white;
}

.stat-info {
    flex: 1;
}

.stat-info h4 {
    color: var(--dark-gray);
    font-size: 0.9em;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-value span {
    font-size: 0.6em;
    margin-left: 2px;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
}

.stat-trend.positive {
    color: #2ecc71;
}

.stat-trend.negative {
    color: #e74c3c;
}

/* 分析卡片样式 */
.market-analysis-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.analysis-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.analysis-card h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.3em;
}

.user-profiles {
    display: grid;
    gap: 20px;
}

.profile-group h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-group ul {
    list-style: none;
    padding: 0;
}

.profile-group li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 6px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.profile-group li:hover {
    transform: translateX(5px);
    background: rgba(74, 144, 226, 0.1);
}

.profile-group li i {
    color: var(--primary-color);
}

/* 竞争分析样式 */
.competitor-analysis {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-container {
    height: 300px;
    background: var(--light-gray);
    border-radius: 8px;
    padding: 20px;
}

.competitor-insights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.insight-item {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 8px;
}

.insight-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1em;
}

.insight-item p {
    color: var(--dark-gray);
    font-size: 0.9em;
    line-height: 1.5;
}

/* 营销策略样式 */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.strategy-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
}

.strategy-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.strategy-header i {
    font-size: 1.5em;
}

.strategy-content {
    padding: 25px;
}

.target-group, .product-strategy, .price-strategy, .promotion-strategy {
    margin-bottom: 25px;
}

.target-group:last-child, .product-strategy:last-child,
.price-strategy:last-child, .promotion-strategy:last-child {
    margin-bottom: 0;
}

.strategy-content h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.strategy-content p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.strategy-content ul {
    list-style: none;
    padding: 0;
}

.strategy-content li {
    padding: 8px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 20px;
}

.strategy-content li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 7px;
}

/* 推广渠道样式 */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.channel-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-5px);
}

.channel-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.channel-header i {
    font-size: 1.5em;
}

.channel-content {
    padding: 25px;
}

.channel-group {
    margin-bottom: 20px;
}

.channel-group:last-child {
    margin-bottom: 0;
}

.channel-group h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.channel-group ul {
    list-style: none;
    padding: 0;
}

.channel-group li {
    padding: 8px 0;
    color: var(--dark-gray);
}

/* 品牌建设样式 */
.branding-content {
    display: grid;
    gap: 40px;
}

.brand-vision {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vision-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-5px);
}

.vision-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vision-icon i {
    font-size: 1.8em;
    color: white;
}

.vision-text h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.vision-text p {
    color: var(--dark-gray);
}

.brand-strategy {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.strategy-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.strategy-item {
    text-align: center;
}

.strategy-icon {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.strategy-item:hover .strategy-icon {
    background: var(--primary-color);
}

.strategy-icon i {
    font-size: 1.5em;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.strategy-item:hover .strategy-icon i {
    color: white;
}

.strategy-text h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.strategy-text p {
    color: var(--dark-gray);
    font-size: 0.9em;
}

.brand-activities {
    margin-top: 40px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.activity-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-icon {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon {
    background: var(--primary-color);
}

.activity-icon i {
    font-size: 1.5em;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon i {
    color: white;
}

.activity-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.activity-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.activity-card li {
    padding: 8px 0;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--light-gray);
}

.activity-card li:last-child {
    border-bottom: none;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .market-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .market-analysis-content,
    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-vision,
    .strategy-items,
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .marketing-hero {
        padding: 80px 0 40px;
    }

    .marketing-nav {
        gap: 15px;
    }

    .marketing-nav-item {
        width: calc(50% - 15px);
    }

    .marketing-section {
        padding: 20px;
    }

    .market-stats {
        grid-template-columns: 1fr;
    }

    .channels-grid,
    .brand-vision,
    .strategy-items,
    .activities-grid {
        grid-template-columns: 1fr;
    }

    .competitor-insights {
        grid-template-columns: 1fr;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.marketing-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.marketing-section:nth-child(2) {
    animation-delay: 0.2s;
}

.marketing-section:nth-child(3) {
    animation-delay: 0.4s;
}

.marketing-section:nth-child(4) {
    animation-delay: 0.6s;
}

/* 营销效果分析样式 */
.performance-overview {
    display: grid;
    gap: 30px;
}

.performance-metrics {
    display: grid;
    gap: 30px;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.metric-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.metric-header i {
    font-size: 1.5em;
    color: var(--primary-color);
}

.metric-header h3 {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin: 0;
}

.metric-chart {
    height: 200px;
    margin: 20px 0;
    background: var(--light-gray);
    border-radius: 8px;
}

.metric-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.metric-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-label {
    color: var(--dark-gray);
    font-size: 0.9em;
}

.stat-value {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--secondary-color);
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
}

.stat-trend.positive {
    color: #2ecc71;
}

.stat-trend.negative {
    color: #e74c3c;
}

.performance-insights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.insight-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.insight-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.insight-header i {
    font-size: 1.5em;
    color: var(--primary-color);
}

.insight-header h3 {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin: 0;
}

.insight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insight-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.insight-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.insight-tag {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 500;
    white-space: nowrap;
}

.insight-tag.success {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.insight-tag.warning {
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
}

.insight-tag.info {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.insight-tag.primary {
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-color);
}

.insight-list p {
    color: var(--dark-gray);
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

/* 动画效果 */
.metric-card, .insight-card {
    transition: all 0.3s ease;
}

.metric-card:hover, .insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .metric-row {
        grid-template-columns: 1fr;
    }

    .performance-insights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .metric-stats {
        grid-template-columns: 1fr;
    }

    .metric-stat {
        text-align: center;
    }

    .stat-trend {
        justify-content: center;
    }
}

/* 趋势分析样式 */
.performance-trends {
    margin-top: 40px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.trends-header {
    text-align: center;
    margin-bottom: 30px;
}

.trends-header h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.trends-header p {
    color: var(--dark-gray);
    font-size: 1.1em;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trend-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.trend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.trend-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.trend-header i {
    font-size: 1.5em;
    color: var(--primary-color);
}

.trend-header h4 {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin: 0;
}

.trend-chart {
    height: 200px;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
}

.trend-insights {
    margin-top: 20px;
}

.trend-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.trend-label {
    color: var(--dark-gray);
    font-size: 0.9em;
    margin-bottom: 5px;
}

.trend-value {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    margin: 5px 0;
}

.trend-period {
    color: var(--dark-gray);
    font-size: 0.9em;
    opacity: 0.8;
}

.trend-analysis {
    background: white;
    border-radius: 8px;
    padding: 15px;
}

.trend-analysis h5 {
    color: var(--secondary-color);
    margin: 0 0 10px 0;
    font-size: 1em;
}

.trend-analysis ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trend-analysis li {
    color: var(--dark-gray);
    padding: 5px 0;
    font-size: 0.9em;
    position: relative;
    padding-left: 20px;
}

.trend-analysis li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .trends-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trends-grid {
        grid-template-columns: 1fr;
    }
    
    .trend-stat {
        padding: 10px;
    }
    
    .trend-value {
        font-size: 1.5em;
    }
}

/* 动画效果 */
.trend-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.trend-card:nth-child(1) {
    animation-delay: 0.2s;
}

.trend-card:nth-child(2) {
    animation-delay: 0.4s;
}

.trend-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* 品牌影响力样式 */
.brand-influence {
    margin-top: 40px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.influence-overview {
    display: grid;
    gap: 30px;
}

.influence-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.influence-stat {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.influence-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.influence-stat .stat-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.influence-stat:hover .stat-icon {
    background: var(--primary-color);
}

.influence-stat .stat-icon i {
    font-size: 1.5em;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.influence-stat:hover .stat-icon i {
    color: white;
}

.influence-stat .stat-info {
    flex: 1;
}

.influence-stat .stat-info h4 {
    color: var(--dark-gray);
    font-size: 0.9em;
    margin-bottom: 5px;
}

.influence-analysis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.influence-analysis .analysis-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.influence-analysis .analysis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.analysis-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.analysis-header i {
    font-size: 1.5em;
    color: var(--primary-color);
}

.analysis-header h4 {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin: 0;
}

.brand-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.keyword-tag {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.keyword-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.keyword-tag.primary {
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-color);
}

.keyword-tag.success {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.keyword-tag.info {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.keyword-tag.warning {
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
}

.influence-insights {
    margin-top: 20px;
}

.influence-insights .insight-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.influence-insights .insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .influence-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .influence-analysis {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .influence-stats {
        grid-template-columns: 1fr;
    }

    .brand-keywords {
        justify-content: center;
    }
}

/* 动画效果 */
.influence-stat {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.influence-stat:nth-child(1) {
    animation-delay: 0.1s;
}

.influence-stat:nth-child(2) {
    animation-delay: 0.2s;
}

.influence-stat:nth-child(3) {
    animation-delay: 0.3s;
}

.influence-stat:nth-child(4) {
    animation-delay: 0.4s;
}

.influence-analysis .analysis-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.influence-analysis .analysis-card:nth-child(1) {
    animation-delay: 0.5s;
}

.influence-analysis .analysis-card:nth-child(2) {
    animation-delay: 0.6s;
}

.influence-insights .insight-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.7s;
}

/* 营销活动规划样式 */
.campaign-timeline {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
}

.timeline-quarter {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.timeline-quarter:last-child {
    margin-bottom: 0;
}

.timeline-quarter:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.quarter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.quarter-header h4 {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin: 0;
}

.quarter-status {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: 500;
}

.quarter-status.active {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.quarter-status.upcoming {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.quarter-status.planned {
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
}

.campaign-items {
    display: grid;
    gap: 20px;
}

.campaign-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.campaign-item:hover {
    transform: translateX(5px);
    background: rgba(74, 144, 226, 0.05);
}

.campaign-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.campaign-item:hover .campaign-icon {
    background: var(--primary-color);
}

.campaign-icon i {
    font-size: 1.2em;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.campaign-item:hover .campaign-icon i {
    color: white;
}

.campaign-details {
    flex: 1;
}

.campaign-details h5 {
    color: var(--secondary-color);
    margin: 0 0 5px 0;
    font-size: 1.1em;
}

.campaign-details p {
    color: var(--dark-gray);
    margin: 0 0 10px 0;
    font-size: 0.9em;
}

.campaign-meta {
    display: flex;
    gap: 15px;
}

.campaign-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--dark-gray);
    font-size: 0.85em;
}

.campaign-meta i {
    color: var(--primary-color);
    font-size: 1.1em;
}

/* 时间线效果 */
.campaign-timeline {
    position: relative;
}

.campaign-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
        var(--primary-color) 0%,
        var(--primary-color) 25%,
        #3498db 25%,
        #3498db 50%,
        #f1c40f 50%,
        #f1c40f 75%,
        #f1c40f 75%,
        #f1c40f 100%
    );
    opacity: 0.2;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .campaign-timeline {
        padding: 15px;
    }

    .timeline-quarter {
        padding: 15px;
    }

    .campaign-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .campaign-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* 动画效果 */
.timeline-quarter {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-quarter:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-quarter:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-quarter:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-quarter:nth-child(4) {
    animation-delay: 0.4s;
}

/* 营销资源中心样式 */
.resources-overview {
    display: grid;
    gap: 40px;
}

.resource-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.resource-category {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.resource-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.category-header i {
    font-size: 1.5em;
    color: var(--primary-color);
}

.category-header h3 {
    color: var(--secondary-color);
    font-size: 1.3em;
    margin: 0;
}

.resource-items {
    display: grid;
    gap: 20px;
}

.resource-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.resource-item:hover {
    transform: translateX(5px);
    background: rgba(74, 144, 226, 0.05);
}

.resource-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.resource-item:hover .resource-icon {
    background: var(--primary-color);
}

.resource-icon i {
    font-size: 1.3em;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.resource-item:hover .resource-icon i {
    color: white;
}

.resource-info {
    flex: 1;
}

.resource-info h4 {
    color: var(--secondary-color);
    margin: 0 0 5px 0;
    font-size: 1.1em;
}

.resource-info p {
    color: var(--dark-gray);
    margin: 0 0 15px 0;
    font-size: 0.9em;
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.format {
    color: var(--dark-gray);
    font-size: 0.85em;
    padding: 4px 10px;
    background: white;
    border-radius: 15px;
}

.download-btn,
.use-btn,
.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.use-btn {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.view-btn {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.download-btn:hover,
.use-btn:hover,
.view-btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.95);
}

.resource-updates {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.updates-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.updates-header i {
    font-size: 1.5em;
    color: var(--primary-color);
}

.updates-header h3 {
    color: var(--secondary-color);
    font-size: 1.3em;
    margin: 0;
}

.update-list {
    display: grid;
    gap: 20px;
}

.update-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.update-item:hover {
    transform: translateX(5px);
    background: rgba(74, 144, 226, 0.05);
}

.update-date {
    color: var(--primary-color);
    font-size: 0.9em;
    font-weight: 500;
    white-space: nowrap;
}

.update-content {
    flex: 1;
}

.update-content h4 {
    color: var(--secondary-color);
    margin: 0 0 5px 0;
    font-size: 1.1em;
}

.update-content p {
    color: var(--dark-gray);
    margin: 0 0 10px 0;
    font-size: 0.9em;
}

.update-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.update-link:hover {
    transform: translateX(5px);
}

.update-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.update-link:hover::after {
    transform: translateX(3px);
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .resource-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .resource-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .resource-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .update-item {
        flex-direction: column;
        gap: 10px;
    }
}

/* 动画效果 */
.resource-category {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.resource-category:nth-child(1) {
    animation-delay: 0.1s;
}

.resource-category:nth-child(2) {
    animation-delay: 0.2s;
}

.resource-category:nth-child(3) {
    animation-delay: 0.3s;
}

.resource-category:nth-child(4) {
    animation-delay: 0.4s;
}

.resource-updates {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.5s;
}

/* 营销成功案例样式 */
.cases-overview {
    margin-top: 30px;
}

.case-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: var(--light-gray);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.2);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.case-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.case-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    background: rgba(74, 144, 226, 0.9);
    color: white;
    border-radius: 15px;
    font-size: 0.8em;
    backdrop-filter: blur(5px);
}

.case-content {
    padding: 25px;
}

.case-content h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2em;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

.case-stats .stat-item {
    text-align: center;
}

.case-stats .stat-label {
    display: block;
    color: var(--dark-gray);
    font-size: 0.8em;
    margin-bottom: 5px;
}

.case-stats .stat-value {
    display: block;
    color: var(--primary-color);
    font-size: 1.1em;
    font-weight: bold;
}

.case-highlights {
    margin-top: 20px;
}

.case-highlights h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1em;
}

.case-highlights ul {
    list-style: none;
    padding: 0;
}

.case-highlights li {
    padding: 8px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 20px;
}

.case-highlights li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 7px;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.case-link:hover {
    gap: 15px;
}

.case-summary {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.summary-header {
    margin-bottom: 25px;
    text-align: center;
}

.summary-header h3 {
    color: var(--secondary-color);
    font-size: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.summary-header h3 i {
    color: var(--primary-color);
}

.summary-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.summary-stats {
    display: grid;
    gap: 20px;
}

.summary-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.summary-stat:hover {
    transform: translateX(5px);
}

.summary-stat .stat-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.summary-stat .stat-info {
    flex: 1;
}

.summary-stat .stat-value {
    display: block;
    color: var(--secondary-color);
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.summary-stat .stat-label {
    display: block;
    color: var(--dark-gray);
    font-size: 0.9em;
}

@media (max-width: 1200px) {
    .summary-content {
        grid-template-columns: 1fr;
    }
    
    .summary-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .case-filters {
        flex-wrap: wrap;
    }
    
    .filter-btn {
        width: calc(50% - 10px);
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
    }
    
    .case-stats {
        grid-template-columns: 1fr;
    }
}

/* 添加案例卡片动画效果 */
.case-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.case-card:nth-child(1) {
    animation-delay: 0.2s;
}

.case-card:nth-child(2) {
    animation-delay: 0.4s;
}

.case-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* 添加统计数字动画效果 */
.summary-stat .stat-value {
    opacity: 0;
    animation: fadeInRight 0.6s ease-out forwards;
}

.summary-stat:nth-child(1) .stat-value {
    animation-delay: 0.8s;
}

.summary-stat:nth-child(2) .stat-value {
    animation-delay: 1s;
}

.summary-stat:nth-child(3) .stat-value {
    animation-delay: 1.2s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 营销数据大屏样式 */
.dashboard-overview {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 30px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard-title h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.dashboard-title p {
    color: var(--dark-gray);
    font-size: 0.9em;
}

.dashboard-controls {
    display: flex;
    gap: 20px;
    align-items: center;
}

.time-range {
    display: flex;
    gap: 10px;
    background: white;
    padding: 5px;
    border-radius: 25px;
}

.range-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.range-btn.active,
.range-btn:hover {
    background: var(--primary-color);
    color: white;
}

.refresh-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    background: var(--primary-color);
    color: white;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dashboard-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.dashboard-card.large {
    grid-column: span 3;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.card-header h4 {
    color: var(--secondary-color);
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.card-header h4 i {
    color: var(--primary-color);
}

.card-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: var(--light-gray);
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
}

.card-content {
    padding: 20px;
}

/* 转化漏斗指标样式 */
.funnel-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.funnel-metrics .metric {
    text-align: center;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

.metric .label {
    color: var(--dark-gray);
    font-size: 0.9em;
    margin-bottom: 5px;
}

.metric .value {
    color: var(--secondary-color);
    font-size: 1.5em;
    font-weight: bold;
    margin: 10px 0;
}

.metric .trend {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
    padding: 3px 8px;
    border-radius: 12px;
}

.trend.positive {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.trend.negative {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

/* 实时监控样式 */
.realtime-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.realtime-item {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.realtime-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.realtime-header i {
    color: var(--primary-color);
}

.realtime-value {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 10px 0;
}

.realtime-chart {
    height: 50px;
    margin-top: 10px;
}

/* 任务追踪样式 */
.task-list {
    display: grid;
    gap: 15px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

.task-status {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.task-status.completed {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.task-status.in-progress {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.task-status.pending {
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
}

.task-info {
    flex: 1;
}

.task-info h5 {
    color: var(--secondary-color);
    margin: 0 0 5px 0;
    font-size: 1em;
}

.task-meta {
    display: flex;
    gap: 15px;
}

.task-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--dark-gray);
    font-size: 0.85em;
}

.task-progress {
    width: 100px;
    flex-shrink: 0;
}

.progress-bar {
    height: 6px;
    background: var(--primary-color);
    border-radius: 3px;
    position: relative;
}

.progress-bar span {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 0.85em;
    color: var(--primary-color);
}

/* 预警列表样式 */
.alert-list {
    display: grid;
    gap: 15px;
}

.alert-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    background: var(--light-gray);
    align-items: center;
}

.alert-item.high {
    border-left: 4px solid #e74c3c;
}

.alert-item.medium {
    border-left: 4px solid #f1c40f;
}

.alert-item.low {
    border-left: 4px solid #3498db;
}

.alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-item.high .alert-icon {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.alert-item.medium .alert-icon {
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
}

.alert-item.low .alert-icon {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.alert-content {
    flex: 1;
}

.alert-content h5 {
    color: var(--secondary-color);
    margin: 0 0 5px 0;
    font-size: 1em;
}

.alert-content p {
    color: var(--dark-gray);
    margin: 0 0 5px 0;
    font-size: 0.9em;
}

.alert-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.alert-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--dark-gray);
    font-size: 0.85em;
}

.alert-action {
    padding: 6px 12px;
    border: none;
    border-radius: 15px;
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.alert-action:hover {
    background: var(--primary-color);
    color: white;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-card.large {
        grid-column: span 2;
    }

    .funnel-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .realtime-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        gap: 20px;
    }

    .dashboard-controls {
        flex-direction: column;
        width: 100%;
    }

    .time-range {
        width: 100%;
        justify-content: center;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-card.large {
        grid-column: span 1;
    }

    .funnel-metrics {
        grid-template-columns: 1fr;
    }

    .realtime-metrics {
        grid-template-columns: 1fr;
    }

    .task-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .task-progress {
        width: 100%;
    }
}

/* 动画效果 */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.realtime-value {
    animation: pulse 2s infinite;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.alert-item {
    animation: slideIn 0.3s ease-out;
}

.alert-item:nth-child(1) {
    animation-delay: 0.1s;
}

.alert-item:nth-child(2) {
    animation-delay: 0.2s;
}

.alert-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* 加载动画 */
.loading {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading::after {
    content: '';
    width: 30px;
    height: 30px;
    border: 3px solid var(--light-gray);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
} 