<style>* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }

        body {
            background-color: #f5f7fa;
            color: #333;
        }

        .page-title {
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            color: #222;
            margin-bottom: 40px;
            letter-spacing: 2px;
        }

        .job-container {
            max-width: 900px;
            margin: 0 auto 60px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            font-family: Microsoft YaHei;
        }

        .job-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 24px 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .job-card:hover {
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }

        .job-title {
            font-size: 22px;
            font-weight: 600;
            color: #1d2129;
            margin-bottom: 20px;
        }

        .job-info {
            display: flex;
            align-items: center;
            gap: 16px;
            color: #606770;
            font-size: 18px;
            margin-bottom: 24px;
        }

        .job-info-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .divider {
            width: 100%;
            height: 1px;
            background-color: #e5e6eb;
            margin-bottom: 24px;
        }

        .detail-btn {
            width: 80%;
            height: 50px;
            border: 2px solid #00b42a;
            border-radius: 10px;
            background-color: transparent;
            color: #00b42a;
            font-size: 18px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin: 0 auto;
        }

        .detail-btn:hover {
            background-color: #00b42a;
            color: #ffffff;
        }

        .detail-btn::after {
            content: '';
            position: absolute;
            right: 16px;
            width: 24px;
            height: 2px;
            background-color: #00b42a;
        }

        .detail-btn::before {
            content: '';
            position: absolute;
            right: 16px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #00b42a;
            transform: translateY(-50%);
        }

        .detail-btn:hover::after,
        .detail-btn:hover::before {
            background-color: #ffffff;
        }

        /* 福利待遇板块 */
        .welfare-section {
            max-width: 900px;
            margin: 0 auto 60px;
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            font-family: Microsoft YaHei;
        }

        /* 诚邀加入板块 */
        .invite-section {
            max-width: 900px;
            margin: 0 auto;
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            font-family: Microsoft YaHei;
        }

        .section-title {
            font-size: 24px;
            font-weight: 700;
            color: #222;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #00b42a;
            display: inline-block;
        }

        .welfare-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .welfare-item {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .welfare-item h4 {
            font-size: 20px;
            color: #00b42a;
            font-weight: 600;
        }

        .welfare-item p {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
        }

        .invite-content {
            font-size: 16px;
            line-height: 2;
            color: #666;
        }

        .invite-content p {
            margin-bottom: 15px;
        }

        .invite-content .contact-tel {
            color: #00b42a;
            font-weight: 600;
            font-size: 18px;
        }

        /* 弹窗样式 */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background-color: #ffffff;
            border-radius: 16px;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            padding: 40px;
            position: relative;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0);
            font-family: Microsoft YaHei;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 28px;
            color: #606770;
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
            z-index: 1;
        }

        .modal-close:hover {
            background-color: #f2f3f5;
            color: #1d2129;
        }

        .modal-title {
            font-size: 28px;
            font-weight: 600;
            color: #1d2129;
            margin-bottom: 24px;
        }

        .modal-info {
            display: flex;
            align-items: center;
            gap: 24px;
            color: #606770;
            font-size: 20px;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e5e6eb;
        }

        .modal-desc {
            color: #33363f;
            font-size: 17px;
            line-height: 1.9;
        }

        .modal-desc h4 {
            font-size: 20px;
            font-weight: 600;
            color: #00b42a;
            margin: 24px 0 12px;
        }

        .modal-desc p {
            margin-bottom: 8px;
            text-align: justify;
        }

        .modal-desc ul {
            margin-left: 20px;
            margin-bottom: 10px;
        }

        .modal-desc li {
            margin-bottom: 6px;
            line-height: 1.9;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .job-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .modal-content {
                max-width: 95%;
                padding: 30px;
            }
            .welfare-section, .invite-section {
                padding: 30px;
            }
        }

        @media (max-width: 640px) {
            .job-container {
                grid-template-columns: 1fr;
            }
            .job-title {
                font-size: 22px;
            }
            .job-info {
                font-size: 16px;
            }
            .detail-btn {
                font-size: 16px;
                height: 46px;
            }
            .page-title {
                font-size: 28px;
            }
            .section-title {
                font-size: 24px;
            }
            .welfare-list {
                grid-template-columns: 1fr;
            }
        }</style>