/* 基础样式重置 */
* {
    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: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ==================== 顶部导航 ==================== */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.logo img {
    height: 45px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #1e5fbb;
    letter-spacing: 2px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-list li a {
    display: block;
    padding: 8px 18px;
    font-size: 15px;
    color: #333;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: #1e5fbb;
    background: #f0f6ff;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e5fbb;
    font-weight: 600;
    font-size: 15px;
}

.header-phone i {
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #333;
    transition: 0.3s;
}

/* ==================== Banner区域 ==================== */
.banner {
    background: url('banner.png') center center / cover no-repeat;
    min-height: 420px;
    margin-top: 70px;
    position: relative;
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
}

.banner h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.banner p {
    font-size: 16px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.8;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #1e5fbb;
    color: #fff;
}

.btn-primary:hover {
    background: #1a4f9e;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #1e5fbb;
}

.btn-outline-blue {
    background: transparent;
    color: #1e5fbb;
    border: 1px solid #1e5fbb;
}

.btn-outline-blue:hover {
    background: #1e5fbb;
    color: #fff;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* ==================== 通用区块样式 ==================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #1e5fbb;
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-desc {
    font-size: 15px;
    color: #666;
    margin-top: 15px;
}

/* ==================== 热门课程推荐 ==================== */
.courses-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.course-card {
    background: #fff;
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.course-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1e5fbb 0%, #3d7dd8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-icon i {
    font-size: 28px;
    color: #fff;
}

.course-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.course-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
}

.course-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1e5fbb;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.course-link:hover {
    gap: 10px;
}

.course-link i {
    font-size: 12px;
}

/* ==================== 伟创动态 ==================== */
.news-section {
    padding: 80px 0;
    background: #fff;
}

.news-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
}

.news-featured {
    background: #0a1628;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.news-featured img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-featured-info {
    padding: 25px;
    color: #fff;
}

.news-tag {
    display: inline-block;
    background: #1e5fbb;
    color: #fff;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 12px;
    margin-bottom: 12px;
}

.news-featured-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-featured-info p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-featured .btn {
    margin: 0 25px 25px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fc;
    border-radius: 8px;
    transition: all 0.3s;
}

.news-item:hover {
    background: #eef3fa;
}

.news-date {
    min-width: 60px;
    text-align: center;
    padding: 10px;
    background: #1e5fbb;
    border-radius: 6px;
    color: #fff;
}

.news-date .day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 12px;
    margin-top: 4px;
    opacity: 0.9;
}

.news-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ==================== 产教融合 ==================== */
.fusion-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.fusion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.fusion-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.fusion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.fusion-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.fusion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.fusion-card:hover .fusion-image img {
    transform: scale(1.05);
}

.fusion-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 107, 107, 0.9);
    color: #fff;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 12px;
}

.fusion-info {
    padding: 20px;
}

.fusion-info h4 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fusion-meta {
    font-size: 12px;
    color: #999;
}

.fusion-more {
    text-align: center;
    margin-top: 40px;
}

/* ==================== 师资力量 ==================== */
.teachers-section {
    padding: 80px 0;
    background: #fff;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.teacher-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fc;
    border-radius: 8px;
    transition: all 0.3s;
}

.teacher-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.teacher-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #1e5fbb;
}

.teacher-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teacher-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.teacher-title {
    font-size: 14px;
    color: #1e5fbb;
    margin-bottom: 10px;
}

.teacher-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ==================== 合作院校 ==================== */
.partners-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.partner-tag {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s;
}

.partner-tag:hover,
.partner-tag.active {
    background: #1e5fbb;
    border-color: #1e5fbb;
    color: #fff;
}

.partners-more {
    text-align: center;
    margin-top: 40px;
}

