 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #eef2f7;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 5px 5px;
            font-family: system-ui, 'Segoe UI', 'SolaimanLipi', 'Noto Sans Bengali', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
        }

      
        .main-app {
            max-width: 600px;
            width: 100%;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
        }

        /* 全局内边距统一清爽，内外间距保持10px呼吸感 */
        .section-pad {
            padding-left: 16px;
            padding-right: 16px;
        }

        /* 头部区域 */
        .brand-header {
            text-align: center;
            padding: 22px 16px 10px 16px;
            background: white;
        }
        .brand-header h1 {
            font-size: 48px;
            font-weight: 800;
            letter-spacing: 1px;
            color: #0a1c3a;
            line-height: 1.1;
        }
        .brand-header h2 {
            font-size: 22px;
            font-weight: 600;
            color: #0a1c3a;
            margin-top: 4px;
        }

        /* 金色横幅 */
        .banner-primary {
            background: linear-gradient(135deg, #0a1f3e 0%, #020c1f 100%);
            color: white;
            text-align: center;
            padding: 14px 12px;
            margin: 10px 16px 8px 16px;
            border-radius: 28px;
            font-weight: 700;
            font-size: 18px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }
        .banner-secondary {
            background: #e6b422;
            color: #0a1c3a;
            text-align: center;
            padding: 10px 16px;
            margin: 0 16px 20px 16px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 14px;
        }

        /* 图标网格 手机优先: 默认3列 (600px下3列好看) */
        .grid-icons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            padding: 0 16px 24px 16px;
        }
        .icon-card {
            background: #f9fafc;
            border-radius: 20px;
            text-align: center;
            padding: 12px 6px;
            border: 1px solid #eef2f8;
            transition: all 0.1s ease;
        }
        .icon-card i {
            font-size: 28px;
            color: #0a1c3a;
            margin-bottom: 8px;
            display: inline-block;
        }
        .icon-card span {
            font-size: 11px;
            font-weight: 500;
            color: #1e2f4b;
            line-height: 1.35;
            display: block;
        }

        /* 模块标题 */
        .section-title {
            background: #0a1c3a;
            color: white;
            padding: 10px 18px;
            font-size: 16px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            border-radius: 40px;
            margin: 0 16px 16px 16px;
        }
        .section-title i {
            color: #e6b422;
            font-size: 18px;
        }

        /* 工作内容双栏 */
        .job-layout {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin: 0 16px 16px 16px;
        }
        .job-description {
            flex: 2;
            min-width: 170px;
        }
        .job-description p {
            font-size: 14px;
            color: #1f2f47;
            margin-bottom: 8px;
            font-weight: 500;
        }
        .mini-badge {
            background: #0a1c3a;
            color: white;
            padding: 4px 14px;
            border-radius: 50px;
            display: inline-block;
            font-size: 12px;
            font-weight: 500;
            margin: 8px 0 8px 0;
        }
        .task-list {
            list-style: none;
            margin-top: 6px;
        }
        .task-list li {
            font-size: 13px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #1f2f47;
        }
        .task-list li i {
            color: #1f8a4c;
            font-size: 14px;
            width: 18px;
        }
        .job-image {
            flex: 1;
            min-width: 260px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .job-image img {
            width: 100%;
            
            border-radius: 5px;
            border: 1px solid #e9edf2;
            background: #fff8e7;
            box-shadow: 0 6px 12px -6px rgba(0,0,0,0.15);
        }
        .note-light {
            font-size: 11px;
            color: #5c6f87;
            margin: 0 16px 18px 16px;
            padding-left: 6px;
        }

        /* 需求&时间双栏 */
        .info-double {
            display: flex;
            gap: 14px;
            margin: 0 16px 20px 16px;
            flex-wrap: wrap;
        }
        .info-panel {
            flex: 1;
            background: #ffffff;
            border: 1px solid #0a1c3a;
            border-radius: 24px;
            padding: 14px 14px;
        }
        .info-badge {
            background: #0a1c3a;
            color: white;
            padding: 4px 14px;
            border-radius: 30px;
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .info-row {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            margin-bottom: 10px;
            color: #1f2f47;
        }
        .info-row i {
            width: 22px;
            font-size: 16px;
            color: #0a1c3a;
        }

        /* 收入区域 */
        .income-head {
            background: #0a1c3a;
            margin: 0 16px 10px 16px;
            border-radius: 40px;
            padding: 12px 12px;
            text-align: center;
            color: white;
            font-weight: 700;
            font-size: 16px;
        }
        .income-wrapper {
            display: flex;
            justify-content: space-around;
            background: #fffcf0;
            margin: 0 16px 16px 16px;
            border-radius: 32px;
            padding: 16px 10px;
            flex-wrap: wrap;
            gap: 16px;
            border: 1px solid #ffe0a3;
        }
        .income-item {
            text-align: center;
            min-width: 80px;
        }
        .income-item .label-tiny {
            font-size: 11px;
            font-weight: 500;
            color: #4a5b7a;
        }
        .income-item .amount-xl {
            font-size: 34px;
            font-weight: 800;
            color: #e6b422;
            line-height: 1;
            margin: 5px 0 2px;
        }
        .income-item .currency {
            font-size: 14px;
            font-weight: 700;
            color: #0a1c3a;
        }
        .payment-confirm {
            background: #e6b422;
            color: #0a1c3a;
            text-align: center;
            padding: 10px;
            font-weight: 800;
            font-size: 14px;
            border-radius: 50px;
            margin: 0 16px 20px 16px;
        }

        /* 新人福利 */
        .benefits-container {
            padding: 0 16px 20px 16px;
        }
        .benefits-header {
            text-align: center;
            font-size: 16px;
            font-weight: 800;
            color: #0a1c3a;
            border-top: 2px solid #0a1c3a;
            border-bottom: 2px solid #0a1c3a;
            padding: 8px 0;
            margin-bottom: 18px;
            width: 100%;
        }
        .benefits-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .benefit-block {
            flex: 1;
            background: #fafbff;
            border: 1px solid #0a1c3a;
            border-radius: 24px;
            padding: 12px 6px;
            text-align: center;
        }
        .benefit-block i {
            font-size: 28px;
            color: #0a1c3a;
            margin-bottom: 8px;
        }
        .benefit-block p {
            font-size: 10px;
            font-weight: 500;
            color: #1f2f47;
            line-height: 1.3;
        }

        /* 限时招聘 */
        .limited-badge {
            background: #0a1c3a;
            margin: 0 16px 20px 16px;
            border-radius: 36px;
            padding: 14px 14px;
            text-align: center;
            border: 2px solid #e6b422;
            color: white;
        }
        .limited-badge h4 {
            font-size: 16px;
            font-weight: 800;
        }
        .limited-badge p {
            font-size: 11px;
            margin-top: 6px;
            opacity: 0.92;
        }

        /* CTA 全站链接: 整个区域可点击，底部信任区链接也可点击改全站跟随超链 */
        .cta-global {
            background: #1f753b;
            margin: 10px 10px 10px 10px;
            border-radius: 10px;
            padding: 10px 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            cursor: pointer;
            transition: 0.2s;
            box-shadow: 0 6px 6px rgba(0,0,0,0.15);
        }
        .cta-global:active {
            transform: scale(0.98);
        }
        .cta-global i:first-child {
            font-size: 38px;
            color: white;
        }
        .cta-copy h3 {
            font-size: 20px;
           
            color: white;
        }
        .cta-copy p {
            font-size: 11px;
            color: #f9efcf;
        }
        .cta-global i:last-child {
            font-size: 28px;
            color: #ffe0a3;
        }

      
        .footer-links {
            background: #0a1c3a;
            padding: 14px 16px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            font-size: 10px;
        }
        .footer-link-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #eef2f7;
            text-decoration: none;
            font-weight: 500;
            cursor: pointer;
            transition: opacity 0.2s;
        }
        .footer-link-item i {
            color: #e6b422;
            font-size: 11px;
        }
        .footer-link-item:hover {
            opacity: 0.85;
        }

        /* 响应: 极小屏幕下优化列数 */
        @media (max-width: 480px) {
            .grid-icons {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .job-layout {
                flex-direction: column;
            }
            .job-image {
                justify-content: center;
                margin-top: 5px;
            }
            .info-double {
                flex-direction: column;
            }
            .benefits-row {
                flex-direction: column;
            }
            .income-wrapper {
                flex-direction: row;
                flex-wrap: wrap;
            }
            .section-pad {
                padding-left: 12px;
                padding-right: 12px;
            }
        }
        img {
            max-width: 100%;
            display: block;
        }
        a, .clickable {
            cursor: pointer;
        }