:root {
            --primary: #00BEBD;
            --gold: #FFB800;
            --dark-bg: #0B1120;
            --card-bg: #FFFFFF;
            --text-main: #1E293B;
            --text-sub: #64748B;
        }

        /* 基础重置 */
        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { background: #F1F5F9; font-family: -apple-system, "PingFang SC", sans-serif; padding-bottom: 120px; color: var(--text-main); line-height: 1.6; }

        /* --- 1. 头部展现 --- */
        .profile-hero {
            position: relative; background: var(--dark-bg);
            padding: 40px 20px 60px; overflow: hidden;
        }
        .profile-hero::before {
            content: ""; position: absolute; inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
            z-index: 1;
        }
        .hero-content { position: relative; z-index: 2; display: flex; align-items: center; gap: 20px; max-width: 600px; margin: 0 auto; }
        .avatar-box { position: relative; flex-shrink: 0; }
        .avatar-img { 
            width: 100px; height: 100px; border-radius: 20px; 
            border: 2px solid rgba(255,255,255,0.2); object-fit: cover; display: block;
            transform: rotate(-3deg); box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .avatar-box::before {
            content: ""; position: absolute; top: 5px; left: 5px; width: 100%; height: 100%; 
            border: 2px solid var(--primary); border-radius: 20px; z-index: -1; transform: rotate(3deg);
        }
        .leader-info { text-align: left; color: #fff; }
        .leader-info h1 { 
            font-size: 1.7rem; font-weight: 900; margin-bottom: 4px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.8);
        }
        .leader-quote { 
            font-size: 0.8rem; color: rgba(255,255,255,0.9); margin-bottom: 8px;
            background: rgba(0,0,0,0.2); padding: 2px 8px; border-radius: 4px; display: inline-block;
        }
        .leader-stats-mini { display: flex; gap: 8px; }
        .mini-badge { font-size: 0.65rem; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); padding: 1px 8px; border-radius: 4px; }

        /* --- 2. 容器与公司信息 --- */
        .container { width: 100%; max-width: 800px; margin: 0 auto; padding: 0 15px; }
        .company-box-new {
            background: #fff; border-radius: 20px; margin-top: -30px; position: relative; z-index: 10;
            box-shadow: 0 12px 30px rgba(0,0,0,0.1); padding: 15px; border: 1px solid rgba(255,255,255,0.5);
        }
        .comp-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; border-bottom: 1px solid #f1f5f9; padding-bottom: 12px; }
        .comp-logo { width: 50px; height: 50px; border-radius: 10px; }
        .comp-name-row h2 { font-size: 1.1rem; font-weight: 800; color: var(--text-main); }
        .comp-details { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
        .detail-cell { font-size: 0.75rem; color: var(--text-sub); }
        .detail-cell b { color: var(--text-main); display: block; font-size: 0.85rem; margin-top: 2px; }
        .comp-tags-row { display: flex; flex-wrap: wrap; gap: 6px; }
        .tag-pill { font-size: 0.65rem; background: #F0FDF4; color: #16A34A; padding: 2px 8px; border-radius: 4px; border: 1px solid #DCFCE7; font-weight: bold; }

        /* --- 3. 标题与区块 --- */
        .section-title { font-size: 1rem; font-weight: 800; margin: 30px 0 15px; display: flex; align-items: center; gap: 8px; color: var(--text-main); }
        .section-title::before { content: ""; width: 4px; height: 16px; background: var(--primary); border-radius: 2px; }

        .data-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .data-bubble { background: var(--card-bg); padding: 15px 10px; border-radius: 16px; text-align: center; }
        .bubble-num { display: block; color: var(--text-main); font-size: 1.2rem; font-weight: 800; }

        .advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
        .adv-card-mini { background: #fff; padding: 12px 5px; border-radius: 15px; text-align: center; }
        .css-check { width: 14px; height: 14px; border: 2.5px solid var(--primary); border-radius: 3px; position: relative; margin: 0 auto 5px; }
        .css-check::after { content: ""; position: absolute; width: 4px; height: 2px; border-left: 2px solid var(--primary); border-bottom: 2px solid var(--primary); transform: rotate(-45deg); top: 3px; left: 2px; }

        /* --- 4. 招聘详情：文本展示 --- */
        .job-text-area { background: #fff; border-radius: 20px; padding: 20px; line-height: 1.8; }
        .job-text-item { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px dashed #eee; }
        .job-text-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
        .job-label { font-weight: 800; color: var(--text-main); font-size: 1rem; display: block; }
        .job-meta { color: #FF4D4F; font-weight: bold; margin-left: 5px; }
        .job-desc { font-size: 0.85rem; color: var(--text-sub); display: block; margin-top: 4px; }
        .job-desc li {list-style:none;}





        /* --- 5. 【修改】公司环境展示板块 --- */
        .company-gallery { display: flex; overflow-x: auto; gap: 12px; padding-bottom: 10px; -webkit-overflow-scrolling: touch; }
        .company-gallery::-webkit-scrollbar { display: none; }
        .gallery-img { width: 150px; height: 100px; border-radius: 12px; object-fit: cover; flex-shrink: 0; background: #eee; border: 1px solid #eee; }

        /* --- 6. 评价滚动区域 --- */
        .comment-viewport { height: 320px; overflow: hidden; position: relative; background: rgba(255,255,255,0.4); border-radius: 20px; padding: 10px; }
        .comment-scroll-container { display: flex; flex-direction: column; gap: 10px; animation: scrollUp 35s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .comment-item { width: 100%; background: #fff; padding: 16px; border-radius: 16px; }
        .user-anon { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: #fff; font-weight: bold; flex-shrink: 0; }



/* 2. 尾部样式 - 宽度对齐 */
.site-footer {
    background: #1e293b; 
    color: #94a3b8; 
    padding: 40px 0 100px; /* 内部padding控制高度 */
    margin-top: 50px;
}
.footer-inner {
    text-align: center;
    font-size: 0.85rem;
}
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
.footer-links a { color: #cbd5e1; text-decoration: none; }

/* 响应式微调 */
@media (max-width: 768px) {
    .container { padding: 0 15px; }
}



        /* --- 7. 底部按钮 --- */
        .action-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(15px); padding: 12px 15px 25px; display: flex; gap: 10px; z-index: 1000; border-top: 1px solid #f1f5f9; }
        .btn { flex: 1; height: 50px; border-radius: 25px; font-weight: 800; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.95rem; border: none; }
        .btn-secondary { background: #F1F5F9; color: var(--text-main); }
        .btn-primary { background: var(--primary); color: #fff; }

        @media (min-width: 1024px) { .container { max-width: 600px; } .action-bar { max-width: 400px; left: 50%; transform: translateX(-50%); } }