
        /* 招聘理念页面样式 */
        .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: #e74c3c;
        }
        
        .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: #e74c3c;
        }
        
        .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: #e74c3c;
            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;
        }
        
        /* 加入我们按钮 */
        .join-cta {
            text-align: center;
            margin-top: 50px;
        }
        
        .join-btn {
            display: inline-block;
            background: #e74c3c;
            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: #c0392b;
            transform: translateY(-3px);
        }
        
        @media (max-width: 768px) {
            .core-philosophy {
                padding: 30px 20px;
            }
            
            .philosophy-banner h3 {
                font-size: 1.8rem;
            }
        }