 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        
        /*body {*/
        /*    background-color: #f5f7fa;*/
        /*    color: #333;*/
        /*    line-height: 1.6;*/
        /*}*/
        
        /*.container {*/
        /*    max-width: 1200px;*/
        /*    margin: 0 auto;*/
        /*    padding: 20px;*/
        /*}*/
        
        header {
            position: relative;
            text-align: center;
            padding: 40px 0;
            background: linear-gradient(135deg, rgba(106, 17, 203, 0.8) 0%, rgba(37, 117, 252, 0.8) 100%), 
                        url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .intro {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 20px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .warning {
            background-color: rgba(255, 243, 205, 0.9);
            color: #333;
            border-left: 4px solid #ffc107;
            padding: 15px;
            margin: 20px auto;
            border-radius: 0 5px 5px 0;
            max-width: 800px;
        }
        
        /* 左右布局样式 */
        .jobs-layout {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .job-categories {
            width: 280px;
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: fit-content;
        }
        
        .job-categories h3 {
            color: #2575fc;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .job-btn {
            display: block;
            width: 100%;
            padding: 12px 15px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
            margin-bottom: 10px;
            text-align: left;
        }
        
        .job-btn:hover, .job-btn.active {
            background-color: #2575fc;
            color: white;
            border-color: #2575fc;
        }
        
        .job-content {
            flex: 1;
        }
        
        .job-detail {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: none;
        }
        
        .job-detail.active {
            display: block;
        }
        
        .job-detail h3 {
            color: #2575fc;
            margin-bottom: 20px;
            font-size: 1.6rem;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 10px;
        }
        
        .job-section {
            margin-bottom: 20px;
        }
        
        .job-section h4 {
            color: #555;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .job-section ul {
            padding-left: 20px;
        }
        
        .job-section li {
            margin-bottom: 8px;
        }
        
        .tools {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }
        
        .tool-tag {
            background-color: #e9f0ff;
            color: #2575fc;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.85rem;
        }
        
        /* 福利模块样式 */
        .benefits-section {
            margin: 40px 0;
        }
        
        .benefits-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2575fc;
            font-size: 1.8rem;
        }
        
        .benefits-container {
            display: flex;
            gap: 20px;
            justify-content: center;
        }
        
        .benefit-card {
            flex: 1;
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
            text-align: center;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            color: #2575fc;
            margin-bottom: 15px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .benefit-card h3 {
            color: #2575fc;
            margin-bottom: 15px;
            font-size: 1.3rem;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 10px;
        }
        
        .benefit-card p {
            margin-bottom: 10px;
            flex-grow: 1;
        }
        
        .benefit-card ul {
            padding-left: 20px;
            flex-grow: 1;
            text-align: left;
        }
        
        .benefit-card li {
            margin-bottom: 5px;
        }
        
        .contact-info {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin-top: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .contact-info h2 {
            color: #2575fc;
            margin-bottom: 20px;
        }
        
        .contact-details {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        
        .contact-item {
            flex: 1;
            min-width: 250px;
        }
        
        .contact-item h3 {
            color: #555;
            margin-bottom: 10px;
        }
        
        footer {
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            color: #777;
            font-size: 0.9rem;
        }
        
        .highlight {
            color: #ff6b6b;
            font-weight: bold;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }
        
        @media (max-width: 768px) {
            .jobs-layout {
                flex-direction: column;
            }
            
            .job-categories {
                width: 100%;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .benefits-container {
                flex-direction: column;
            }
        }