/* === about.css === */
.about-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/about-bg.jpg') center/cover no-repeat, #f4f8fb;
    padding: 100px 0 60px 0;
}

.about-card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    max-width: 1100px;
    width: 100%;
}

.about-left {
    background: rgba(255, 255, 255, 0.7);
    padding: 48px 36px 48px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    max-width: 360px;
}

.about-logo {
    font-size: 2rem;
    font-weight: bold;
    color: #2a7db8;
    margin-bottom: 10px;
    text-align: center;
}

.about-slogan {
    font-size: 1rem;
    color: #4a90e2;
    margin-bottom: 32px;
    text-align: center;
}

.about-molecule {
    width: 180px;
    height: 180px;
    background: #eaf2fb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.about-molecule img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.about-right {
    flex: 1;
    padding: 48px 48px 48px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-size: 2.2rem;
    color: #2a7db8;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.about-title-en {
    font-size: 1.3rem;
    color: #2a7db8;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.about-content {
    font-size: 1.08rem;
    color: #222;
    line-height: 2;
    margin-bottom: 0.5rem;
}

.about-content-en {
    font-size: 1.08rem;
    color: #222;
    line-height: 2;
    margin-bottom: 0.5rem;
    display: none;
}

@media (max-width: 900px) {
    .about-card {
        flex-direction: column;
    }

    .about-left,
    .about-right {
        padding: 32px 20px;
        min-width: unset;
        max-width: unset;
    }

    .about-molecule {
        margin: 0 auto 20px auto;
    }

    @media (max-width: 600px) {
        .about-main {
            padding: 60px 0 30px 0;
        }

        .about-card {
            border-radius: 0;
            box-shadow: none;
        }

        .about-left,
        .about-right {
            padding: 20px 10px;
        }

        .team-grid {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: flex-start;
            margin-top: 32px;
        }

        .team-member {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 24px 20px 18px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: calc(33.33% - 27px);
            transition: box-shadow 0.3s, transform 0.3s;
        }

        .team-member:hover {
            box-shadow: 0 8px 32px rgba(33, 118, 193, 0.18);
            transform: translateY(-4px) scale(1.03);
        }

        .team-photo {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(33, 118, 193, 0.10);
        }

        .team-name {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2176c1;
            margin-bottom: 6px;
            text-align: center;
        }

        .team-title {
            font-size: 1rem;
            color: #555;
            text-align: center;
        }

        @media (max-width: 900px) {
            .team-grid {
                gap: 20px;
            }

            .team-member {
                width: 44vw;
                min-width: 140px;
            }

            @media (max-width: 600px) {
                .team-grid {
                    gap: 10px;
                }

                .team-member {
                    width: 90vw;
                    min-width: 100px;
                }

                .team-photo {
                    width: 72px;
                    height: 72px;
                }


            }
        }
    }
}

/* === careers.css === */
.careers-main {
    min-height: 100vh;
    background: #f4f8fb;
    padding: 100px 0 60px 0;
}

.hero-section {
    background: linear-gradient(135deg, #2176c1 0%, #4a90e2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.culture-section {
    margin-bottom: 80px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.culture-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.culture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(33, 118, 193, 0.15);
}

.culture-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2176c1, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
}

.culture-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2176c1;
    margin-bottom: 16px;
}

.culture-desc {
    color: #555;
    line-height: 1.6;
}

.jobs-section {
    margin-bottom: 80px;
}

.job-filters {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #2176c1;
    background: transparent;
    color: #2176c1;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #2176c1;
    color: white;
}

.jobs-grid {
    display: grid;
    gap: 24px;
}

.job-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s, transform 0.3s;
    border-left: 4px solid #2176c1;
}

