
.aerospace-module {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Open Sans', 'Segoe UI', sans-serif;
}
.aerospace-module h2 {
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 16px;
    color: #333333;
}
.aerospace-module .section-sub {
    font-weight: 400;
    font-size: 16px;
    color: #555555;
    margin-bottom: 32px;
}
.aerospace-module .task-table-wrapper {
    margin-bottom: 60px;
}
/* 表格样式：左对齐，边框统一 */
.aerospace-module .task-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    overflow: auto;
    border: 1px solid #cbd5e1;
    font-size: 16px;
    color: #555555;
}
.aerospace-module .task-table th,
.aerospace-module .task-table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid #cbd5e1;   /* 内部分割线与外边框颜色统一 */
    vertical-align: top;
}
.aerospace-module .task-table th {
    background-color: #f1f5f9;
    font-weight: 600;
    color: #333333;
    border-bottom: 1px solid #cbd5e1;
}
.aerospace-module .task-table tr:last-child td {
    border-bottom: none;
}
/* 防止产品名换行 */
.aerospace-module .task-table .no-wrap {
    white-space: nowrap;
}
/* 移动端卡片布局（保持不变） */
@media (max-width: 768px) {
    .aerospace-module .task-table {
        border: none;
    }
    .aerospace-module .task-table thead {
        display: none;
    }
    .aerospace-module .task-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #cbd5e1;
        border-radius: 12px;
        background: white;
    }
    .aerospace-module .task-table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
        padding: 12px 16px;
        border-bottom: 1px solid #e2e8f0;
        gap: 12px;
    }
    .aerospace-module .task-table td:last-child {
        border-bottom: none;
    }
    .aerospace-module .task-table td::before {
        content: attr(data-label);
        font-weight: 600;
        width: 40%;
        min-width: 120px;
        color: #333333;
    }
    /* 移动端允许产品名换行（避免溢出） */
    .aerospace-module .task-table .no-wrap {
        white-space: normal;
    }
}
.aerospace-module .faq-section {
    margin-top: 40px;
}
.aerospace-module .faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.aerospace-module .faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
}
.aerospace-module .faq-question {
    background: #f8fafc;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.aerospace-module .faq-question:hover {
    background: #eef2ff;
}
.aerospace-module .faq-question .indicator {
    font-size: 20px;
    font-weight: 400;
    transition: transform 0.2s;
}
.aerospace-module .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #ffffff;
    border-top: 1px solid transparent;
}
.aerospace-module .faq-answer-inner {
    padding: 20px 24px;
    font-size: 16px;
    line-height: 1.5;
    color: #555555;
}
.aerospace-module .faq-item.active .faq-question {
    background: #eef2ff;
}
.aerospace-module .faq-item.active .faq-answer {
    max-height: 800px;
    border-top-color: #e2e8f0;
}
.aerospace-module .faq-item.active .indicator {
    transform: rotate(45deg);
}
@media (max-width: 640px) {
    .aerospace-module .faq-question {
        font-size: 16px;
        padding: 14px 20px;
    }
    .aerospace-module .faq-answer-inner {
        padding: 16px 20px;
        font-size: 15px;
    }
}
