/* 战略执行系统组件样式 */

/* 战略与绩效联动区块样式 */
.strategy-performance-link {
    margin: 10px 0 40px 0;
    padding: 60px 0;
    background-color: #fafafa;
}

.strategy-performance-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.strategy-performance-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 350px;
    margin: 0 auto;
    display: block;
}

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

.max-width-800 {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* 响应式调整 */
@media (min-width: 1200px) {
    .strategy-performance-image {
        max-height: 400px;
    }
}

/* 图片容器样式优化 */
.image-left-container {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.image-left {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-left:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

/* 内容区块样式 */
.content-section {
    flex: 1;
}

.content-section h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--gray);
}

/* 功能列表样式 */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: var(--dark);
}

.feature-list li:before {
    content: "✓";
    color: var(--success);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 可访问性优化 */
@media (prefers-reduced-motion: reduce) {
    .image-left,
    .cta-button {
        transition: none;
    }
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
    .strategy-performance-container {
        border: 2px solid #000;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
}

/* 打印样式 */
@media print {
    .strategy-performance-link {
        background: white;
    }
    
    .image-left {
        max-width: 100%;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}