.job-card:hover {
    box-shadow: 0 8px 32px rgba(33, 118, 193, 0.15);
    transform: translateY(-2px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2176c1;
    margin-bottom: 8px;
}

.job-department {
    color: #666;
    font-size: 0.95rem;
}

.job-type {
    background: #e8f4fd;
    color: #2176c1;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.job-details {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.job-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.95rem;
}

.job-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.apply-btn {
    background: linear-gradient(135deg, #2176c1, #4a90e2);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.3s;
}

.apply-btn:hover {
    transform: translateY(-2px);
}

.benefits-section {
    margin-bottom: 80px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.benefit-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #2176c1;
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2176c1;
    margin-bottom: 12px;
}

.benefit-desc {
    color: #555;
    line-height: 1.6;
}

.contact-section {
    background: linear-gradient(135deg, #2176c1 0%, #4a90e2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.contact-btn {
    background: linear-gradient(135deg, #2176c1, #4a90e2) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #1a5f9e, #3a7bc8) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(33, 118, 193, 0.3) !important;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }

    .job-header {
        flex-direction: column;
        gap: 12px;
    }

    .job-details {
        flex-direction: column;
        gap: 12px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }


}

/* === contact.css === */
.contact-main {
    min-height: 100vh;
    background: #f4f8fb;
    padding: 100px 0 60px 0;
}

.hero-section {
    background: linear-gradient(135deg, #2176c1 0%, #4a90e2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    margin-bottom: 80px;
}

.contact-info {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2176c1, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2176c1;
    margin-bottom: 8px;
}

.info-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 4px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #2176c1;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #2176c1, #4a90e2);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.map-section {
    margin-bottom: 80px;
}

.map-container {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-header {
    padding: 24px 32px;
    background: linear-gradient(135deg, #2176c1, #4a90e2);
    color: white;
}

.map-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.map-subtitle {
    opacity: 0.9;
}

.map-frame {
    width: 100%;
    height: 400px;
    border: none;
}

.office-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.office-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.office-card:hover {
    transform: translateY(-4px);
}

.office-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2176c1;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.office-icon {
    color: #2176c1;
    font-size: 1.2rem;
}

.office-details {
    color: #555;
    line-height: 1.6;
}

.office-details p {
    margin-bottom: 8px;
}

.office-details strong {
    color: #333;
}

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .office-info {
        grid-template-columns: 1fr;
    }

    @media (max-width: 600px) {
        .contact-info {
            padding: 24px;
        }

        .map-header {
            padding: 20px;
        }

        .map-frame {
            height: 300px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            margin-bottom: 80px;
        }

        .contact-card {
            background: #fff;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(33, 118, 193, 0.15);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #2176c1, #4a90e2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.5rem;
        }

        .contact-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2176c1;
            margin-bottom: 16px;
        }

        .contact-text {
            color: #555;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .collab-model-row {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 32px;
            margin: 36px 0 24px 0;
            flex-wrap: wrap;
        }

        .collab-card {
            width: 170px;
            height: 170px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 600;
            position: relative;
            transform: rotate(45deg);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: default;
            overflow: visible;
        }

        .collab-card:hover {
            transform: rotate(45deg) scale(1.06);
            box-shadow: 0 8px 32px rgba(33, 118, 193, 0.18);
        }

        .collab-icon {
            font-size: 2.5rem;
            margin-bottom: 12px;
            transform: rotate(-45deg);
        }

        .collab-title {
            font-size: 0.98rem;
            text-align: center;
            transform: rotate(-45deg);
            line-height: 1.3;
            overflow-wrap: break-word;
            word-break: normal;
            white-space: pre-line;
            padding: 0 6px;
            margin: 0 auto;
            display: block;
        }

        .collab-blue {
            background: #4177c2;
        }

        .collab-orange {
            background: #f08c2e;
        }

        .collab-yellow {
            background: #f5c012;
            color: #fff;
        }

        .collab-green {
            background: #6bbd4a;
        }

        @media (max-width: 1200px) {
            .collab-card {
                width: 180px;
                min-height: 140px;
            }

            .collab-title {
                font-size: 0.98rem;
                padding: 0 8px;
            }

            @media (max-width: 900px) {
                .collab-model-row {
                    gap: 10px;
                }

                .collab-card {
                    width: 110px;
                    height: 110px;
                }

                .collab-title {
                    font-size: 0.78rem;
                    padding: 0 2px;
                }

                @media (max-width: 600px) {
                    .collab-model-row {
                        gap: 4px;
                    }

                    .collab-card {
                        width: 80px;
                        height: 80px;
                    }

                    .collab-title {
                        font-size: 0.62rem;
                        padding: 0 1px;
                    }

                    .collab-icon {
                        font-size: 0.8rem;
                    }

                    .collab-cards-row {
                        display: flex;
                        justify-content: center;
                        align-items: stretch;
                        gap: 32px;
                        margin: 36px 0 24px 0;
                        flex-wrap: wrap;
                    }

                    .collab2-card {
                        height: 160px;
                        min-width: 180px;
                        max-width: 220px;
                        background: #fff;
                        border-radius: 20px;
                        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
                        padding: 28px 18px 20px 18px;
                        flex: 1 1 180px;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: flex-start;
                        transition: transform 0.2s, box-shadow 0.2s;
                        position: relative;
                        overflow: hidden;
                    }

                    .collab2-card:hover {
                        transform: translateY(-6px) scale(1.04);
                        box-shadow: 0 8px 32px rgba(33, 118, 193, 0.18);
                    }

                    .collab2-icon {
                        font-size: 2.2rem;
                        margin-bottom: 14px;
                    }

                    .collab2-title {
                        text-align: center;
                        font-weight: 600;
                        margin-bottom: 2px;
                        line-height: 1.3;
                        word-break: break-word;
                        white-space: normal;
                        overflow: hidden;
                    }

                    .collab2-title.zh {
                        font-size: 1.08rem;
                        color: #fff;
                        margin-bottom: 2px;
                    }

                    .collab2-title.en {
                        font-size: 0.98rem;
                        color: #f3f3f3;
                        margin-bottom: 0;
                    }

                    .collab2-blue {
                        background: linear-gradient(135deg, #2541b2, #3a86ff);
                    }

                    .collab2-orange {
                        background: linear-gradient(135deg, #ff5e62, #fca311);
                    }

                    .collab2-yellow {
                        background: linear-gradient(135deg, #f2994a, #f2c94c);
                    }

                    .collab2-yellow .collab2-title {
                        color: #fff !important;
                    }

                    .collab2-green {
                        background: linear-gradient(135deg, #6bbd4a, #a8e063);
                    }

                    @media (max-width: 900px) {
                        .collab-cards-row {
                            gap: 18px;
                        }

                        .collab2-card {
                            height: 120px;
                            min-width: 140px;
                            max-width: 180px;
                            padding: 18px 8px 14px 8px;
                        }

                        .collab2-title.zh {
                            font-size: 0.92rem;
                        }

                        .collab2-title.en {
                            font-size: 0.82rem;
                        }

                        @media (max-width: 600px) {
                            .collab-cards-row {
                                gap: 8px;
                            }

                            .collab2-card {
                                height: 90px;
                                min-width: 90px;
                                max-width: 100%;
                                padding: 10px 2px 8px 2px;
                            }

                            .collab2-title.zh {
                                font-size: 0.78rem;
                            }

                            .collab2-title.en {
                                font-size: 0.68rem;
                            }

                            .collab2-icon {
                                font-size: 1.2rem;
                            }

                            html[lang="zh"] .zh,
                            html[lang="zh-CN"] .zh {
                                display: block !important;
                            }

                            html[lang="zh"] .en,
                            html[lang="zh-CN"] .en {
                                display: none !important;
                            }

                            html[lang="en"] .en {
                                display: block !important;
                            }

                            html[lang="en"] .zh {
                                display: none !important;
                            }


                        }
                    }
                }
            }
        }
    }
}

/* === partners.css === */
.partners-main {
    min-height: 100vh;
    background: #f4f8fb;
    padding: 100px 0 60px 0;
}

.partners-section {
    margin-bottom: 40px;
}

.partners-intro {
    text-align: center;
    margin-bottom: 48px;
}

.partners-intro h3 {
    font-size: 1.4rem;
    color: #2176c1;
    margin-bottom: 16px;
    font-weight: 600;
}

.partners-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.partner-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(33, 118, 193, 0.1);
}

.partner-card:hover {
    box-shadow: 0 8px 32px rgba(33, 118, 193, 0.18);
    transform: translateY(-4px);
    border-color: rgba(33, 118, 193, 0.3);
}

.partner-logo {
    width: 120px;
    height: 80px;
    margin: 0 auto 20px auto;
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e8ed;
}

.partner-logo img {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
}

.partner-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2176c1;
    margin-bottom: 8px;
}

.partner-type {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 12px;
}

.partner-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.partners-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e1e8ed;
    border-radius: 25px;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: #2176c1;
    border-color: #2176c1;
    color: #fff;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .partner-card {
        padding: 24px 20px;
    }

    .partners-categories {
        gap: 12px;
    }

    .category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }


}

/* === pipeline.css === */
.pipeline-detail-main {
    background: #f7fafd;
    min-height: 100vh;
    padding: 120px 0 60px 0;
}

.pipeline-section {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(42, 125, 184, 0.10);
    padding: 48px 36px;
    margin-bottom: 0 !important;
}

.section-title {
    font-size: 2rem;
    color: #2176c1;
    font-weight: 700;
    margin-bottom: 24px;
}

.pipeline-table-wrap {
    overflow-x: auto;
    margin-top: 24px;
}

.pipeline-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 16px;
    background: none;
}

.pipeline-table th,
.pipeline-table td {
    background: #fff;
    padding: 16px 8px;
    text-align: center;
    font-size: 1rem;
    border: none;
}

.pipeline-table th {
    color: #2176c1;
    font-weight: 700;
    background: #f4f8fb;
    border-radius: 8px 8px 0 0;
}

.pipeline-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1a2a3a;
    min-width: 180px;
}

.pipeline-moa {
    font-size: 0.95rem;
    color: #2176c1;
    font-weight: 400;
}

.pipeline-bar {
    width: 60px;
    height: 16px;
    border-radius: 8px;
    background: #e9eef5;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
}

.pipeline-bar.yellow {
    background: #ffe082;
}

.pipeline-bar.green {
    background: #7ed957;
}

.pipeline-bar.blue {
    background: #5bb6f9;
}

.pipeline-bar.purple {
    background: #b388ff;
}

.pipeline-bar[data-tip]:hover::after {
    content: attr(data-tip);
    position: absolute;
    left: 50%;
    top: -38px;
    transform: translateX(-50%);
    background: #2176c1;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    white-space: pre-line;
    font-size: 0.95rem;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(42, 125, 184, 0.15);
    pointer-events: none;
}

.pipeline-remark {
    font-size: 0.98rem;
    color: #888;
    text-align: left;
    max-width: 260px;
}

@media (max-width: 900px) {
    .pipeline-section {
        padding: 24px 8px;
    }

    .pipeline-table th,
    .pipeline-table td {
        padding: 10px 4px;
        font-size: 0.95rem;
    }

    .pipeline-table td:first-child {
        min-width: 120px;
    }

    @media (max-width: 600px) {
        .pipeline-detail-main {
            padding: 80px 0 30px 0;
        }

        .pipeline-section {
            border-radius: 0;
        }

        .pipeline-table th,
        .pipeline-table td {
            padding: 8px 2px;
            font-size: 0.9rem;
        }

        @media (max-width: 700px) {
            .adc-advantage-flex {
                flex-direction: column !important;
                gap: 0 !important;
            }

            .adc-advantage-list,
            .payload-table-section {
                max-width: 100% !important;
                min-width: 0 !important;
            }

            .pipeline-table th.bilingual:nth-child(6),
            .pipeline-table td.pipeline-remark {
                display: none !important;
            }

            .mobile-indication {
                display: block !important;
            }

            .payload-table-section {
                width: 100% !important;
                min-width: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .payload-table {
                width: 100% !important;
                min-width: 0 !important;
            }

            .pipeline-feature-section {
                margin-bottom: 0 !important;
            }

            .section-gap {
                height: 40px;
            }

            .image-zoom-hint {
                position: absolute;
                top: 10px;
                right: 10px;
                background: rgba(0, 0, 0, 0.7);
                color: white;
                padding: 4px 8px;
                border-radius: 4px;
                font-size: 12px;
                opacity: 0;
                transition: opacity 0.3s;
                pointer-events: none;
            }

            .zoomable-image:hover+.image-zoom-hint {
                opacity: 1;
            }

            @media (max-width: 768px) {
                .image-zoom-hint {
                    font-size: 11px;
                    padding: 3px 6px;
                }


            }
        }
    }
}

/* === technology.css === */
.tech-main {
    background: #f7fafd;
    min-height: 100vh;
    padding: 120px 0 60px 0;
}

.tech-section {
    max-width: 1200px;
    margin: 0 auto 48px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(42, 125, 184, 0.10);
    padding: 48px 36px;
}

.tech-title {
    font-size: 2rem;
    color: #2176c1;
    font-weight: 700;
    margin-bottom: 24px;
}

.tech-img {
    text-align: center;
    margin-bottom: 32px;
}

.tech-img img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(42, 125, 184, 0.10);
}

.tech-table-title {
    font-size: 1.3rem;
    color: #2176c1;
    font-weight: 600;
    margin: 32px 0 16px 0;
}

.tech-table-wrap {
    overflow-x: auto;
}

.tech-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    background: #fafdff;
}

