       /* 全局重置与基础样式 - 适配所有手机 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft JhengHei", "PingFang SC", "Heiti SC", sans-serif;
        }

        body {
            background-color: #ffffff;
            color: #333333;
            line-height: 1.6;
            overflow-x: hidden;
            padding-bottom: env(safe-area-inset-bottom);
            padding-top: env(safe-area-inset-top);
        }

        /* 容器样式 - 全机型适配 */
        .container {
            width: 100%;
            padding-left: 0.5rem;
            padding-right: 0.5rem;
            margin: 0 auto;
            max-width: 750px;
        }

        /* 头部区域 - 移动端视觉优化 */
        .hero-section {
            background-color: #f0f4f8;
            padding: 10vh 0;
            text-align: center;
            margin-bottom: 2rem;
            border-radius: 0 0 20px 20px;
        }

        .hero-section h1 {
            font-size: clamp(1.5rem, 6vw, 2rem);
            margin-bottom: 0.8rem;
        }
        
        .hero-section h2 {
            font-size: clamp(1rem, 4vw, 1.4rem);
            color: #708090; 
            margin-bottom: 1.5rem;
            padding: 0 0.5rem;
            word-wrap: break-word;
            line-height: 1.4;
        }

        /* 按钮样式 - 移动端点击优化 */
        .btn {
            display: inline-block;
            padding: clamp(0.6rem, 3vw, 0.8rem) clamp(1rem, 5vw, 1.5rem);
            border: none;
            border-radius: 8px;
            font-size: clamp(0.9rem, 3vw, 1rem);
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            transition: all 0.2s ease;
            min-height: 44px;
            min-width: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn:active {
            transform: scale(0.95);
            opacity: 0.9;
        }

        .btn-primary {
            background-color: #0d6efd;
            color: #ffffff;
        }

        .btn-outline-primary {
            background-color: transparent;
            color: #0d6efd;
            border: 1px solid #0d6efd;
        }

        .btn-success {
            background-color: #198754;
            color: #ffffff;
            margin-left: 0.5rem;
        }

        .btn-lg {
            padding: clamp(0.5rem, 2.5vw, 0.7rem) clamp(1rem, 4vw, 1.3rem);
            font-size: clamp(0.85rem, 3vw, 1rem);
            width: auto;
            margin: 0 !important;
        }

        .hero-btn-group {
            display: flex;
            flex-direction: row; 
            justify-content: center; 
            gap: 0.8rem; 
            padding: 0 0.5rem;
            flex-wrap: wrap; 
        }

        /* 职位卡片 - 全机型适配 */
        .job-section {
            margin-bottom: 2rem;
        }

        .section-title {
            font-size: clamp(1.3rem, 5vw, 1.8rem);
            text-align: center;
            margin-bottom: 1.5rem;
            padding: 0 0.5rem;
        }

        .job-card {
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: clamp(1rem, 4vw, 1.5rem);
            margin-bottom: clamp(1rem, 4vw, 1.5rem);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .job-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .job-header h4 {
            font-size: clamp(1.1rem, 4vw, 1.3rem);
            margin: 0;
            flex: 1;
        }

        .job-tag {
            display: inline-block;
            background-color: #d4edda;
            color: #155724;
            font-size: clamp(0.7rem, 2.5vw, 0.8rem);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            min-height: 24px;
            display: flex;
            align-items: center;
        }

        .job-tag.hot {
            background-color: #cce5ff;
            color: #004085;
        }

        .job-meta {
            color: #6c757d;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            margin-bottom: 1rem;
        }

        .job-card p {
            margin-bottom: 1rem;
            font-size: clamp(0.9rem, 3vw, 1rem);
            line-height: 1.7;
        }

        .job-card ul {
            margin-left: clamp(1rem, 4vw, 1.5rem);
            margin-bottom: 1rem;
            font-size: clamp(0.9rem, 3vw, 1rem);
        }

        .job-card li {
            margin-bottom: 0.5rem;
            word-wrap: break-word;
        }

        .job-card h5 {
            font-size: clamp(1rem, 3.5vw, 1.1rem);
            margin: 1rem 0 0.5rem 0;
        }

        .btn-group {
            margin-top: 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        /* 福利卡片 - 移动端优化 */
        .benefit-section {
            margin-bottom: 2rem;
        }

        .benefit-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(1rem, 4vw, 1.5rem);
        }

        .benefit-card {
            text-align: center;
            padding: clamp(1.5rem, 6vw, 2rem) 0.5rem;
            background-color: #f8f9fa;
            border-radius: 12px;
        }

        .benefit-icon {
            font-size: clamp(1.8rem, 7vw, 2.5rem);
            color: #0d6efd;
            margin-bottom: 1rem;
            display: flex;
            justify-content: center;
        }

        .benefit-card h4 {
            font-size: clamp(1.1rem, 4vw, 1.2rem);
            margin-bottom: 0.5rem;
        }

        .benefit-card p {
            font-size: clamp(0.9rem, 3vw, 1rem);
            padding: 0 0.5rem;
            line-height: 1.6;
        }

        /* SVG图标样式 - 适配小屏 */
        svg {
            vertical-align: middle;
            margin-right: 0.3rem;
            width: clamp(14px, 3vw, 16px);
            height: clamp(14px, 3vw, 16px);
        }

        .benefit-icon svg {
            width: clamp(28px, 8vw, 32px);
            height: clamp(28px, 8vw, 32px);
            margin: 0;
        }

        /* 小屏手机专属适配 (375px以下) */
        @media screen and (max-width: 375px) {
            .hero-section {
                padding: 8vh 0;
            }

            .job-card {
                padding: 0.8rem;
            }

            .btn-group {
                flex-direction: column;
            }

            .btn-success {
                margin-left: 0;
            }
        }

        /* 大屏手机专属适配 (768px以上) */
        @media screen and (min-width: 768px) {
            .benefit-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* 新增：应聘流程模块样式（必须补充！） */
        .application-process {
            padding: clamp(1.5rem, 4vw, 2rem) 0;
            background-color: #f9f9f9;
            margin: 2rem 0;
        }
        .process-header {
            text-align: center;
            margin-bottom: clamp(1.5rem, 5vw, 2rem);
        }
        .process-header h2 {
            font-size: clamp(1.3rem, 5vw, 1.8rem);
            color: #333;
            margin-bottom: 0.5rem;
        }
        .process-header p {
            font-size: clamp(0.9rem, 3vw, 1rem);
            color: #708090;
        }
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: clamp(1.5rem, 4vw, 2rem);
            padding: 0 0.5rem;
        }
        @media screen and (min-width: 600px) {
            .process-steps {
                flex-direction: row;
                justify-content: space-between;
            }
        }
        .step-item {
            flex: 1;
            text-align: center;
            padding: 0 0.5rem;
        }
        .step-number {
            width: clamp(30px, 8vw, 40px);
            height: clamp(30px, 8vw, 40px);
            background-color: #0d6efd;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin: 0 auto 0.8rem;
        }
        .step-title {
            font-size: clamp(1rem, 4vw, 1.2rem);
            font-weight: 500;
            margin-bottom: 0.8rem;
        }
        .step-desc {
            font-size: clamp(0.85rem, 3vw, 1rem);
            color: #666;
            line-height: 1.7;
        }
        .step-image {
            width: 100%;
            max-width: 200px;
            border-radius: 8px;
            margin: 0.8rem auto;
            object-fit: cover;
            height: auto; /* 保证图片比例正常 */
        }
        .process-btn {
        text-align: center; /* 关键：让按钮水平居中 */
        margin-top: clamp(1.5rem, 4vw, 2rem);
        /* 可选：添加左右内边距，避免按钮贴边 */
        padding: 0 0.5rem;
        }
        /* 确保按钮本身在容器内居中（兜底） */
        .process-btn .btn {
            margin: 0 auto; /* 按钮自身水平居中 */
            display: inline-flex; /* 保持按钮的inline特性，同时保留flex的居中能力 */
        }

        /* 新增：合规性声明样式 */
        .compliance-section {
            background-color: #fff;
            border-left: 3px solid #007bff; /* 左侧蓝色竖线，匹配参考图 */
            padding: clamp(1rem, 3vw, 1.5rem);
            margin: 2rem auto;
            max-width: 750px;
            width: 95%;
        }
        .compliance-section h3 {
            color: #dc3545; /* 红色标题 */
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            margin-bottom: 1rem;
        }
        .compliance-section p {
            font-size: clamp(0.9rem, 3vw, 1rem);
            margin-bottom: 1rem;
            line-height: 1.8;
        }
        .compliance-section ol {
            padding-left: 1.5rem;
            font-size: clamp(0.9rem, 3vw, 1rem);
            line-height: 1.8;
        }
        .compliance-section li {
            margin-bottom: 0.8rem;
        }
        .compliance-section li span {
            color: #007bff; /* 蓝色项目编号 */
            font-weight: 500;
        }

        /* 新增：页脚样式（匹配图片） */
        .footer-section {
            background-color: #1a2533;
            color: #ffffff;
            padding: clamp(1.5rem, 6vw, 2.5rem) 0;
            margin-top: 2rem;
        }

        .footer-container {
            width: 100%;
            padding-left: clamp(1rem, 4vw, 1.5rem);
            padding-right: clamp(1rem, 4vw, 1.5rem);
            margin: 0 auto;
            max-width: 750px;
        }

        .footer-title {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            margin-bottom: 0.8rem;
        }

        .footer-desc {
            font-size: clamp(0.9rem, 3vw, 1rem);
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .footer-nav-title {
            font-size: clamp(1rem, 3.5vw, 1.2rem);
            margin: 1.5rem 0 0.8rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .footer-nav-list {
            list-style: none;
        }

        .footer-nav-list li {
            margin-bottom: 0.8rem;
        }

        .footer-nav-list a {
            color: #ffffff;
            text-decoration: none;
            font-size: clamp(0.9rem, 3vw, 1rem);
            opacity: 0.9;
            transition: opacity 0.2s;
        }

        .footer-nav-list a:hover {
            opacity: 1;
        }

        .contact-info {
            margin: 1.5rem 0;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            font-size: clamp(0.9rem, 3vw, 1rem);
            opacity: 0.9;
        }

        .contact-item svg {
            margin-right: 0.8rem;
            width: clamp(16px, 3.5vw, 18px);
            height: clamp(16px, 3.5vw, 18px);
            flex-shrink: 0;
        }

        .social-links {
            margin: 1.5rem 0;
            display: flex;
            gap: 1rem;
        }

        /* 修复：社交图标居中样式 */
        .social-link {
            width: clamp(32px, 8vw, 40px);
            height: clamp(32px, 8vw, 40px);
            border-radius: 50%;
            background-color: rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center; 
            color: #ffffff;
            text-decoration: none;
            transition: background-color 0.2s;
        }

        /* 修复：社交图标内部尺寸，确保居中 */
        .social-link svg {
            width: 50%; 
            height: 50%;
            margin: 0; 
            vertical-align: baseline;
        }

        .social-link:hover {
            background-color: rgba(255,255,255,0.3);
        }

        .copyright {
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            opacity: 0.7;
            margin-top: 2rem;
            text-align: center;
        }

        /* 悬浮按钮样式（调整优先级） */
       .whatsapp-float {
            position: fixed;
            bottom: clamp(1rem, 4vw, 1.5rem);
            right: clamp(1rem, 4vw, 1.5rem);
            /* 固定65px×65px尺寸（核心设置） */
            width: 85px;
            height: 85px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            /* 阴影适配65px按钮，视觉更协调 */
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            z-index: 999;
            background-color: #25d366 !important;
            /* 新增：清除内边距，避免影响居中 */
            padding: 0;
            /* 新增：确保按钮是块级元素，尺寸生效 */
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none; /* 如果是a标签，清除下划线 */
        }

        /* Line按钮样式（强制覆盖背景色） */
        .line-float {
            background-color: #00c300 !important; /* Line品牌绿色 */
            /* 确保继承65px尺寸，优先级更高 */
            width: 85px !important;
            height:85px !important;
        }

        .line-float span {
            /* 固定文字大小，适配65px按钮（取消自适应，直接设20px） */
            font-size: 26px !important;
            font-weight: 600;
            color: #ffffff !important;
            letter-spacing: 0.5px;
            /* 确保文字在按钮正中心 */
            line-height: 1;
            /* 新增：禁止文字换行 */
            white-space: nowrap;
        }
        .hero-subtitle {
            font-size: 1.6rem;  /* 字体大小 */
            color: #333;        /* 字体颜色 */
            margin: 15px 0;     /* 上下间距，避免和上下元素挤在一起 */
            font-weight: 600;   /* 字体加粗 */
        }
     .hero-desc {
          font-size: 1rem;        /* 字体大小，略小于subtitle */
          color: #555;            /* 字体颜色，柔和不抢戏 */
          margin: 10px 0 20px;    /* 上下间距，优化排版 */
           line-height: 1.5;       /* 行高，提升可读性 */
           font-style: italic;     /* 斜体，突出引用感 */
         }
        .hero-image-wrapper {
            margin: 20px 0;  /* 上下间距，避免和文字/按钮挤在一起 */
            text-align: center; /* 图片居中显示 */
        }

        /* 图片样式 */
        .hero-image {
            max-width: 100%; 
            height: auto;    
            max-height: 350px;
            border-radius: 8px; 
            box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
        }
        .hero-advantage {
            font-size: 1rem;        
            color: #444;            
            margin: 15px 0 25px;   
            line-height: 1.6;       
            text-align: center;     
            max-width: 80%;       
            margin-left: auto;      
            margin-right: auto;
        }