/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部区域 */
.header {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0D2F8F 0%, #2a5298 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.header-content h1 {
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
}

.header-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 3px;
    background: #FFF;
    border-radius: 26px;
}

/* 简介部分 */
.intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    position: relative;
}

.intro-text {
    position: relative;
    z-index: 10;
}

.intro-text h2 {
    font-size: 1.75rem; /* 约28px */
    color: #1d1d1d;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
    padding-bottom: 20px;
    z-index: 10;
}

.intro-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52px;
    height: 3px;
    background: #0D2F8F;
    border-radius: 26px;
}

.intro-description {
    background-color: #EAF3FF;
    padding: 40px;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 10;
    margin-top: 40px;
    margin-right: -80px;
}

.intro-description h3 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #1d1d1d !important;
    margin-bottom: 30px !important;
    margin-top: 0 !important;
    line-height: 1.4 !important;
}

.intro-description p {
    font-size: 1rem; /* 约16px */
    line-height: 1.9; /* 更贴近印刷风格的段落行高 */
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.intro-image {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-left: -40px;
    margin-top: -60px;
}

.intro-image img {
    width: 120%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    transform: translateX(-10%);
}

/* 表格部分通用样式 */
.staff-section {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.contact-section {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.section-title {
    font-size: 2.1rem;
    color: #1d1d1d;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 3px;
    background: #0D2F8F;
    border-radius: 26px;
}

.table-wrapper {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 2px;
    margin: 0 auto;
    max-width: 95%;
    background: linear-gradient(180deg, #6bb0ff 0%, #4a90e2 30%, #6bb0ff 70%, #ffffff 100%);
    box-shadow: 0 43px 96.8px 18px rgba(111, 178, 255, 0.25);
    position: relative;
}

.table-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6bb0ff 0%, #4a90e2 30%, #0D2F8F 70%, #ffffff 100%);
    border-radius: 12px;
    z-index: -1;
    box-shadow: inset 0 0 20px rgba(74, 144, 226, 0.1);
}

.table-wrapper > table {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background: linear-gradient(180deg, #dae6ff 0%, #5ba0f2 50%, #f0f7ff 100%);
    position: relative;
}

thead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
    opacity: 0.3;
}

thead th {
    color: #ffffff;
    padding: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.3px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
}

thead th:last-child {
    border-right: none;
}

thead th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

tbody tr {
    border-bottom: 1px solid #e0e8f0;
    transition: background-color 0.2s ease;
}

tbody tr:hover {
    background-color: rgba(30, 60, 114, 0.03);
}

tbody tr:last-child {
    border-bottom: none;
}

tbody td {
    padding: 14px 16px;
    text-align: center;
    font-size: 0.9rem;
    color: #333333;
    font-weight: 400;
    background-color: inherit;
    border-right: 1px solid #e0e8f0;
    transition: background-color 0.2s ease;
}

tbody td:last-child {
    border-right: none;
    font-family: 'Consolas', 'Monaco', 'Courier New', 'Roboto Mono', monospace;
    font-weight: 500;
    letter-spacing: 0.8px;
    font-size: 1.05rem;
}

/* 按分类（部门）区分背景色 - 使用浅蓝色系 */
/* 第1组 - 综合管理部 */
tbody tr:nth-child(1) td,
tbody tr:nth-child(2) td,
tbody tr:nth-child(3) td,
tbody tr:nth-child(4) td,
tbody tr:nth-child(5) td,
tbody tr:nth-child(6) td,
tbody tr:nth-child(7) td,
tbody tr:nth-child(8) td {
    background-color: #f0f7ff;
}

/* 第2组 - 科研组织部 */
tbody tr:nth-child(9) td,
tbody tr:nth-child(10) td,
tbody tr:nth-child(11) td,
tbody tr:nth-child(12) td,
tbody tr:nth-child(13) td,
tbody tr:nth-child(14) td {
    background-color: #ffffff;
}

/* 第3组 - 教学运行部 */
tbody tr:nth-child(14) td,
tbody tr:nth-child(15) td,
tbody tr:nth-child(16) td {
    background-color: #f0f7ff;
}

/* 第4组 - 学生事务部 */
tbody tr:nth-child(17) td,
tbody tr:nth-child(18) td,
tbody tr:nth-child(19) td {
    background-color: #ffffff;
}

/* 第5组 - 成果转化部 */
tbody tr:nth-child(20) td,
tbody tr:nth-child(21) td {
    background-color: #f0f7ff;
}

/* 联系人表格的分组样式 - 与筹建工作组人员表格保持一致 */
/* 第1组 - 合肥分院（浅蓝色） */
.contact-section tbody tr:nth-child(1) td,
.contact-section tbody tr:nth-child(2) td,
.contact-section tbody tr:nth-child(3) td {
    background-color: #f0f7ff;
}

/* 第2组 - 芜湖分院（白色） */
.contact-section tbody tr:nth-child(4) td,
.contact-section tbody tr:nth-child(5) td {
    background-color: #ffffff;
}

/* 第3组 - 阜阳分院（浅蓝色） */
.contact-section tbody tr:nth-child(6) td {
    background-color: #f0f7ff;
}

/* 第4组 - 淮北分院（白色） */
.contact-section tbody tr:nth-child(7) td {
    background-color: #ffffff;
}

/* 第5组 - 蚌埠市工作专班（浅蓝色） */
.contact-section tbody tr:nth-child(8) td,
.contact-section tbody tr:nth-child(9) td {
    background-color: #f0f7ff;
}

/* 第6组 - 黄山市工作专班（白色） */
.contact-section tbody tr:nth-child(10) td {
    background-color: #ffffff;
}

/* 第7组 - 池州市工作专班（浅蓝色） */
.contact-section tbody tr:nth-child(11) td,
.contact-section tbody tr:nth-child(12) td {
    background-color: #f0f7ff;
}

/* 第8组 - 亳州市工作专班（白色） */
.contact-section tbody tr:nth-child(13) td,
.contact-section tbody tr:nth-child(14) td {
    background-color: #ffffff;
}

/* 第9组 - 马鞍山市工作专班（浅蓝色） */
.contact-section tbody tr:nth-child(15) td,
.contact-section tbody tr:nth-child(16) td {
    background-color: #f0f7ff;
}

/* 第10组 - 宣城市工作专班（白色） */
.contact-section tbody tr:nth-child(17) td,
.contact-section tbody tr:nth-child(18) td {
    background-color: #ffffff;
}

/* 第11组 - 淮南市工作专班（浅蓝色） */
.contact-section tbody tr:nth-child(19) td,
.contact-section tbody tr:nth-child(20) td {
    background-color: #f0f7ff;
}

/* 第12组 - 宿州市工作专班（白色） */
.contact-section tbody tr:nth-child(21) td {
    background-color: #ffffff;
}

/* 第13组 - 六安市工作专班（浅蓝色） */
.contact-section tbody tr:nth-child(22) td {
    background-color: #f0f7ff;
}

/* 第14组 - 铜陵市工作专班（白色） */
.contact-section tbody tr:nth-child(23) td,
.contact-section tbody tr:nth-child(24) td {
    background-color: #ffffff;
}

/* 第15组 - 滁州市工作专班（浅蓝色） */
.contact-section tbody tr:nth-child(25) td,
.contact-section tbody tr:nth-child(26) td {
    background-color: #f0f7ff;
}

/* 第16组 - 安庆市专班（白色） */
.contact-section tbody tr:nth-child(27) td,
.contact-section tbody tr:nth-child(28) td {
    background-color: #ffffff;
}


/* 针对不同表格的特殊样式 */
.staff-section table th,
.staff-section table td {
    border-right: 1px solid #e0e8f0;
}

.contact-section table th,
.contact-section table td {
    border-right: 1px solid #e0e8f0;
}

/* 表格行选中状态 */
tbody tr.selected td {
    background-color: #e3f2fd !important;
    color: #0D2F8F;
}

/* 表格行焦点状态 */
tbody tr:focus {
    outline: 2px solid #0D2F8F;
    outline-offset: -2px;
}


/* 组织工作部分 */
.organization-section {
    padding: 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    background: #0D2F8F;
    height: auto;
}

.organization-section .container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: stretch;
    min-height: 500px;
    height: auto;
}

.org-content {
    display: flex;
    align-items: stretch;
    height: 100%;
    min-height: 500px;
    position: relative;
    width: 100%;
}

.org-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.org-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.org-text {
    flex: 1;
    padding: 40px 40px;
    background: #0D2F8F;;
    box-sizing: border-box;
    max-width: 600px;
    margin-left: 50%;
    position: relative;
    z-index: 2;
}

.org-text h2 {
    font-size: 2.1rem;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
    padding-bottom: 20px;
}

.org-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52px;
    height: 3px;
    background: #fff;
    border-radius: 26px;
}

.org-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
    text-align: left;
    max-width: 100%;
}

