﻿

        /* ----- 主容器 ----- */
   

        /* ========= 职位列表 - 通栏卡片布局 (左侧内容右侧参数) ========= */
        .job-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .job-card {
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
            transition: all 0.25s ease;
            border: 1px solid #edf2f7;
            overflow: hidden;
        }
        .job-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
            border-color: #dce5f0;
        }
        /* 通栏内部左右结构 */
        .job-inner {
            padding: 28px 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        /* 左侧信息区 */
        .job-info {
            flex: 3;
            min-width: 200px;
        }
        .job-title {
            font-size: 22px;
            font-weight: 700;
            color: #0b2b3b;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .job-tag {
            background: #fef2e6;
            color: #c73f1e;
            font-size: 12px;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 40px;
        }
        .job-dept {
            font-size: 14px;
            color: #5a7184;
            margin-bottom: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .job-desc {
            font-size: 14px;
            color: #4a627a;
            line-height: 1.5;
            margin-top: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        /* 右侧参数区 (地点/日期/按钮) */
        .job-meta {
            flex: 1;
            text-align: right;
            min-width: 200px;
        }
        .job-location,
        .job-date {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 6px;
            font-size: 14px;
            color: #5a7184;
            margin-bottom: 12px;
        }
        .btn-apply {
            background: transparent;
            border: 1.5px solid #c73f1e;
            color: #c73f1e;
            padding: 8px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 8px;
            display: inline-block;
            text-decoration: none;
            font-family: inherit;
            background: #fff;
        }
        .btn-apply:hover {
            background: #c73f1e;
            color: #fff;
        }

        /* 分页器 (纯静态样式) */
        .job-pagination {
            margin-top: 56px;
            text-align: center;
        }
        .pc-fenye {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            list-style: none;
        }
        .pc-fenye a,
        .pc-fenye .comp-tabli {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            height: 44px;
            padding: 0 8px;
            background: #fff;
            border-radius: 12px;
            font-size: 15px;
            color: #2c5a7a;
            text-decoration: none;
            transition: all 0.2s;
            border: 1px solid #e2e8f0;
            cursor: default;
        }
        .pc-fenye .activepage {
            background: #c73f1e;
            color: #fff;
            border-color: #c73f1e;
        }

        /* 公司文化卡片 (完全继承join-grow风格) */
        .join-grow {
            padding: 60px 0;
            background: #fff;
        }
        .std-tit40 {
            font-size: 40px;
            font-weight: 700;
            color: #0b2b3b;
            text-align: center;
            margin-bottom: 48px;
        }
        .join-grow-ul {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        .join-grow-ul-li {
            flex: 1;
            min-width: 240px;
            background: #fafcff;
            border-radius: 28px;
            overflow: hidden;
            transition: 0.2s;
            border: 1px solid #eef2f8;
        }
        .jgul-cont {
            position: relative;
        }
        .ys-imgbox-cover {
            overflow: hidden;
            border-radius: 20px;
        }
        .jgul-cont-pic img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        .jgul-cont-pos {
            padding: 24px;
        }
        .jgul-cont-tit {
            font-size: 22px;
            font-weight: 700;
            color: #c73f1e;
            margin-bottom: 12px;
        }
        .jgul-cont-text p {
            font-size: 14px;
            color: #4a627a;
            line-height: 1.6;
        }
