.case-process {
    padding: 2rem 0;
    background: #f8fafc;
    margin: 1.5rem 0;
}

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 6px;
    background: #fff;
    color: var(--text-color);
    font-size: 0.938rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tab-btn:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary-color);
    color: #fff;
}

.process-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.process-tab {
    display: none;
}

.process-tab.active {
    display: block;
}

.process-flow {
    position: relative;
    padding: 1rem;
}

.flow-item {
    background: #fff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.flow-step {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    font-size: 0.938rem;
}

.flow-desc {
    font-size: 0.813rem;
    color: var(--text-light);
}

.flow-arrow {
    width: 2px;
    height: 1.5rem;
    background: #e2e8f0;
    margin: 0.5rem auto;
    position: relative;
}

.flow-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #e2e8f0;
}

.flow-branch {
    padding-left: 1.5rem;
    position: relative;
    margin: 0.75rem 0;
}

.flow-branch::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.flow-branch .flow-desc {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.flow-branch .flow-desc::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    width: 1.5rem;
    height: 2px;
    background: #e2e8f0;
}

.flow-branch .flow-item {
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .case-process {
        padding: 1.5rem 0;
    }
    
    .process-tabs {
        padding: 0 0.75rem;
    }
    
    .flow-item {
        padding: 0.625rem 0.875rem;
    }
    
    .flow-branch {
        padding-left: 1.25rem;
    }
    
    .flow-step {
        font-size: 0.875rem;
    }
    
    .flow-desc {
        font-size: 0.75rem;
    }
} 

.flow-item {
    border-left: 3px solid var(--primary-color);
    transition: transform 0.2s ease;
}

.flow-item:hover {
    transform: translateX(5px);
}

.flow-branch {
    position: relative;
    background: rgba(0,0,0,0.02);
    border-radius: 6px;
    padding: 1rem 1rem 1rem 2rem;
    margin: 0.5rem 0;
}

.flow-branch::before {
    background: rgba(0,0,0,0.1);
}

.process-tab {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-tab.active {
    opacity: 1;
} 

.imibaoa, .imibaoa * {
        margin: 0;
        padding: 0;box-sizing: border-box !important;list-style: none;
    }
.imibaoa .imibaoab {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }
.imibaoa .imibaoabc {
        margin: 0;
        font-size: 16px;
    }
.imibaoa .imibaoabc .imibaoitem {
        padding: 2px 0 5px;
        border-bottom: 1px solid #e0e0e0;
        margin: 0;
    }
.imibaoa .imibaoabc .imibaoitem a {
        margin: auto;
    }
.imibaoa .imibaoitema {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        text-indent: 0;
    }
.imibaoa .imibaoitemab {
        color: #666;
        line-height: 20px;
        overflow: hidden;
        font-size: 14px;
        margin: 0;
        text-indent: 0;
    }

.post-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #e5e7eb;
}

.post-content th,
.post-content td {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.post-content th {
    font-weight: 600;
    background-color: #f9fafb;
    color: #111827;
}

.post-content tr:nth-child(even) {
    background-color: #f9fafb;
}

.post-content tr:hover {
    background-color: #f3f4f6;
}

@media (max-width: 768px) {
    .post-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .post-content th,
    .post-content td {
        padding: 0.5rem 0.75rem;
        min-width: 120px;
    }
}
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.qa-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.more-link {
    font-size: 0.875rem;
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s ease;
}

.more-link:hover {
    color: #0056b3;
}

.more-link::after {
    content: '>';
    font-family: system-ui;
    font-size: 1rem;
    line-height: 1;
}


@media (max-width: 768px) {
    .section-header {
        margin-bottom: 1rem;
    }
    
    .qa-title {
        font-size: 1.1rem;
    }
    
    .more-link {
        font-size: 0.8125rem;
    }
}