/* 分支机构部分 */
.branch-section {
    padding: 80px 0;
    background-color: #fff;
}

.branch-diagram {
    margin-bottom: 40px;
}

.branch-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.branch-item {
    background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #C6EBFF 100%);
    color: #333;
    padding: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(198, 235, 255, 0.4);
    transition: transform 0.3s ease;
    border: 2px solid #C6EBFF;
}

.branch-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 235, 255, 0.6);
}

.branch-item.main {
    background: linear-gradient(180deg, #4973EB 0%, #0D2F8F 100%);
    color: #fff;
    width: 160px;
    height: 160px;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(73, 115, 235, 0.4);
    border: 2px solid #4973EB;
}

.branch-arrow {
    font-size: 1.5rem;
    color: #4a90e2;
    font-weight: bold;
}

.branch-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
}

/* 研究院任务部分 */
.mission-section {
    padding: 80px 0;
    background-color: #F2F8FE;
}

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

.mission-card {
    background: #fff;
    padding: 30px 30px;
    text-align: left;
    box-shadow: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: #0D2F8F;
    box-shadow: 0 15px 35px rgba(13, 47, 143, 0.15), 0 5px 15px rgba(13, 47, 143, 0.1);
}

.mission-icon {
    margin-bottom: 25px;
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    background: #0D2F8F;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(13, 47, 143, 0.2);
}

