
        /* 招聘理念页面样式 */
        .philosophy-section {
            padding: 40px 0 60px;
        }
        
        .section-header {
            margin-bottom: 50px;
            text-align: center;
        }
        
        .section-header h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

            .section-header h2:after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 50%;
                transform: translateX(-50%);
                width: 60px;
                height: 3px;
                background-color: var(--primary-color);
            }
        
        .section-header p {
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 核心理念 */
        .core-philosophy {
            background: white;
            border-radius: 8px;
            padding: 50px 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 60px;
            text-align: center;
        }
        
        .philosophy-banner {
            max-width: 600px;
            margin: 0 auto 30px;
        }
        
        .philosophy-banner h3 {
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.4;
        }

.highlight {
    color: var(--primary-color);
}
        
        .philosophy-desc {
            color: #7f8c8d;
            line-height: 1.8;
            max-width: 1200px;
            margin: 0 auto;
            font-size: 1.05rem;
        }
        
        /* 理念要点 */
        .philosophy-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .philosophy-point {
            background: white;
            border-radius: 8px;
            padding: 35px 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .philosophy-point:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

.point-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f8f9fa;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
}
        
        .point-title {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .point-content {
            color: #7f8c8d;
            line-height: 1.7;
        }
        
        .point-content p {
            margin-bottom: 15px;
        }
        
        .point-content p:last-child {
            margin-bottom: 0;
        }

        /* 招聘职位 */
        .job-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-bottom: 50px;
        }

        .job-item {
            position: relative;
            background: white;
            border-radius: 8px;
            padding: 30px 34px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--primary-color);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .job-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.09);
        }

        .job-item h3 {
            color: #2c3e50;
            font-size: 1.35rem;
            line-height: 1.4;
            margin-bottom: 14px;
            padding-right: 110px;
            word-break: break-word;
        }

        .job-item h3:after {
            content: "Hot";
            position: absolute;
            top: 30px;
            right: 34px;
            min-width: 54px;
            height: 26px;
            padding: 0 12px;
            border-radius: 13px;
            background: rgba(231, 76, 60, 0.1);
            color: var(--primary-color);
            font-size: 0.78rem;
            line-height: 26px;
            text-align: center;
            font-weight: 600;
        }

        .job-item p {
            color: #7f8c8d;
            line-height: 1.7;
            margin-bottom: 10px;
            word-break: break-word;
        }

        .job-item > p:first-of-type {
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 16px;
            color: #5f6f7a;
            background: #f8f9fa;
            border-radius: 5px;
            padding: 9px 14px;
            margin-bottom: 16px;
        }

        .job-item > div {
            color: #5f6f7a;
            line-height: 1.8;
            margin-top: 16px;
            word-break: break-word;
        }

        .job-item > div:empty {
            display: none;
        }

        .job-item > div p,
        .job-item > div ul,
        .job-item > div ol {
            margin-bottom: 10px;
        }

        .job-item > div ul,
        .job-item > div ol {
            padding-left: 1.4em;
        }

        .job-item > div li {
            margin-bottom: 6px;
        }

        .job-item > div img,
        .job-item > div table {
            max-width: 100%;
        }
        
        /* 加入我们按钮 */
        .join-cta {
            text-align: center;
            margin-top: 50px;
        }

.join-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .join-btn:hover {
        background: var(--primary-color);
        transform: translateY(-3px);
    }
        
        @media (max-width: 768px) {
            .core-philosophy {
                padding: 30px 20px;
            }
            
            .philosophy-banner h3 {
                font-size: 1.8rem;
            }

            .job-item {
                padding: 24px 20px;
            }

            .job-item h3 {
                font-size: 1.2rem;
                padding-right: 0;
            }

            .job-item h3:after {
                position: static;
                display: inline-block;
                vertical-align: middle;
                margin-left: 10px;
            }

            .job-item > p:first-of-type {
                display: flex;
                width: 100%;
            }
        }
