
        /* 政策引领部分 */
        .policy-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 42px;
            color: #0a2e5c;
            margin-bottom: 15px;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #4dabf7, #0e74f6);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .policy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .policy-card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 5px solid #0e74f6;
            position: relative;
            overflow: hidden;
        }

        .policy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #4dabf7, #0e74f6);
        }

        .policy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .policy-card h3 {
            font-size: 22px;
            color: #0a2e5c;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .policy-card p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .policy-tag {
            display: inline-block;
            background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 15px;
        }

        /* 管理痛点与解决方案部分 */
        .pain-point-section {
            padding: 100px 0;
            background-color: #f8fafc;
        }

        .pain-points-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
        }

        .pain-point-column {
            flex: 1;
            min-width: 300px;
        }

        .pain-point-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            transition: all 0.3s ease;
            border-top: 5px solid #ff6b6b;
        }

        .pain-point-card:nth-child(2) {
            border-top-color: #ffa726;
        }
        
        .pain-point-card:nth-child(3) {
            border-top-color: #4dabf7;
        }
        
        .pain-point-card:nth-child(4) {
            border-top-color: #26c6da;
        }
        
        .pain-point-card:nth-child(5) {
            border-top-color: #ab47bc;
        }
        
        .pain-point-card:nth-child(6) {
            border-top-color: #42a5f5;
        }

        .pain-point-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .pain-point-icon {
            width: 60px;
            height: 60px;
            background: #f0f7ff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
            color: #0e74f6;
        }

        .pain-point-card h3 {
            font-size: 22px;
            color: #0a2e5c;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .pain-point-card p {
            color: #666;
            line-height: 1.7;
        }

        .solution-container {
            background: white;
            border-radius: 16px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .solution-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .solution-header h2 {
            font-size: 36px;
            color: #0a2e5c;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .solution-header p {
            font-size: 18px;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .solution-card {
            background: #f8fafc;
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .solution-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #0e74f6, #4dabf7);
        }

        .solution-card h3 {
            font-size: 22px;
            color: #0a2e5c;
            margin-bottom: 15px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .solution-card h3 i {
            color: #0e74f6;
        }

        .solution-item {
            margin-bottom: 15px;
            padding-left: 10px;
            position: relative;
        }

        .solution-item::before {
            content: '';
            position: absolute;
            left: 0;
            color: #0e74f6;
            font-weight: bold;
        }

        /* 特色卡片区域 */
        .feature-cards {
            padding: 100px 0;
            background-color: #fff;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .card-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(10, 46, 92, 0.1), rgba(10, 46, 92, 0.6));
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .card-overlay .card-tag {
            background: rgba(14, 116, 246, 0.85);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .card-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-content h3 {
            font-size: 22px;
            color: #0a2e5c;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .card-content p {
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .card-stats {
            display: flex;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .stat-value {
            font-size: 20px;
            font-weight: 700;
            color: #0e74f6;
        }

        .stat-label {
            font-size: 12px;
            color: #888;
            margin-top: 5px;
        }

        /* 核心解决方案部分 */
        .solution-features {
            padding: 100px 0;
            background-color: #f8fafc;
        }

        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .feature-block {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .feature-block:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .feature-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 80px;
            font-weight: 800;
            color: rgba(14, 116, 246, 0.1);
            line-height: 1;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #4dabf7 0%, #0e74f6 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 28px;
            color: white;
        }

        .feature-block h3 {
            font-size: 24px;
            color: #0a2e5c;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .feature-block p {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .feature-subtitle {
            font-size: 18px;
            font-weight: 600;
            color: #0e74f6;
            margin-bottom: 15px;
            border-left: 4px solid #0e74f6;
            padding-left: 10px;
        }

        .feature-list3 {
            list-style: none;
        }

        .feature-list3 li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            color: #555;
        }

        .feature-list3 li i {
            color: #4dabf7;
            margin-right: 10px;
            font-size: 14px;
            margin-top: 5px;
            flex-shrink: 0;
        }
        
        /* 或者使用更美观的svg图标 */
.feature-list3 li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
}


        /* 培训体系部分 */
        .training-system {
            padding: 100px 0;
            background-color: #fff;
        }

        .system-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .system-content {
            flex: 1;
            min-width: 300px;
        }

        .system-image {
            flex: 1;
            min-width: 300px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .system-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

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

        .system-content h3 {
            font-size: 36px;
            color: #0a2e5c;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .system-content p {
            color: #666;
            margin-bottom: 30px;
            line-height: 1.7;
            font-size: 18px;
        }

        .system-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }

        .system-feature {
            flex: 1;
            min-width: 200px;
            background: #f8fafc;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .system-feature:hover {
            background: #e8f4ff;
            transform: translateY(-5px);
        }

        .system-feature i {
            font-size: 32px;
            color: #0e74f6;
            margin-bottom: 15px;
        }

        .system-feature h4 {
            font-size: 18px;
            color: #0a2e5c;
            margin-bottom: 10px;
            font-weight: 700;
        }