.mission-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.mission-card:hover .mission-icon img {
    filter: brightness(0) invert(1);
}

.mission-card h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    transition: color 0.3s ease;
}

.mission-card:hover h3 {
    color: #0D2F8F;
}

.mission-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* 头部响应式 */
    .header {
        min-height: 40vh;
    }
    
    .header-content h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    /* 简介部分响应式 */
    .intro-section {
        padding: 50px 0;
    }
    
    .intro-content {
        display: flex;
        flex-direction: column;
    }
    
    .intro-text {
        display: contents;
    }
    
    .intro-text h2 {
        font-size: 1.5rem; /* 约24px */
        margin-bottom: 20px;
        text-align: center;
        position: relative;
        padding-bottom: 20px;
        order: 1;
    }
    
    .intro-text h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 52px;
        height: 3px;
        background: #0D2F8F;
        border-radius: 26px;
    }
    
    .intro-image {
        margin-left: 0;
        margin-top: 0;
        order: 2;
    }
    
    .intro-image img {
        width: 100%;
        transform: none;
    }
    
    .intro-description {
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        order: 3;
    }
    
    .intro-description h3 {
        font-size: 1.25rem; /* 约20px */
        margin-bottom: 25px;
    }
    
    .intro-description p {
        font-size: 1rem;
    }
    
    /* 表格响应式 */
    .staff-section, .contact-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .table-wrapper {
        border-radius: 8px;
        padding: 3px;
        margin: 0 5px;
        max-width: calc(100% - 10px);
        box-shadow: 0 3px 12px rgba(74, 144, 226, 0.12);
        overflow-x: visible;
    }
    
    .table-wrapper > table {
        border-radius: 6px;
    }
    
    table {
        min-width: auto;
        width: 100%;
    }
    
    thead th {
        padding: 12px 8px;
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.2px;
        white-space: nowrap;
    }
    
    tbody td {
        padding: 10px 8px;
        font-size: 0.8rem;
        font-weight: 400;
        word-wrap: break-word;
        word-break: break-all;
        white-space: normal;
        line-height: 1.4;
    }
    
    tbody td:last-child {
        font-family: 'Consolas', 'Monaco', 'Courier New', 'Roboto Mono', monospace;
        font-weight: 500;
        letter-spacing: 0.6px;
        font-size: 0.95rem;
    }
    
    /* 组织工作响应式 */
    .organization-section {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }
    
    .organization-section .container {
        flex-direction: column;
        padding: 0 15px;
        max-width: none;
        width: 100%;
        height: auto;
        min-height: auto;
    }
    
    .org-content {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }
    
    .org-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-bottom: 0;
    }
    
    .org-text {
        flex: none;
        padding: 30px 20px;
        max-width: none;
        margin-left: 0;
    }
    
    .org-text h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .org-description p {
        font-size: 1rem;
    }
    
    /* 分支机构响应式 */
    .branch-section {
        padding: 50px 0;
    }
    
    .branch-flow {
        flex-direction: row;
        gap: 5px;
        margin: 30px 0;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    
    .branch-arrow {
        transform: none;
        font-size: 0.8rem;
        display: block;
        color: #4a90e2;
    }
    
    .branch-item {
        width: 60px;
        height: 60px;
        font-size: 0.7rem;
        margin: 2px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .branch-item.main {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .branch-description p {
        font-size: 1rem;
    }
    
    /* 研究院任务响应式 */
    .mission-section {
        padding: 50px 0;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .mission-card {
        padding: 30px 20px;
    }
    
    .mission-icon {
        width: 50px;
        height: 50px;
    }
    
    .mission-icon img {
        width: 35px;
        height: 35px;
    }
    
    .mission-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .mission-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    /* 超小屏幕优化 */
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .intro-text h2,
    .org-text h2,
    .section-title {
        font-size: 1.25rem; /* 约20px */
    }
    
    .intro-description h3 {
        font-size: 1.1rem; /* 约18px */
        margin-bottom: 20px;
    }
    
    .intro-description p,
    .org-description p,
    .branch-description p {
        font-size: 0.9rem;
    }
    
    .table-wrapper {
        padding: 3px;
        margin: 0 5px;
        max-width: calc(100% - 10px);
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(74, 144, 226, 0.1);
    }
    
    .table-wrapper > table {
        border-radius: 4px;
    }
    
    table {
        max-width: 480px;
    }
    
    thead th {
        padding: 10px 6px;
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.1px;
    }
    
    tbody td {
        padding: 8px 6px;
        font-size: 0.7rem;
        font-weight: 400;
    }
    
    tbody td:last-child {
        font-family: 'Consolas', 'Monaco', 'Courier New', 'Roboto Mono', monospace;
        font-weight: 500;
        letter-spacing: 0.5px;
        font-size: 0.85rem;
    }
    
    .mission-card {
        padding: 25px 15px;
    }
    
    .mission-card h3 {
        font-size: 1.1rem;
    }
    
    .mission-card p {
        font-size: 0.9rem;
    }
    
    /* 移动端动画优化 */
    .intro-text h2,
    .intro-image,
    .intro-description {
        opacity: 0;
    }
    
    .intro-content.animate-in .intro-text h2 {
        animation: fadeInUp 0.6s ease-out 0.1s forwards;
    }
    
    .intro-content.animate-in .intro-image {
        animation: scaleIn 0.6s ease-out 0.3s forwards;
    }
    
    .intro-content.animate-in .intro-description {
        animation: fadeInUp 0.6s ease-out 0.5s forwards;
    }
}

/* 滚动条样式 */
.table-wrapper::-webkit-scrollbar {
    display: none;
}

.table-wrapper {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 性能优化 - 使用will-change */
.intro-text h2,
.intro-image,
.intro-description,
.org-content,
.mission-card,
.section-title,
.table-wrapper,
.branch-flow {
    will-change: opacity, transform;
}

/* 初始状态 - 隐藏元素 */
.intro-text h2,
.intro-image,
.intro-description,
.org-content,
.mission-card,
.section-title,
.table-wrapper,
.branch-flow {
    opacity: 0;
}

/* 简介部分动画 */
.intro-content.animate-in .intro-text h2 {
    animation: fadeInUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.intro-content.animate-in .intro-image {
    animation: scaleIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
}

.intro-content.animate-in .intro-description {
    animation: fadeInUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

/* 桌面端不同的动画 */
@media (min-width: 769px) {
    .intro-content.animate-in .intro-text {
        animation: fadeInLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
    }
    
    .intro-content.animate-in .intro-image {
        animation: fadeInRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
    }
}

/* 组织工作动画 */
.org-content.animate-in {
    animation: fadeInUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 任务卡片动画 */
.mission-card.animate-in {
    animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 表格动画 */
.table-wrapper.animate-in {
    animation: fadeInUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 标题动画 */
.section-title.animate-in {
    animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 分支流程动画 */
.branch-flow.animate-in {
    animation: scaleIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 打印样式 */
@media print {
    .header-bg {
        background: none !important;
        background-color: #0D2F8F !important;
    }
    
    .mission-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .table-wrapper {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
