 /* 基础重置和变量 */
        :root {
            --neon-pink: #ff0080;
            --neon-blue: #00ffff;
            --neon-purple: #8000ff;
            --neon-green: #00ff80;
            --neon-yellow: #ffff00;
            --neon-orange: #ff8000;
            --dark-bg: #0a0a0f;
            --darker-bg: #050508;
            --card-bg: rgba(20, 20, 30, 0.95);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --text-primary: #ffffff;
            --text-secondary: #cccccc;
            --text-accent: #ff0080;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', 'Microsoft YaHei', sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }
        
        /* 动态背景效果 */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 0, 128, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(128, 0, 255, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
            z-index: -2;
            animation: backgroundShift 10s ease-in-out infinite alternate;
        }
        


        /* 主要内容区域 */
        .main-content {
            margin-top: 80px;
            padding: 0 20px;
        }
        
        /* Hero Banner */
        .hero-banner {
            max-width: 1200px;
            margin: 40px auto;
            background: var(--card-bg);
            border-radius: 30px;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 0, 128, 0.3);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }
        
        .hero-banner::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                from 0deg,
                transparent,
                rgba(255, 0, 128, 0.1),
                transparent,
                rgba(0, 255, 255, 0.1),
                transparent
            );
            animation: rotate 20s linear infinite;
            z-index: -1;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-purple));
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease-in-out infinite;
            margin-bottom: 20px;
            text-shadow: 0 0 50px rgba(255, 0, 128, 0.5);
        }
        
        .hero-subtitle {
            font-size: 1.8rem;
            color: var(--neon-yellow);
            margin-bottom: 15px;
            text-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
            animation: pulse 2s ease-in-out infinite;
        }
        
        .hero-description {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 
                0 10px 30px rgba(255, 0, 128, 0.4),
                0 0 50px rgba(255, 0, 128, 0.2);
            animation: buttonGlow 2s ease-in-out infinite alternate;
        }
        
        .cta-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 
                0 15px 40px rgba(255, 0, 128, 0.6),
                0 0 80px rgba(255, 0, 128, 0.4);
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        /* 章节标题 */
        .section-title {
            max-width: 1200px;
            margin: 60px auto 30px;
            font-size: 2rem;
            font-weight: 800;
            color: var(--neon-pink);
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
        }
        
        .section-title::before {
            content: "";
            width: 6px;
            height: 40px;
            background: linear-gradient(to bottom, var(--neon-pink), var(--neon-blue));
            border-radius: 3px;
            box-shadow: 0 0 15px var(--neon-pink);
            animation: pulse 2s ease-in-out infinite;
        }
        
        .section-title i {
            font-size: 1.5rem;
            animation: bounce 2s ease-in-out infinite;
        }
        
        /* 城市网格 */
        .city-grid {
            max-width: 1200px;
            margin: 0 auto 60px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 15px;
        }
        
        .city-item {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 0, 128, 0.3);
            border-radius: 20px;
            padding: 20px 15px;
            text-align: center;
            color: var(--neon-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .city-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .city-item:hover {
            transform: translateY(-8px) scale(1.05);
            color: var(--text-primary);
            border-color: var(--neon-pink);
            box-shadow: 
                0 15px 30px rgba(255, 0, 128, 0.3),
                0 0 50px rgba(255, 0, 128, 0.2);
            text-shadow: 0 0 10px var(--neon-pink);
        }
        
        .city-item:hover::before {
            opacity: 1;
        }
        
        /* 职位类型网格 */
        .job-types {
            max-width: 1000px;
            margin: 0 auto 60px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 20px;
        }
        
        .job-type {
            background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
            border-radius: 20px;
            padding: 25px 15px;
            text-align: center;
            color: white;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(255, 0, 128, 0.3);
        }
        
        .job-type::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .job-type:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 
                0 20px 40px rgba(255, 0, 128, 0.5),
                0 0 60px rgba(255, 0, 128, 0.3);
        }
        
        .job-type:hover::before {
            opacity: 1;
        }
        
        .job-type i {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
            position: relative;
            z-index: 1;
        }
        
        .job-type span {
            position: relative;
            z-index: 1;
        }
        
        /* 职位列表 */
        .job-list {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .job-card {
            background: var(--card-bg);
            border-radius: 25px;
            padding: 25px;
            border: 1px solid rgba(255, 0, 128, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .job-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .job-card:hover {
            transform: translateY(-10px);
            border-color: var(--neon-pink);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 50px rgba(255, 0, 128, 0.2);
        }

        .job-card:hover::before {
            transform: scaleX(1);
        }

        .job-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
            gap: 15px;
        }

        .job-badge-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            flex: 1;
        }

        .job-badge {
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
            color: white;
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(255, 0, 128, 0.3);
            white-space: nowrap;
        }

        .job-badge.urgent {
            background: linear-gradient(45deg, #ff4444, #ff6666);
            animation: pulse 2s ease-in-out infinite;
        }

        .job-badge.hot {
            background: linear-gradient(45deg, var(--neon-orange), var(--neon-yellow));
        }

        .job-salary {
            color: var(--neon-orange);
            font-weight: 800;
            font-size: 1.3rem;
            text-shadow: 0 0 10px var(--neon-orange);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .job-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--neon-blue);
            margin-bottom: 12px;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            line-height: 1.3;
        }

        .job-title:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 15px var(--neon-pink);
        }

        .job-company {
            color: var(--text-secondary);
            font-size: 1rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .job-company i {
            color: var(--neon-blue);
            font-size: 0.9rem;
        }

        .job-description {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 1rem;
        }

        .job-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }

        .job-apply-btn {
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-green));
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 255, 255, 0.3);
            flex-shrink: 0;
        }

        .job-apply-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 255, 255, 0.5);
            background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
        }

        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .job-tag {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            padding: 4px 10px;
            border-radius: 10px;
            font-size: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* 移动端优化 */
        @media (max-width: 768px) {
            .job-list {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 10px;
            }
            
            .job-card {
                padding: 20px;
                border-radius: 20px;
                margin-bottom: 5px;
            }
            
            .job-header {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                margin-bottom: 15px;
            }
            
            .job-badge-container {
                order: 1;
            }
            
            .job-salary {
                order: 2;
                font-size: 1.5rem;
                justify-content: center;
                background: rgba(255, 128, 0, 0.1);
                padding: 10px;
                border-radius: 15px;
                border: 1px solid rgba(255, 128, 0, 0.3);
            }
            
            .job-title {
                font-size: 1.3rem;
                margin-bottom: 10px;
                text-align: center;
            }
            
            .job-company {
                justify-content: center;
                font-size: 0.95rem;
                margin-bottom: 12px;
                padding: 8px;
                background: rgba(255, 255, 255, 0.05);
                border-radius: 10px;
            }
            
            .job-description {
                font-size: 0.95rem;
                line-height: 1.6;
                margin-bottom: 20px;
                text-align: justify;
            }
            
            .job-footer {
                flex-direction: column;
                gap: 12px;
            }
            
            .job-apply-btn {
                width: 100%;
                padding: 15px;
                font-size: 1.1rem;
                border-radius: 15px;
                font-weight: 700;
            }
            
            .job-tags {
                justify-content: center;
                margin-bottom: 15px;
            }
            
            .job-tag {
                font-size: 0.75rem;
                padding: 3px 8px;
            }
        }

        @media (max-width: 480px) {
            .job-card {
                padding: 18px;
                margin: 0 5px 15px;
            }
            
            .job-salary {
                font-size: 1.4rem;
                padding: 8px;
            }
            
            .job-title {
                font-size: 1.2rem;
            }
            
            .job-company {
                font-size: 0.9rem;
            }
            
            .job-description {
                font-size: 0.9rem;
            }
            
            .job-apply-btn {
                padding: 14px;
                font-size: 1rem;
            }
        }
        

        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-banner {
                padding: 40px 20px;
                margin: 20px auto;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.5rem;
                margin: 40px auto 20px;
            }
            
            .city-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 10px;
            }
            
            .job-types {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 15px;
            }
            
            .job-list {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .job-card {
                padding: 20px;
            }
            
            .job-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }
        
        @media (max-width: 480px) {
            .main-content {
                padding: 0 15px;
            }
            
            .nav-container {
                padding: 15px;
            }
            
            .logo-text {
                font-size: 1.2rem;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .cta-button {
                font-size: 1.1rem;
                padding: 15px 30px;
            }
            
            .city-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .job-types {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* 动画定义 */
        @keyframes backgroundShift {
            0% { filter: hue-rotate(0deg); }
            100% { filter: hue-rotate(30deg); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 1; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 0.5; }
        }
        
        @keyframes logoGlow {
            0% { box-shadow: 0 0 20px rgba(255, 0, 128, 0.5); }
            100% { box-shadow: 0 0 30px rgba(255, 0, 128, 0.8), 0 0 40px rgba(0, 255, 255, 0.3); }
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.05); }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
        
        @keyframes buttonGlow {
            0% { box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4), 0 0 50px rgba(255, 0, 128, 0.2); }
            100% { box-shadow: 0 10px 30px rgba(255, 0, 128, 0.6), 0 0 80px rgba(255, 0, 128, 0.4); }
        }
        
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }