:root {
    --primary: #1a3e72;
    --secondary: #3a6ea5;
    --accent: #e63946;
    --light: #f8f9fa;
    --dark: #212529;
    --text: #495057;
    --border: #dee2e6;
    --highlight: #e9ecef;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: var(--text);
    background-color: #f5f7fb;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px;
}

.sip {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.report-section {
    margin-bottom: 70px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    padding: 50px;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--accent);
}

h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 150px;
    height: 3px;
    background: var(--accent);
}

h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--accent);
}

.report-section p, li {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 20px;
}

ul, ol {
    padding-left: 30px;
}

.before{
    margin-bottom: 12px;
    position: relative;
    color: var(--text);
    padding-left: 25px;
}
.before:before {
    content: '•';
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.process-flow {
    counter-reset: step;
    margin: 40px 0;
}

.step {
    position: relative;
    padding: 25px 25px 25px 90px;
    margin-bottom: 20px;
    background: var(--light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
    transform: translateX(5px);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-title {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.case-study {
    background: var(--light);
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid var(--border);
    position: relative;
}

.case-study:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.case-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.case-title {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

.case-meta {
    color: var(--secondary);
    font-size: 0.95rem;
}

.feature-list {
    margin: 25px 0;
}

.feature-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.feature-icon {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 3px;
}

.feature-content {
    flex: 1;
}

.image-container {
    text-align: center;
    margin: 40px 0;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}

footer {
    text-align: center;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .container {
        padding: 30px 20px;
    }

    header {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .report-section {
        padding: 30px;
    }

    .step {
        padding: 20px 20px 20px 75px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .report-section {
        padding: 25px;
    }

    .step {
        padding: 15px 15px 15px 65px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        left: 15px;
        top: 15px;
    }
}