.tech-table th,
.tech-table td {
    border: 1px solid #e0e6ed;
    padding: 10px 8px;
    text-align: center;
    font-size: 1rem;
}

.tech-table th {
    background: #eaf2fb;
    color: #2176c1;
    font-weight: 700;
}

.tech-table tr:nth-child(even) {
    background: #f4f8fb;
}

.tech-table .highlight {
    color: #2176c1;
    font-weight: 700;
}

.tech-table .yes {
    color: #28a745;
    font-weight: bold;
}

.tech-table .no {
    color: #dc3545;
    font-weight: bold;
}

.tech-table .dar {
    color: #f5a623;
    font-weight: bold;
}

@media (max-width: 900px) {
    .tech-section {
        padding: 24px 8px;
    }

    @media (max-width: 600px) {
        .tech-main {
            padding: 80px 0 30px 0;
        }


    }
}

/* === news.css === */
.news-main {
    min-height: 100vh;
    background: #f4f8fb;
    padding: 100px 0 60px 0;
}

.news-section {
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: 0 8px 32px rgba(33, 118, 193, 0.18);
    transform: translateY(-4px) scale(1.02);
}

.news-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2176c1;
    margin-bottom: 12px;
    line-height: 1.4;
    flex: 1;
}

.news-summary {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.news-read-more {
    color: #2176c1;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.news-read-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-content {
        padding: 20px;
    }

    .news-image {
        height: 200px;
    }

    @media (max-width: 700px) {
        .news-card-flex {
            flex-direction: column !important;
            align-items: stretch !important;
        }

        .news-card-flex img {
            height: 180px !important;
            max-width: 100% !important;
        }

        @media (max-width: 900px) {
            .news-card-flex {
                flex-direction: column !important;
                align-items: stretch !important;
                gap: 20px !important;
            }

            .news-card-flex img {
                max-width: 100% !important;
                height: auto !important;
            }

            .news-feature-section {
                background: #fff;
                border-radius: 16px;
                box-shadow: 0 8px 32px rgba(42, 125, 184, 0.10);
                padding: 48px 36px 32px 36px;
                margin-bottom: 40px;
            }

            .news-feature-section-flex {
                display: flex;
                align-items: center;
                gap: 40px;
                flex-wrap: wrap;
            }

            .news-feature-image {
                flex: 1;
                max-width: 400px;
                width: 100%;
                display: flex;
                justify-content: center;
                position: relative;
            }

            .news-feature-image img {
                width: 100%;
                max-width: 400px;
                height: auto;
                object-fit: contain;
                background: #fff;
                display: block;
                cursor: pointer;
                transition: transform 0.3s ease;
                border-radius: 8px;
            }

            .news-feature-image img:hover {
                transform: scale(1.05);
            }

            .news-feature-content {
                flex: 1;
                min-width: 220px;
            }


            /* 图片放大提示 */
            .image-zoom-hint {
                position: absolute;
                top: 10px;
                right: 10px;
                background: rgba(0, 0, 0, 0.7);
                color: white;
                padding: 4px 8px;
                border-radius: 4px;
                font-size: 12px;
                opacity: 0;
                transition: opacity 0.3s;
                pointer-events: none;
            }

            .news-feature-image:hover .image-zoom-hint {
                opacity: 1;
            }


            /* 图片放大模态框样式 */
            .image-modal {
                display: none;
                position: fixed;
                z-index: 1000;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.9);
                backdrop-filter: blur(5px);
            }

            .modal-content {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                max-width: 90%;
                max-height: 90%;
                text-align: center;
            }

            .modal-image {
                max-width: 100%;
                max-height: 90vh;
                object-fit: contain;
                border-radius: 8px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            }

            .close-modal {
                position: absolute;
                top: 20px;
                right: 30px;
                color: #f1f1f1;
                font-size: 40px;
                font-weight: bold;
                cursor: pointer;
                transition: color 0.3s;
            }

            .close-modal:hover {
                color: #bbb;
            }

            .close-modal:focus {
                color: #bbb;
                text-decoration: none;
            }


            @media (max-width: 768px) {
                .news-grid {
                    grid-template-columns: 1fr;
                }

                .news-feature-section-flex {
                    flex-direction: column;
                    text-align: center;
                }

                .news-feature-image {
                    max-width: 100%;
                }

                .close-modal {
                    top: 15px;
                    right: 20px;
                    font-size: 30px;
                }

                .image-zoom-hint {
                    font-size: 11px;
                    padding: 3px 6px;
                }


                /* 移动端触摸提示 */
                @media (hover: none) and (pointer: coarse) {
                    .image-zoom-hint {
                        content: "点击查看";
                    }


                }
            }
        }
    }
}