/* ==================== 底部Footer ==================== */
.footer {
    background: #1a2332;
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-about h3,
.footer-links h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-about p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact-info p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-info i {
    color: #1e5fbb;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 14px;
    color: #aaa;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #fff;
}

.qrcode-placeholder {
    text-align: center;
}

.qrcode {
    width: 100px;
    height: 100px;
    background: #fff;
    margin: 0 auto 10px;
    border-radius: 4px;
}

.qrcode-placeholder p {
    font-size: 12px;
    color: #aaa;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fusion-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-phone {
        display: none;
    }

    .banner h1 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .banner p {
        font-size: 14px;
    }

    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* ==================== 子页面通用样式 ==================== */

/* 页面Banner */
.page-banner {
    background: linear-gradient(135deg, #1e5fbb 0%, #3d7dd8 100%);
    min-height: 200px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-content {
    text-align: center;
    color: #fff;
}

.page-banner-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-banner-content p {
    font-size: 16px;
    opacity: 0.9;
}

/* 面包屑导航 */
.breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: #1e5fbb;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ==================== 关于伟创页面 ==================== */
.about-intro {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.honors-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.honor-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.honor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.honor-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ==================== 产教融合详情页 ==================== */
.fusion-intro {
    padding: 40px 0 80px;
}

.fusion-detail {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.fusion-main h2 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
}

.fusion-image-large {
    margin-bottom: 30px;
}

.fusion-image-large img {
    width: 100%;
    border-radius: 8px;
}

.fusion-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 25px 0 15px;
}

.fusion-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.fusion-tags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fusion-tags span {
    display: inline-block;
    padding: 6px 16px;
    background: #f0f6ff;
    color: #1e5fbb;
    border-radius: 20px;
    font-size: 13px;
}

.sidebar-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.sidebar-card-header {
    background: #1e5fbb;
    color: #fff;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
}

.sidebar-card-content {
    padding: 20px;
}

.sidebar-card-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.sidebar-tags {
    display: flex;
    gap: 8px;
}

.sidebar-tags span {
    display: inline-block;
    padding: 4px 10px;
    background: #f0f6ff;
    color: #1e5fbb;
    border-radius: 3px;
    font-size: 12px;
}

/* ==================== 软件开发页面 ==================== */
.software-intro {
    padding: 80px 0;
}

.software-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.software-service-card {
    background: #fff;
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid #eee;
}

.software-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #1e5fbb;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1e5fbb 0%, #3d7dd8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 28px;
    color: #fff;
}

.software-service-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.software-service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 技术栈 */
.tech-stack-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tech-category {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.tech-category h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #1e5fbb;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tags span {
    display: inline-block;
    padding: 8px 18px;
    background: #f0f6ff;
    color: #1e5fbb;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.tech-tags span:hover {
    background: #1e5fbb;
    color: #fff;
}

/* 开发流程 */
.dev-process-section {
    padding: 80px 0;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1e5fbb 0%, #3d7dd8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    padding: 0 10px;
}

/* 案例展示 */
.cases-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.case-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.case-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.case-info {
    padding: 20px;
}

.case-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.case-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.case-tags {
    display: flex;
    gap: 8px;
}

.case-tags span {
    display: inline-block;
    padding: 4px 10px;
    background: #f0f6ff;
    color: #1e5fbb;
    border-radius: 3px;
    font-size: 12px;
}

/* 软件开发联系 */
.software-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e5fbb 0%, #3d7dd8 100%);
}

.contact-cta {
    text-align: center;
    color: #fff;
}

.contact-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.contact-cta .btn-primary {
    background: #fff;
    color: #1e5fbb;
}

.contact-cta .btn-primary:hover {
    background: #f0f6ff;
}

/* ==================== 考试认证页面 ==================== */
.cert-intro {
    padding: 80px 0;
}

.cert-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cert-intro-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.cert-intro-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.cert-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cert-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cert-feature i {
    color: #1e5fbb;
    font-size: 18px;
}

.cert-feature span {
    font-size: 14px;
    color: #333;
}

.cert-intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 认证项目 */
.cert-projects {
    padding: 80px 0;
    background: #f8f9fc;
}

.cert-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cert-category {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.cert-category-header {
    background: linear-gradient(135deg, #1e5fbb 0%, #3d7dd8 100%);
    color: #fff;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cert-category-header i {
    font-size: 24px;
}

.cert-category-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.cert-list {
    padding: 10px 0;
}

.cert-item {
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cert-item:last-child {
    border-bottom: none;
}

.cert-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.cert-item p {
    font-size: 13px;
    color: #666;
}

.cert-badge {
    position: absolute;
    top: 15px;
    right: 25px;
    padding: 3px 10px;
    background: #ff6b6b;
    color: #fff;
    border-radius: 3px;
    font-size: 11px;
}

/* 认证流程 */
.cert-process {
    padding: 80px 0;
}

.cert-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cert-step {
    text-align: center;
    flex: 1;
    max-width: 180px;
}

.cert-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1e5fbb 0%, #3d7dd8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-step-icon i {
    font-size: 32px;
    color: #fff;
}

.cert-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.cert-step p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.cert-step-arrow {
    color: #1e5fbb;
    font-size: 24px;
}

/* 考试安排 */
.exam-schedule {
    padding: 80px 0;
    background: #f8f9fc;
}

.schedule-table-wrapper {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.schedule-table th {
    background: #1e5fbb;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.schedule-table td {
    font-size: 14px;
    color: #333;
}

.schedule-table tr:hover {
    background: #f8f9fc;
}

/* ==================== 培训课程页面 ==================== */
.course-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.course-tabs {
    display: flex;
    gap: 10px;
    padding: 15px 0;
    overflow-x: auto;
}

.course-tab {
    display: inline-block;
    padding: 10px 25px;
    background: #f8f9fc;
    color: #333;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
}

.course-tab:hover,
.course-tab.active {
    background: #1e5fbb;
    color: #fff;
}

.course-list-section {
    padding: 60px 0;
    background: #f8f9fc;
}

.course-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.course-detail-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    transition: all 0.3s;
}

.course-detail-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.course-detail-image {
    width: 240px;
    min-height: 280px;
    position: relative;
    flex-shrink: 0;
}

.course-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-level {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: rgba(30, 95, 187, 0.9);
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
}

.course-detail-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-detail-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.course-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.course-meta span {
    font-size: 13px;
    color: #999;
}

.course-meta i {
    margin-right: 5px;
    color: #1e5fbb;
}

.course-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.course-skills span {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f6ff;
    color: #1e5fbb;
    border-radius: 3px;
    font-size: 12px;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.course-price .price-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 3px;
}

.course-price .price-value {
    font-size: 22px;
    font-weight: 700;
    color: #ff6b6b;
}

/* 课程优势 */
.course-advantages {
    padding: 80px 0;
    background: #fff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advantage-card {
    text-align: center;
    padding: 40px 25px;
    background: #f8f9fc;
    border-radius: 8px;
    transition: all 0.3s;
}

.advantage-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1e5fbb 0%, #3d7dd8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon i {
    font-size: 28px;
    color: #fff;
}

.advantage-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 就业统计 */
.employment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e5fbb 0%, #3d7dd8 100%);
}

.employment-section .section-title,
.employment-section .section-desc {
    color: #fff;
}

.employment-section .section-title::after {
    background: #fff;
}

.employment-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ==================== 联系我们页面 ==================== */
.contact-info-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-info-card {
    text-align: center;
    padding: 40px 25px;
    background: #f8f9fc;
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-info-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1e5fbb 0%, #3d7dd8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 28px;
    color: #fff;
}

.contact-info-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.contact-main {
    font-size: 18px;
    font-weight: 600;
    color: #1e5fbb;
    margin-bottom: 5px;
}

.contact-sub {
    font-size: 13px;
    color: #999;
}

/* 在线留言 */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.contact-form-content {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group .required {
    color: #ff6b6b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1e5fbb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 95, 187, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qrcode-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.qrcode-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

.qrcode-large {
    width: 150px;
    height: 150px;
    background: #f0f6ff;
    margin: 0 auto 15px;
    border-radius: 4px;
}

.qrcode-card p {
    font-size: 13px;
    color: #666;
}

.quick-contact {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.quick-contact h4 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.quick-contact-item:last-child {
    border-bottom: none;
}

.quick-contact-item i {
    font-size: 20px;
    color: #1e5fbb;
}

.quick-contact-item span {
    font-size: 14px;
    color: #333;
}

/* 地图 */
.map-section {
    padding: 80px 0;
}

.map-container {
    margin-top: 30px;
}

.map-placeholder {
    background: #f8f9fc;
    border-radius: 8px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ddd;
}

.map-placeholder i {
    font-size: 60px;
    color: #1e5fbb;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.map-tip {
    font-size: 14px;
    color: #999;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8f9fc;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.faq-question i {
    color: #1e5fbb;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* ==================== 子页面响应式 ==================== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .fusion-detail {
        grid-template-columns: 1fr;
    }

    .software-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-categories {
        grid-template-columns: 1fr;
    }

    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-intro-content {
        grid-template-columns: 1fr;
    }

    .cert-categories {
        grid-template-columns: 1fr;
    }

    .course-list-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .employment-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-banner {
        min-height: 160px;
    }

    .page-banner-content h1 {
        font-size: 28px;
    }

    .honors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .software-services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .process-timeline::before {
        display: none;
    }

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

    .cert-steps {
        flex-direction: column;
        gap: 20px;
    }

    .cert-step-arrow {
        transform: rotate(90deg);
    }

    .course-detail-card {
        flex-direction: column;
    }

    .course-detail-image {
        width: 100%;
        min-height: 180px;
    }

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

    .employment-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

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

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==================== 新闻列表页 ==================== */
.news-list-section {
    padding: 60px 0;
    background: #f8f9fc;
}

.news-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.news-list-main {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.news-list-nav {
    display: flex;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.news-list-nav .nav-item {
    padding: 8px 20px;
    background: #f8f9fc;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.news-list-nav .nav-item:hover,
.news-list-nav .nav-item.active {
    background: #1e5fbb;
    color: #fff;
}

.news-list-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-list-item {
    display: flex;
    gap: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.news-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-list-item:hover {
    opacity: 0.9;
}

.news-list-item:hover h3 {
    color: #1e5fbb;
}

.news-list-image {
    width: 220px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.news-list-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-list-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s;
}

.news-list-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.news-list-meta span {
    font-size: 13px;
    color: #999;
}

.news-list-meta i {
    margin-right: 5px;
    color: #1e5fbb;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    background: #f8f9fc;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    transition: all 0.3s;
}

.page-item:hover,
.page-item.active {
    background: #1e5fbb;
    color: #fff;
}

/* 新闻侧边栏 */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-sidebar .sidebar-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.news-sidebar .sidebar-card-header {
    background: #ff6b35;
    color: #fff;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
}

.news-sidebar .sidebar-card-content {
    padding: 20px;
}

.news-sidebar .sidebar-card-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.news-sidebar .sidebar-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.news-sidebar .sidebar-tags span {
    display: inline-block;
    padding: 4px 10px;
    background: #fff5f0;
    color: #ff6b35;
    border-radius: 3px;
    font-size: 12px;
}

/* ==================== 新闻详情页 ==================== */
.news-detail-section {
    padding: 40px 0 80px;
    background: #f8f9fc;
}

.news-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.news-detail-main {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.article-content {
    max-width: 100%;
}

.article-title {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.article-meta span {
    font-size: 14px;
    color: #999;
}

.article-meta i {
    margin-right: 5px;
    color: #1e5fbb;
}

.article-featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    display: block;
}

.article-body {
    font-size: 15px;
    color: #444;
    line-height: 1.9;
}

.article-body h2 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 35px 0 20px;
    padding-left: 15px;
    border-left: 4px solid #1e5fbb;
}

.article-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 25px 0 15px;
}

.article-body p {
    margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
    margin: 15px 0 25px 20px;
}

.article-body li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.article-body strong {
    color: #222;
}

.article-tags {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.article-tags .tag-label {
    font-size: 14px;
    color: #666;
    margin-right: 10px;
}

.article-tags a {
    display: inline-block;
    padding: 5px 15px;
    background: #f0f6ff;
    color: #1e5fbb;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.article-tags a:hover {
    background: #1e5fbb;
    color: #fff;
}

/* 上一篇/下一篇 */
.article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.article-nav a {
    display: block;
    padding: 20px;
    background: #f8f9fc;
    border-radius: 8px;
    transition: all 0.3s;
}

.article-nav a:hover {
    background: #f0f6ff;
}

.article-nav .nav-label {
    display: block;
    font-size: 13px;
    color: #1e5fbb;
    margin-bottom: 8px;
}

.article-nav .nav-title {
    display: block;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.next-article {
    text-align: right;
}

/* 新闻页响应式 */
@media (max-width: 1024px) {
    .news-list-wrapper,
    .news-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .news-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-list-item {
        flex-direction: column;
    }

    .news-list-image {
        width: 100%;
        height: 180px;
    }

    .news-list-nav {
        flex-wrap: wrap;
    }

    .article-title {
        font-size: 22px;
    }

    .article-nav {
        grid-template-columns: 1fr;
    }

    .next-article {
        text-align: left;
    }

    .news-sidebar {
        grid-template-columns: 1fr;
    }

    .news-detail-main {
        padding: 25px;
    }
}