/* === news-detail.css === */
.news-detail-main {
    min-height: 100vh;
    background: #f7fafd;
    padding: 120px 0 60px 0;
}

.news-detail-card {
    background: #fff;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(42, 125, 184, 0.10);
    padding: 48px 36px 36px 36px;
    display: flex;
    gap: 40px;
}

.news-detail-content-area {
    flex: 1.2;
}

.news-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 16px;
}

.news-detail-meta {
    color: #f5a623;
    font-size: 1rem;
    margin-bottom: 24px;
}

.news-detail-content {
    font-size: 1.15rem;
    color: #222;
    line-height: 2;
    margin-bottom: 1.5rem;
}

.news-detail-content .en {
    color: #2176c1;
    font-weight: 500;
    margin: 18px 0 8px 0;
    display: block;
}

.news-detail-content .en-paragraph {
    color: #2176c1;
    font-weight: 400;
    margin: 0 0 18px 0;
    display: block;
}

.news-detail-img-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 320px;
}

.news-detail-img-area img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 16px rgba(42, 125, 184, 0.10);
}

.news-detail-img-area .img-caption {
    font-size: 0.95rem;
    color: #2176c1;
    margin-top: 6px;
    text-align: center;
}

.news-detail-back {
    display: inline-flex;
    align-items: center;
    color: #2a7db8;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.news-detail-back i {
    margin-right: 8px;
}

.news-detail-back:hover {
    color: #f5a623;
}

.bilingual .en {
    display: block;
}

.bilingual .zh {
    display: none;
}

@media (max-width: 900px) {
    .news-detail-card {
        flex-direction: column;
        padding: 24px 10px;
    }

    .news-detail-img-area {
        min-width: unset;
        max-width: 100%;
    }

    .news-detail-img-area img {
        max-width: 100%;
    }

    @media (max-width: 600px) {
        .news-detail-main {
            padding: 80px 0 30px 0;
        }

        .news-detail-card {
            border-radius: 0;
        }

        /* Extracted from deeper sections of jnow1121noshowtechnology.html */
        .mclick-table-struct-row {
            margin-bottom: 18px;
            max-width: 1300px;
        }

        .mclick-table-wrap {
            display: block;
        }

        .mclick-dar-table td,
        .mclick-dar-table th {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .mclick-adv-cards {
            margin-top: 32px;
        }

        .adv-card {
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 4px 16px rgba(33, 118, 193, 0.08);
            padding: 28px 18px;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 160px;
        }

        .adv-card:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 8px 32px rgba(33, 118, 193, 0.13);
        }

        .adv-icon {
            font-size: 2.2rem;
            color: #2176c1;
            margin-bottom: 14px;
        }

        .adv-title {
            font-size: 1.08rem;
            font-weight: 600;
            line-height: 1.6;
        }

        @media (max-width: 900px) {
            .mclick-adv-cards {
                gap: 16px;
            }

            .adv-card {
                padding: 18px 8px;
                min-height: 120px;
            }

            .adv-title {
                font-size: 0.98rem;
            }
        }
    }
}