/* ================================
   合并后的CSS样式 - 所有数值直接显�?
   ================================ */

/* ================================
   基础重置
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Source Han Sans CN', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #303133;
    background-color: #F7F7F7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

/* 滚动�?*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #F7F7F7;
}

::-webkit-scrollbar-thumb {
    background: #CCC;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #999;
}

::selection {
    background-color: #FEF0F0;
    color: #DB0D16;
}

/* ================================
   通用容器
   ================================ */
.container {
    width: 100%;
    margin: 0 auto;
}

.page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: #FFFFFF;
    min-height: 100vh;
    position: relative;
}

/* ================================
   按钮
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
    user-select: none;
    background-color: #DB0D16;
    color: #FFFFFF;
}

.btn:hover {
    opacity: 0.9;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: #DB0D16;
    color: #FFFFFF;
    border: 1px solid #DB0D16;
}

.btn-primary:hover {
    background: #C00C14;
    opacity: 1;
}

.btn-secondary {
    background: #FFFFFF;
    color: #303133;
    border: 1px solid #DCDFE6;
}

.btn-secondary:hover {
    border-color: #DB0D16;
    color: #DB0D16;
}

.btn-sm {
    height: 28px;
    padding: 0 12px;
    font-size: 13px;
}

.btn-md {
    height: 32px;
    padding: 0 16px;
}

.btn-lg {
    height: 41px;
    padding: 0 24px;
    font-size: 18px;
}

/* ================================
   导航
   ================================ */
.nav-menu {
    display: flex;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    user-select: none;
}

.nav-item:hover {
    background: #F5F3F3;
}

.nav-menu .active {
    background-color: #EEEEEE;
}

/* ================================
   导航下拉菜单 (PC端)
   ================================ */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown .nav-item-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 151px;
    height: 100px;
    color: #2E2E2E;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
    user-select: none;
}

.nav-item-dropdown .nav-item-trigger:hover {
    background: #F5F3F3;
}

.nav-item-dropdown .nav-item-trigger.active {
    background-color: #EEEEEE;
}

.nav-item-dropdown .dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
}

.nav-item-dropdown:hover .dropdown-arrow,
.nav-item-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-item-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 151px;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    font-size: 16px;
    color: #2E2E2E;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #F0F0F0;
}

.nav-item-dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.nav-item-dropdown .dropdown-item:hover {
    background: #FEF0F0;
    color: #DB0D16;
}

.nav-item-dropdown .dropdown-item.active {
    background: #FEF0F0;
    color: #DB0D16;
}

.nav-item-dropdown .dropdown-item-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    opacity: 0.6;
}

/* ================================
   移动端底部导航下拉菜单
   ================================ */
.bottom-nav .nav-item-dropdown {
    flex: 1;
    position: relative;
    border-right: 0.67px solid #CCC;
}

.bottom-nav .nav-item-dropdown:last-child {
    border-right: none;
}

.bottom-nav .nav-item-dropdown .nav-item-trigger {
    width: 100%;
    height: 51px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.bottom-nav .nav-item-dropdown .nav-item-trigger.active {
    background-color: #DB0D16;
    color: #FFFFFF;
}

.bottom-nav .nav-item-dropdown .dropdown-arrow {
    width: 10px;
    height: 10px;
}

.bottom-nav .nav-item-dropdown .dropdown-menu {
    position: fixed;
    bottom: 51px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 100%;
    max-width: 430px;
    background: #FFFFFF;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 12px 12px 0 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 101;
}

.bottom-nav .nav-item-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.bottom-nav .nav-item-dropdown .dropdown-item {
    padding: 16px 20px;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.bottom-nav .nav-item-dropdown .dropdown-item-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

/* 移动端下拉遮罩 */
.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 51px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.dropdown-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* 移动端星故事上拉菜单 - 独立定位 */
.story-dropdown-menu {
    position: fixed;
    bottom: 51px;
    right: 0;
    width: calc(100% / 3);
    max-width: 143px;
    background: #FFFFFF;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px 4px 0 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.story-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
}

/* 加入我们菜单居中显示（通过JS动态定位） */
#joinDropdownMenu {
    right: auto;
}

.story-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    font-size: 14px;
    color: #2E2E2E;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #F0F0F0;
    text-align: center;
}

.bottom-nav .story-menu-item {
    font-size: 14px;
}

.story-menu-item:last-child {
    border-bottom: none;
}

.story-menu-item:hover,
.story-menu-item:active {
    background: #FEF0F0;
    color: #DB0D16;
}

.story-menu-item.active {
    background: #FEF0F0;
    color: #DB0D16;
}

/* 底部导航 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    height: 51px;
    background: #FFFFFF;
    border-top: 0.67px solid #CCC;
    display: flex;
    z-index: 100;
}

.bottom-nav .nav-item {
    flex: 1;
    border-right: 0.67px solid #CCC;
}

.bottom-nav .nav-item.active {
    background-color: #DB0D16;
    color: #FFFFFF;
}

.bottom-nav .nav-item:last-child {
    border-right: none;
}

.bottom-nav .nav-item:not(.active) {
    color: #000000;
}

.bottom-nav .nav-item:hover {
    background: #F7F7F7;
}

/* ================================
   卡片
   ================================ */
.card {
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #E4E7ED;
}

.card-header {
    padding: 24px 32px;
    border-bottom: 1px solid #C0C4CC;
}

.card-body {
    padding: 24px 32px;
}

.card-footer {
    padding: 24px 32px;
    border-top: 1px solid #C0C4CC;
}

/* ================================
   模态框
   ================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    z-index: 10000;
    max-width: 90%;
    max-height: 90%;
    background: #FFFFFF;
    border-radius: 8px;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10001;
}

.modal-close-btn:hover {
    background: #FFFFFF;
    transform: rotate(90deg);
}

/* 视频模态框 */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.show {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    z-index: 10000;
    max-width: 90%;
    max-height: 90%;
    width: 1200px;
    animation: videoFadeIn 0.3s ease;
}

@keyframes videoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-modal-content video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10001;
}

.video-close-btn:hover {
    background: #FFFFFF;
    transform: rotate(90deg);
}

.video-trigger {
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.video-trigger:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

.video-trigger::after {
    content: '�?;
 position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(219, 13, 22, 0.8);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
}

.video-trigger:hover::after {
    opacity: 1;
}

/* ================================
   表单
   ================================ */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #303133;
}

.form-input {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #DCDFE6;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: #DB0D16;
}

.form-input::placeholder {
    color: #909399;
}

/* ================================
   分隔�?
   ================================ */
.divider {
    width: 100%;
    height: 1px;
    background: #DCDFE6;
    margin: 24px 0;
}

.divider-primary {
    background: #DB0D16;
}

.divider-thick {
    height: 8px;
    background: #F7F7F7;
}

/* ================================
   徽章标签
   ================================ */
.badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 10px;
}

.badge-primary {
    background: #FEF0F0;
    color: #DB0D16;
}

.badge-secondary {
    background: #F7F7F7;
    color: #606266;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    font-size: 14px;
    border-radius: 4px;
}

.tag-primary {
    background: #FEF0F0;
    color: #DB0D16;
}

.tag-closable .tag-close {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.tag-closable .tag-close:hover {
    opacity: 1;
}

/* ================================
   加载动画
   ================================ */
.loading {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #EEEEEE;
    border-top-color: #DB0D16;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================
   头部布局
   ================================ */
.header {
    width: 100%;
    height: 100px;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    max-width: 1400px;
    width: 100%;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.20);
    display: flex;
    align-items: center;
    background: #FFFFFF;
    height: 100%;
    padding: 0 70px;
}

.header .logo {
    width: auto;
    height: 70px;
    margin-right: 30px;
}

.header .nav-menu {
    margin-left: 66px;
    gap: 0;
}

.header .nav-item {
    width: 180px;
    height: 100px;
    color: #2E2E2E;
    padding: 0;
}

.desktop-about .header .nav-item {
    font-size: 20px;
}

/* ================================
   Hero区域
   ================================ */
.hero-section {
    width: 100%;

    position: relative;
    overflow: hidden;


}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 620px;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    position: absolute;
    top: 65%;
    left: 80px;
    transform: translateY(-50%);
    color: #FFFFFF;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;

}

.hero-subtitle {
    font-size: 44px;

    margin: 5px 0;
}

.hero-tagline {
    font-size: 28px;
    font-weight: 500;
}

.hero-qr-section {
    position: absolute;
    top: 133px;
    right: 80px;
    width: 441px;
    height: 267px;
    background: #D9D9D9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* ================================
   主内容布局
   ================================ */
.main-content {
    max-width: 1431px;
    margin: 0 auto;
    padding: 40px 70px;
    display: flex;
    gap: 28px;
    position: relative;
    background-image: url('../assets/img/star-deco.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 320px auto;
}

.content-column {
    flex: 1;
}

/* ================================
   侧边�?
   ================================ */
.sidebar {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #E4E7ED;
    padding: 25px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 500;
    color: #303133;
    margin-bottom: 16px;
}

.sidebar-title.large {
    font-size: 18px;
}

/* ================================
   网格布局
   ================================ */
.grid {
    display: grid;
    gap: 16px;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ================================
   弹性布局
   ================================ */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.gap-xs {
    gap: 4px;
}

.gap-sm {
    gap: 8px;
}

.gap-md {
    gap: 12px;
}

.gap-lg {
    gap: 16px;
}

.gap-xl {
    gap: 20px;
}

/* ================================
   间距工具�?
   ================================ */
.m-0 {
    margin: 0;
}

.mt-1 {
    margin-top: 4px;
}

.mt-2 {
    margin-top: 8px;
}

.mt-3 {
    margin-top: 12px;
}

.mt-4 {
    margin-top: 16px;
}

.mb-1 {
    margin-bottom: 4px;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 12px;
}

.mb-4 {
    margin-bottom: 16px;
}

.p-0 {
    padding: 0;
}

.pt-1 {
    padding-top: 4px;
}

.pt-2 {
    padding-top: 8px;
}

.pt-3 {
    padding-top: 12px;
}

.pt-4 {
    padding-top: 16px;
}

.pb-1 {
    padding-bottom: 4px;
}

.pb-2 {
    padding-bottom: 8px;
}

.pb-3 {
    padding-bottom: 12px;
}

.pb-4 {
    padding-bottom: 16px;
}

/* ================================
   工具�?
   ================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: #DB0D16 !important;
}

.text-secondary {
    color: #606266 !important;
}

.text-muted {
    color: #909399 !important;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.cursor-pointer {
    cursor: pointer;
}

.no-select {
    user-select: none;
}

/* ================================
   移动端职位列表页
   ================================ */
.mobile-jobs-list body {
    background: #F7F7F7;
    min-height: 100vh;
}

.mobile-jobs-list .container {
    max-width: 430px;
    background: #FFFFFF;
    position: relative;
    min-height: 100vh;
    padding-bottom: 51px;
}

.mobile-jobs-list .header-section {
    background: #FFFFFF;
    position: relative;
}

.mobile-jobs-list .banner {
    width: 100%;
    height: auto;
}

.mobile-jobs-list .banner-overlay {
    width: 100%;
    height: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: transparent;
}

.mobile-jobs-list .search-section {
    background: #FFFFFF;
    padding: 10px 12px;
}

.mobile-jobs-list .search-bar {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.mobile-jobs-list .search-input-wrapper {
    flex: 1;
    position: relative;
    height: 31px;
}

.mobile-jobs-list .search-input {
    width: 100%;
    height: 100%;
    border: 1px solid #999;
    background: #FFFFFF;
    padding: 8px 12px 8px 36px;
    font-size: 14px;
    outline: none;
}

.mobile-jobs-list .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
}

.mobile-jobs-list .search-button {
    background: #DB0D16;
    color: #FFFFFF;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    min-width: 71px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-jobs-list .filter-section {
    display: flex;
    gap: 0;
    padding: 15px 6px 0 6px;

}

.filter-section .share-icon {
    margin: -5px 0px 0 10px;
    width: 26px;
}

.mobile-jobs-list .filter-item {
    flex: 1;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 0.67px solid #AAA;
    cursor: pointer;
    position: relative;
}

.mobile-jobs-list .filter-item:last-child {
    border-right: none;
}

.mobile-jobs-list .filter-text {
    font-size: 14px;
    color: #999;
    margin-right: 4px;
}

.mobile-jobs-list .filter-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.mobile-jobs-list .filter-item.active .filter-icon {
    transform: rotate(180deg);
}

.mobile-jobs-list .filter-item.active .filter-text {
    color: #DB0D16;
}

.mobile-jobs-list .filter-dropdown {
    max-height: 0;
    overflow: hidden;
    background: #FFFFFF;
    transition: max-height 0.3s ease;
}

.mobile-jobs-list .filter-dropdown.show {
    max-height: 300px;
    border-bottom: 0.67px solid #DDD;
}

.mobile-jobs-list .dropdown-content {
    max-height: 300px;
    overflow-y: auto;
    padding: 8px 0;
}

.mobile-jobs-list .dropdown-content::-webkit-scrollbar {
    width: 4px;
}

.mobile-jobs-list .dropdown-content::-webkit-scrollbar-track {
    background: #F5F5F5;
}

.mobile-jobs-list .dropdown-content::-webkit-scrollbar-thumb {
    background: #CCC;
    border-radius: 2px;
}

.mobile-jobs-list .dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.mobile-jobs-list .dropdown-option {
    padding: 12px 28px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-jobs-list .dropdown-option:hover {
    background: #F7F7F7;
}

.mobile-jobs-list .dropdown-option.active {
    color: #DB0D16;
    background: #FEF0F0;
    position: relative;
}

.mobile-jobs-list .dropdown-option.active::before {
    content: '�?;
 position: absolute;
    left: 12px;
    color: #DB0D16;
    font-weight: bold;
}

.mobile-jobs-list .job-list {
    padding: 0 10px;
}

.mobile-jobs-list .jobs-share-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: 430px;
    height: 56px;
    background: #FFFFFF;
    border-top: 1px solid #E4E7ED;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    box-sizing: border-box;
    z-index: 9997;
}

.mobile-jobs-list.jobs-selecting .jobs-share-bar {
    display: flex;
}

.mobile-jobs-list.jobs-selecting .bottom-nav {
    display: none;
}

.mobile-jobs-list.jobs-selecting .job-list {
    padding-bottom: 72px;
}

.mobile-jobs-list.jobs-selecting .job-item {
    position: relative;
    padding-left: 56px;
}

.mobile-jobs-list .job-select-toggle {
    display: none;
    width: 22px;
    height: 22px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    background: #FFFFFF;
    position: absolute;
    left: 16px;
    top: 24px;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

.mobile-jobs-list.jobs-selecting .job-select-toggle {
    display: inline-flex;
}

.mobile-jobs-list .job-item.selected .job-select-toggle {
    border-color: #DB0D16;
    background: #DB0D16;
}

.mobile-jobs-list .job-item.selected .job-select-toggle::after {
    content: "";
    width: 9px;
    height: 5px;
    border-left: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: rotate(-45deg);
    margin-top: -1px;
}

.mobile-jobs-list .jobs-share-selectall {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.mobile-jobs-list .jobs-share-selectall-icon {
    width: 22px;
    height: 22px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    background: #FFFFFF;
}

.mobile-jobs-list .jobs-share-selectall.selected .jobs-share-selectall-icon {
    border-color: #DB0D16;
    background: #DB0D16;
}

.mobile-jobs-list .jobs-share-selectall.selected .jobs-share-selectall-icon::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 9px;
    height: 5px;
    border-left: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: rotate(-45deg);
}

.mobile-jobs-list .jobs-share-selectall-text {
    font-size: 16px;
    color: #000000;
}

.mobile-jobs-list .jobs-share-cancel {
    margin-left: auto;
    height: 36px;
    min-width: 76px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid #DB0D16;
    background: #FFFFFF;
    color: #DB0D16;
    font-size: 16px;
    cursor: pointer;
}

.mobile-jobs-list .jobs-share-confirm {
    height: 36px;
    min-width: 76px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid #DB0D16;
    background: #DB0D16;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
}

.mobile-jobs-list .job-item {
    border-bottom: 0.67px solid #AAA;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.mobile-jobs-list .job-item:hover {
    background: #FAFAFA;
}

.mobile-jobs-list .job-title {
    font-size: 18px;
    color: #000000;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
    min-height: 35px;
    display: flex;
    align-items: center;
}

.mobile-jobs-list .job-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.mobile-jobs-list .job-detail-item {
    font-size: 14px;
    color: #999;
    width: 50%;
    flex-shrink: 0;
}

.mobile-jobs-list .job-meta {
    display: flex;
    justify-content: space-between;
}

.mobile-jobs-list .job-meta-item {
    font-size: 14px;
    color: #999;
    width: 50%;
    flex-shrink: 0;
}

.mobile-jobs-list .separator {
    width: 100%;
    height: 8px;
    background: #F7F7F7;
}

@media (min-width: 430px) {
    .mobile-jobs-list .container {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
}

/* ================================
   移动端关于页
   ================================ */
.mobile-about body {
    background: #F7F7F7;
    min-height: 100vh;
}

.mobile-about .container {
    max-width: 430px;
    background: #F7F7F7;
    position: relative;
    min-height: 100vh;
    padding-bottom: 51px;
}

.mobile-about .hero-section {
    background: #FFFFFF;

    position: relative;
}

.mobile-about .hero-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.mobile-about .hero-banner img {
    width: 100%;
    height: auto;
}

.mobile-about .logo-container {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.mobile-about .logo-inner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: #FFFFFF;
}

.mobile-about .logo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-about .logo-text {
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mobile-about .logo-text img {
    width: 84px;
    height: 42px;
}

.mobile-about .hero-title {
    position: absolute;
    bottom: 35px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    color: #333;
}

.mobile-about .hero-subtitle {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 15px;
    color: #999;
}

.mobile-about .content-section {
    background: #FFFFFF;
    margin-bottom: 10px;
    padding: 22px;
}

.mobile-about .section-title {
    font-size: 14px;
    font-weight: 700;
    color: #DB0D16;
    margin-bottom: 19px;
}

.mobile-about .section-title::before {
    content: '| ';
}

.mobile-about .section-text {
    font-size: 15px;
    line-height: 1.8;
    color: #888;
    text-align: justify;
}

.mobile-about .section-text .highlight {
    color: #DB0D16;
}

.mobile-about .image-section {
    background: #FFFFFF;

    margin-bottom: 10px;
    padding: 15px;
}

.mobile-about .image-section img {
    width: 100%;
    height: auto;
}

.mobile-about .website-link-section img {
    width: 24px;
    height: auto;
}

.mobile-about .about-tech-section {
    background: #FFFFFF;
    margin-top: 15px;
    padding: 15px;
}

.mobile-about .about-tech-text {
    font-size: 13px;
    line-height: 1.8;
    color: #888;
    margin-top: 19px;
    text-align: justify;
}

.mobile-about .about-tech-text .highlight {
    color: #DB0D16;
}

.mobile-about .carousel-section {
    background: #FFFFFF;
    margin-top: 15px;
    padding: 15px;
}

.mobile-about .carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.mobile-about .carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mobile-about .carousel-track::-webkit-scrollbar {
    display: none;
}

.mobile-about .carousel-item {
    min-width: 238px;
    height: 134px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.mobile-about .carousel-hint {
    margin-top: 8px;
    font-size: 13px;
    color: #606266;
}

.mobile-about .carousel-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.mobile-about .dot {
    width: 33px;
    height: 5px;
    background: rgba(242, 242, 242, 0.5);
    border-radius: 2.5px;
    transition: background 0.3s;
    cursor: pointer;
}

.mobile-about .dot.active {
    background: #DB0D16;
}

@media (min-width: 430px) {
    .mobile-about .container {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
}

/* ================================
   移动端职位详情页
   ================================ */
.mobile-job-detail body {
    background: #FFFFFF;
    min-height: 100vh;
}

.mobile-job-detail .container {
    max-width: 430px;
    margin: 0 auto;
    background: #FFFFFF;
    position: relative;
    min-height: 100vh;
    padding-bottom: 68px;
}

.mobile-job-detail .header {
    height: 63px;
    border-bottom: 0.67px solid #AAA;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
}

.mobile-job-detail .back-icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.mobile-job-detail .logo {
    width: 105px;
    height: 51px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.mobile-job-detail .share-icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.mobile-job-detail .job-header {
    padding: 23px 15px 0;
}

.mobile-job-detail .job-title {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 11px;
}

.mobile-job-detail .job-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 21px;
}

.mobile-job-detail .job-info {
    padding: 0 16px 24px;
}

.mobile-job-detail .info-row {
    display: flex;
    margin-bottom: 17px;
}

.mobile-job-detail .info-row:last-child {
    margin-bottom: 0;
}

.mobile-job-detail .info-label {
    width: 80px;
    font-size: 14px;
    color: #999;
}

.mobile-job-detail .info-value {
    flex: 1;
    font-size: 14px;
    color: #999;
}

.mobile-job-detail .tabs-section {
    background: #FFFFFF;
}

.mobile-job-detail .tabs {
    display: flex;
    border-top: 0.67px solid #DDD;
    border-bottom: 0.67px solid #DDD;
    height: 52px;
}

.mobile-job-detail .tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    color: #000000;
    transition: all 0.3s;
    position: relative;
}

.mobile-job-detail .tab.active {
    color: #DB0D16;
}

.mobile-job-detail .tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #DB0D16;
}

.mobile-job-detail .tab+.tab {
    border-left: 0.67px solid #DDD;
}

.mobile-job-detail .content-section {
    background: #FFFFFF;
    padding: 24px 15px;
    min-height: 400px;
}

.mobile-job-detail .content-title {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 11px;
}

.mobile-job-detail .content-text {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 24px;
}

.mobile-job-detail .content-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 9px;
}

.mobile-job-detail .content-list {
    font-size: 12.4px;
    color: #333;
    line-height: 1.8;
    white-space: pre-wrap;
}

.mobile-job-detail .bottom-action {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    height: 68px;
    background: #F2F6F7;
    border-top: 0.67px solid #B9BCBD;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 45px;
}

.mobile-job-detail .apply-button {
    width: 100%;
    height: 40px;
    background: #DB0D16;
    border: none;
    border-radius: 5px;
    color: #FFFFFF;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    line-height: 40px;

}

.mobile-job-detail #shareBtn {
    background-color: #2C2C2C;
    margin-left: 25PX;
}

.mobile-job-detail .apply-button:hover {}

.mobile-job-detail .apply-button:active {}

.mobile-job-detail .tab-content {
    display: none;
}

.mobile-job-detail .tab-content.active {
    display: block;
}

/* 保留后台编辑器的原有样式 */
.mobile-job-detail .tab-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
}

.mobile-job-detail .tab-content p:last-child {
    margin-bottom: 0;
}

.mobile-job-detail .tab-content ul,
.mobile-job-detail .tab-content ol {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
    padding-left: 20px;
}

.mobile-job-detail .tab-content ul li,
.mobile-job-detail .tab-content ol li {
    margin-bottom: 8px;
}

.mobile-job-detail .tab-content ul li:last-child,
.mobile-job-detail .tab-content ol li:last-child {
    margin-bottom: 0;
}

.mobile-job-detail .tab-content strong,
.mobile-job-detail .tab-content b {
    font-weight: 700;
    color: #000;
}

.mobile-job-detail .tab-content em,
.mobile-job-detail .tab-content i {
    font-style: italic;
}

.mobile-job-detail .tab-content h1,
.mobile-job-detail .tab-content h2,
.mobile-job-detail .tab-content h3,
.mobile-job-detail .tab-content h4,
.mobile-job-detail .tab-content h5,
.mobile-job-detail .tab-content h6 {
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.4;
}

.mobile-job-detail .tab-content h1 {
    font-size: 18px;
}

.mobile-job-detail .tab-content h2 {
    font-size: 16px;
}

.mobile-job-detail .tab-content h3 {
    font-size: 15px;
}

.mobile-job-detail .tab-content h4 {
    font-size: 14px;
}

.mobile-job-detail .tab-content h5 {
    font-size: 14px;
}

.mobile-job-detail .tab-content h6 {
    font-size: 14px;
}

.mobile-job-detail .tab-content br {
    display: block;
    content: "";
    margin-bottom: 4px;
}

.mobile-job-detail .tab-content a {
    color: #DB0D16;
    text-decoration: underline;
}

.mobile-job-detail .tab-content blockquote {
    border-left: 3px solid #DB0D16;
    padding-left: 12px;
    margin: 12px 0;
    color: #666;
    font-style: italic;
}

.mobile-job-detail .tab-content code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 13px;
}

.mobile-job-detail .tab-content pre {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 4px;
    overflow-x: auto;
    margin-bottom: 12px;
}

.mobile-job-detail .tab-content pre code {
    background: none;
    padding: 0;
}

.mobile-job-detail .tab-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 12px;
}

.mobile-job-detail .tab-content table th,
.mobile-job-detail .tab-content table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.mobile-job-detail .tab-content table th {
    background: #f5f5f5;
    font-weight: 700;
}

.mobile-job-detail .tab-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 12px 0;
}

.mobile-job-detail .tab-content hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 16px 0;
}

@media (min-width: 430px) {
    .mobile-job-detail .container {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 430px) {

    .mobile-job-detail .container,
    .mobile-job-detail .bottom-action {
        max-width: 100%;
    }
}

/* ================================
   桌面端关于页
   ================================ */
.desktop-about body {
    background: #2C2C2C;
    min-height: 100vh;
}

.desktop-about .hero-section {
    margin-top: 100px;
}


.desktop-about .content-column {
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #E4E7ED;
    padding: 31px 38px;
}

.desktop-about .section {
    margin-bottom: 25px;
}

.desktop-about .section-title {

    font-weight: 700;
    color: #303133;
    margin-bottom: 10px;
    padding-bottom: 10px;

    border-bottom: 2px solid #DB0D16;
}

.desktop-about h2.section-title {
    font-size: 24px;
}

.desktop-about .section-content {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 10px;


}

.desktop-about .text-content {
    flex: 1;
}

.desktop-about .image-content {
    width: 340px;
    flex-shrink: 0;
}

.desktop-about .section-text {
    font-size: 18px;
    line-height: 1.8;
    color: #303133;
    margin-bottom: 10px;
    text-align: justify;
}

.desktop-about .section-text .highlight a {
    color: #DB0D16;
}

.desktop-about .section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.desktop-about .highlight-box {
    background: #FDF3F3;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.desktop-about .highlight-box img {
    width: 650px;
    height: auto
}

.desktop-about .divider {
    width: 100%;
    height: 1px;
    background: #DB0D16;
    margin: 40px 0;
}

.desktop-about .gallery-wrapper {
    position: relative;
    width: 100%;
    max-width: 850px;
    overflow: hidden;
    margin-top: 30px;
}

.desktop-about .gallery {
    display: flex;
    gap: 21px;
    transition: transform 0.5s ease;
    will-change: transform;
    width: fit-content;
}

.desktop-about .gallery-item {
    flex-shrink: 0;
    width: 260px;
    height: 200px;
}

.desktop-about .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.desktop-about .carousel-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 500px;
    margin: 22px auto 0;
    gap: 10px;
}

.desktop-about .indicator {
    width: 4%;
    height: 6px;
    background: rgba(192, 196, 204, 0.3);
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
}

.desktop-about .indicator.active {
    background: #DB0D16;
}

.desktop-about .sidebar {
    width: 300px;
    height: 333px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #E4E7ED;
    padding: 25px;
}

.desktop-about .qr-container {
    width: 250px;
    height: auto;
    background: rgba(219, 13, 22, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.desktop-about .qr-container img {
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .desktop-about .main-content {
        flex-direction: column;
    }

    .desktop-about .sidebar {
        width: 100%;
    }

    .desktop-about .section-content {
        flex-direction: column;
    }

    .desktop-about .image-content {
        width: 100%;
    }

    .desktop-about .hero-qr-section {
        display: none;
    }

    .desktop-about .hero-title,
    .desktop-about .hero-subtitle {
        font-size: 32px;
    }

    .desktop-about .hero-tagline {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .desktop-about .gallery-wrapper {
        overflow-x: auto;
    }

    .desktop-about .gallery {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .desktop-about .gallery-item {
        width: 260px;
        flex-shrink: 0;
    }
}

/* ================================
   桌面端职位详情页
   ================================ */
.desktop-job-detail body {
    font-family: 'Noto Sans SC', 'Source Han Sans CN', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #2C2C2C;
    min-height: 100vh;
}



.desktop-job-detail .logo {
    width: auto;
    height: 70px;
    margin-right: 30px;
}

.desktop-job-detail .nav-item {
    padding: 38px 21px;
    font-size: 20px;
    color: #2E2E2E;
    height: 100px;
}

.desktop-job-detail .nav-item:first-child {
    background: #FFFFFF;
}

.desktop-job-detail .nav-item:nth-child(2) {
    background: #F5F3F3;
}

.desktop-job-detail .breadcrumb {
    position: absolute;
    left: 106px;
    top: 115px;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    z-index: 10;
}

.desktop-job-detail .hero-section {
    margin-top: 100px;
}

.desktop-job-detail .hero-content {
    left: 105px;
}

.desktop-job-detail .hero-title {
    margin-bottom: 0;
}



.desktop-job-detail .job-detail-card {
    flex: 1;
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #E4E7ED;
    padding: 0;
    position: relative;
}

.desktop-job-detail .job-header {
    padding: 27px 33px 24px;
    border-bottom: 1px solid #C0C4CC;
}

.desktop-job-detail .job-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 21px;
    padding-bottom: 15px;
    margin-left: auto;
    border-bottom: 1px solid #e9e9e9;
}

.desktop-job-detail .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    color: #DB0D16;
    cursor: pointer;
    font-weight: 500;
}

.desktop-job-detail .nav-link img {
    width: 14px;
    height: 14px;
}

.desktop-job-detail .page-indicator {
    font-size: 15px;
    color: #606266;
}

.desktop-job-detail .job-title {
    font-size: 18px;
    font-weight: 700;
    color: #303133;
    margin-bottom: 24px;
    line-height: 1.3;
}

.desktop-job-detail .job-meta {
    display: flex;
    gap: 21px;
    align-items: center;
}

.desktop-job-detail .meta-item {
    font-size: 16px;
    color: #303133;
    padding-right: 21px;
    border-right: 0.67px solid #C0C4CC;
}

.desktop-job-detail .meta-item:last-child {
    border-right: none;
}

.desktop-job-detail .job-location {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
}

.desktop-job-detail .job-location span {
    font-size: 16px;
    margin-right: 20px;
    color: #909399;
}

.desktop-job-detail .job-location img {
    width: 20px;
    height: 20px;
}

.desktop-job-detail .action-buttons {
    position: absolute;
    right: 33px;
    top: 118px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0px;
}

.desktop-job-detail .btn {
    height: 32px;
    font-size: 14px;
}

.desktop-job-detail .job-content {
    padding: 19px 27px 40px;
}

.desktop-job-detail .content-section {
    margin-bottom: 40px;
}

.desktop-job-detail .section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.desktop-job-detail .section-header img {
    width: 14px;
    height: 14px;
}

.desktop-job-detail .section-title {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
}

.desktop-job-detail .section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
}

.desktop-job-detail .section-text strong {
    font-weight: 700;
    display: block;
    margin-top: 16px;
    margin-bottom: 8px;
}

.desktop-job-detail .sidebar {
    width: 300px;
}

.desktop-job-detail .sidebar-card {
    padding: 25px;
}

.desktop-job-detail .share-preview {
    width: 163px;
    height: 302px;
    margin: 0 auto;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
}

.desktop-job-detail .share-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desktop-job-detail .qr-container {
    width: 250px;
    height: 225px;
    background: rgba(219, 13, 22, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.desktop-job-detail .qr-container img {
    width: 100%;
    height: auto;
}

.desktop-job-detail .decorative-shape {
    position: absolute;
    top: 562px;
    right: 98px;
    width: 400px;
    height: 312px;
    transform: rotate(180deg);
    pointer-events: none;
}

@media (max-width: 1024px) {
    .desktop-job-detail .sidebar {
        width: 100%;
        flex-direction: row;
    }

    .desktop-job-detail .sidebar-card {
        flex: 1;
    }

    .desktop-job-detail .decorative-shape {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-job-detail .sidebar {
        flex-direction: column;
    }

    .desktop-job-detail .action-buttons {
        position: static;
        flex-direction: row;
        margin-top: 16px;
    }
}

/* ================================
   桌面端职位列表页
   ================================ */
.desktop-jobs-list,
.desktop-job-detail,
.desktop-about {
    background: #2C2C2C;
}

.desktop-jobs-list body {
    font-family: 'Source Han Sans CN', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #2C2C2C;
    min-height: 100vh;
}

.desktop-jobs-list .header {

    margin: 0 auto;
}

.desktop-jobs-list .logo {
    width: auto;
    height: 70px;
    margin-right: 30px;
}

.desktop-jobs-list .nav-item {
    padding: 38px 21px;
    font-size: 20px;
    color: #2E2E2E;
    height: 100px;
}

.desktop-jobs-list .nav-item:nth-child(2) {
    background: #EEEEEE;
}

.desktop-jobs-list .hero-section {
    margin-top: 100px;
}



.desktop-jobs-list .job-list-card {
    flex: 1;
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #E4E7ED;
    overflow: hidden;
}

.desktop-jobs-list .job-list-header {
    height: 63px;
    background: #DB0D16;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 33px;
}

.desktop-jobs-list .header-title {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
}

.desktop-jobs-list .header-count {
    font-size: 16px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
}

.desktop-jobs-list .share-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.desktop-jobs-list .job-items {
    padding: 0px 33px 33px 33px;
}

.desktop-jobs-list .job-item {
    border-bottom: 0.67px solid #DCDFE6;
    padding: 40px 22px;
    cursor: pointer;
    transition: background 0.2s;
}

.desktop-jobs-list .job-item:hover {
    background: #FAFAFA;
}

.desktop-jobs-list .job-item:last-child {
    border-bottom: none;
}

.desktop-jobs-list .job-name {
    font-size: 17.9px;
    font-weight: 500;
    color: #DB0D16;
    margin-bottom: 16px;
    line-height: 1.4;
}

.desktop-jobs-list .job-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.desktop-jobs-list .meta-tag {
    font-size: 16px;
    color: #606266;
    display: flex;
    align-items: center;
    gap: 16px;
}

.desktop-jobs-list .meta-tag img {
    width: 12px;
    height: 12px;
}

.desktop-jobs-list .pagination {
    padding: 30px 33px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.desktop-jobs-list .page-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.desktop-jobs-list .page-info {
    font-size: 13px;
    color: #606266;
    margin-right: 10px;
}

.desktop-jobs-list .page-size-select {
    width: 100px;
    height: 30px;
    border: 1px solid #C0C4CC;
    border-radius: 3px;
    padding: 0 10px;
    font-size: 13px;
    color: #606266;
    background: #FFFFFF;
    cursor: pointer;
    margin-right: 10px;
}

.desktop-jobs-list .page-btn {
    width: 30px;
    height: 28px;
    background: #F4F4F5;
    border: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: #606266;
    transition: all 0.3s;
}

.desktop-jobs-list .page-btn:hover:not(:disabled) {
    background: #E4E7ED;
}

.desktop-jobs-list .page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.desktop-jobs-list .page-btn.active {
    background: #DB0D16;
    color: #FFFFFF;
}

.desktop-jobs-list .page-jump {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
    font-size: 13px;
    color: #606266;
}

.desktop-jobs-list .page-input {
    width: 50px;
    height: 28px;
    border: 1px solid #C0C4CC;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: #606266;
}

.desktop-jobs-list .sidebar {
    width: 350px;
}

.desktop-jobs-list .sidebar-card {
    padding: 25px;
}

.desktop-jobs-list .filter-section {
    border-bottom: 0.67px solid #DEDFE6;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.desktop-jobs-list .filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.desktop-jobs-list .search-wrapper {
    position: relative;
}

.desktop-jobs-list .search-box {
    width: 100%;
    height: 40px;
    border: 1px solid #DCDFE6;
    border-radius: 4px;
    padding: 0 40px;
    font-size: 14px;
    color: #303133;
    outline: none;
    transition: border 0.3s;
}

.desktop-jobs-list .search-box:focus {
    border-color: #DB0D16;
}

.desktop-jobs-list .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: #909399;
}

.desktop-jobs-list .clear-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    cursor: pointer;
    display: none;
    color: #C0C4CC;
    font-size: 14px;
    line-height: 1;
}

.desktop-jobs-list .clear-search:hover {
    color: #909399;
}

.desktop-jobs-list .search-box:not(:placeholder-shown)~.clear-search {
    display: block;
}

.desktop-jobs-list .filter-title {
    font-size: 15px;
    font-weight: 700;
    color: #303133;

    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.desktop-jobs-list .filter-title:hover {
    color: #DB0D16;
}

.desktop-jobs-list .filter-title .arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
}

.desktop-jobs-list .filter-section.expanded .arrow {
    transform: rotate(180deg);
}

.desktop-jobs-list .filter-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0;
}

.desktop-jobs-list .filter-section.expanded .filter-options {
    max-height: 500px;
    margin-top: 16px;
}

.desktop-jobs-list .filter-option {
    padding: 8px 0;
    font-size: 14px;
    color: #606266;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.desktop-jobs-list .filter-option:hover {
    color: #DB0D16;
}

.desktop-jobs-list .filter-option.active {
    color: #DB0D16;
    font-weight: 500;
}

.desktop-jobs-list .filter-option.active::before {
    content: '�?;
 color: #DB0D16;
    font-weight: bold;
}

.desktop-jobs-list .filter-badge {
    display: inline-block;
    background: #FEF0F0;
    color: #F56C6C;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
}

.desktop-jobs-list .active-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 33px;
    background: #FFFFFF;
    border-bottom: 1px solid #E4E7ED;
    flex-wrap: wrap;

}

.desktop-jobs-list .active-filters.empty {
    display: none;
}

.desktop-jobs-list .filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: #FEF0F0;
    color: #DB0D16;
    border-radius: 4px;
    font-size: 14px;
}

.desktop-jobs-list .filter-tag .remove {
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    color: #DB0D16;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.desktop-jobs-list .filter-tag .remove:hover {
    opacity: 1;
}

.desktop-jobs-list .clear-all-filters {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: transparent;
    border: 1px solid #DCDFE6;
    color: #606266;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.desktop-jobs-list .clear-all-filters:hover {
    color: #DB0D16;
    border-color: #DB0D16;
}

.desktop-jobs-list .qr-container {
    padding: 20px 30px;
    background: rgba(219, 13, 22, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.desktop-jobs-list .qr-container img {
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .desktop-jobs-list .sidebar {
        width: 100%;
    }

    .desktop-jobs-list .hero-qr-section {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-jobs-list .pagination {
        flex-wrap: wrap;
    }
}

/* ================================
   响应式布局
   ================================ */
@media (max-width: 1430px) {

    .header-content,
    .main-content {
        padding: 40px
    }

    .hero-content {
        left: 40px;
    }

    .hero-qr-section {
        right: 40px;
    }
}

@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .hero-qr-section {
        display: none;
    }

    .grid-cols-4,
    .grid-cols-3,
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .header-content,
    .main-content {
        padding: 0 20px;
    }

    .header .nav-menu {
        display: none;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .grid-cols-4,
    .grid-cols-3,
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .video-modal-content {
        width: 95%;
        max-width: 95%;
    }

    .video-close-btn {
        top: -45px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .video-trigger::after {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

@media (max-width: 430px) {

    .container,
    .bottom-nav {
        max-width: 100%;
    }
}

/* ================================
   推荐流程弹窗（可复用模块�?
   ================================ */
.recommend-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.recommend-modal.show {
    display: flex;
}

.recommend-modal-content {
    background: #FFFFFF;
    border-radius: 8px;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow: auto;
    animation: modalFadeIn 0.3s ease;
    position: relative;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.recommend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #E4E7ED;
}

.recommend-title {
    font-size: 18px;
    font-weight: 500;
    color: #303133;
    margin: 0;
}

.recommend-close-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: #909399;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 4px;
}

.recommend-close-btn:hover {
    background: #F5F7FA;
    color: #303133;
}

.recommend-body {
    padding: 30px 24px;
}

.recommend-question {
    font-size: 16px;
    color: #303133;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
}

.recommend-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.recommend-btn {
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.recommend-btn-primary {
    background: #DB0D16;
    color: #FFFFFF;
}

.recommend-btn-primary:hover {
    background: #C00C14;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(219, 13, 22, 0.3);
}

.recommend-btn-submit {
    width: 100%;
    background: #DB0D16;
    color: #FFFFFF;
    margin-top: 10px;
}

.recommend-btn-submit:hover {
    background: #C00C14;
}

.recommend-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #606266;
    font-weight: 500;
    min-width: 70px;
    flex-shrink: 0;
    text-align: right;
}

.form-input {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #DCDFE6;
    border-radius: 4px;
    font-size: 15px;
    color: #303133;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #DB0D16;
    box-shadow: 0 0 0 3px rgba(219, 13, 22, 0.1);
}

.form-input::placeholder {
    color: #C0C4CC;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .recommend-modal-content {
        max-width: 95%;
    }

    .recommend-header {
        padding: 16px 20px;
    }

    .recommend-body {
        padding: 24px 20px;
    }

    .recommend-title {
        font-size: 16px;
    }

    .recommend-question {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .recommend-actions {
        flex-direction: column;
        gap: 12px;
    }

    .recommend-btn {
        width: 100%;
        padding: 12px 24px;
    }
}

/* ================================
   海报弹出�?
   ================================ */
.poster-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.poster-modal.show {
    display: flex;
}

.poster-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: posterFadeIn 0.3s ease;
}

@keyframes posterFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.poster-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10001;
}

.poster-close-btn:hover {
    background: #FFFFFF;
    transform: rotate(90deg);
}

/* 桌面端海报样�?*/
.desktop-poster-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.desktop-poster-wrapper .poster-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.poster-download-btn {
    width: 200px;
    height: 45px;
    background: #DB0D16;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.poster-download-btn:hover {
    background: #C00C14;
}

/* 移动端海报样�?*/
.mobile-poster-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mobile-poster-hint {
    color: #FFFFFF;
    font-size: 16px;
    text-align: center;
    padding: 0 20px;
    line-height: 1.5;
}

.mobile-poster-wrapper .poster-image {
    max-width: 90%;
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .poster-close-btn {
        top: -45px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .desktop-poster-wrapper .poster-image,
    .mobile-poster-wrapper .poster-image {
        max-width: 95%;
    }
}

/* ================================
   动态海报生成样�?- 复用项目原有haibao方案
   ================================ */

/* 新版海报容器 - 使用img标签作为背景 */
.haibao-new {
    width: 375px;
    height: 667px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* 背景图片 - 使用img标签以兼容iOS Safari的html2canvas */
.haibao-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 375px;
    /* 使用绝对像素值而不是百分比 */
    height: 667px;
    object-fit: fill;
    /* 拉伸填充整个容器 */
    z-index: 1;
    pointer-events: none;
    /* 不阻止点击事件 */
}

/* 职位名称区域 - 红色部分（根据模板定位） */
.haibao-job-title {
    position: absolute;
    top: 455px;
    /* 红色区域距离顶部的位置 */
    left: 0;
    right: 0;
    height: 70px;
    /* 垂直方向 padding 由 JavaScript 动态计算实现居中 */
    padding: 0 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    /* 使用固定像素行高，避免安卓 html2canvas 渲染时行距重叠 */
    line-height: 19px;
    display: block;
    box-sizing: border-box;
    word-break: break-word;
    overflow: hidden;
    z-index: 2;
    /* 确保在背景图之上 */
    /* iOS/Android html2canvas 字体兼容性：明确指定字体栈 */
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 底部信息区域 - 白色部分 */
.haibao-info-area {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 130px;
    padding: 15px 27px 10px 27px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    z-index: 2;

    /* 确保在背景图之上 */
}

.haibao-info-left {
    flex: 1;
    padding-right: 15px;
    margin-top: 0px;
}

.haibao-info-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.haibao-info-row:last-child {
    margin-bottom: 0;
}

.haibao-label {
    font-weight: 600;
    min-width: 60px;
    flex-shrink: 0;
}

.haibao-value {
    margin-left: 12px;
    word-break: break-word;
}

.haibao-info-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.haibao-qrcode {
    width: 108px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #ECECEC;
    box-sizing: border-box;
    margin-top: -8px;
}

.haibao-qrcode canvas {
    max-width: 100%;
    max-height: 100%;
}

/* 多职位模式：二维码居中显示 */
.haibao-new.multi-job-mode .haibao-info-area {
    justify-content: center;
    align-items: center;
}

.haibao-new.multi-job-mode .haibao-info-right {
    margin: 0;
    padding: 0;
}


/* 海报加载状�?*/
.poster-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 14px;
    padding: 20px;
}

.poster-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: posterSpin 0.8s linear infinite;
}

@keyframes posterSpin {
    to {
        transform: rotate(360deg);
    }
}

/* 移动端提�?*/
.poster-hint {
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 10px 20px;
    line-height: 1.5;
}

.poster-hint.mobile-only {
    display: none;
}

/* 生成后的海报图片容器 */
#posterImageContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 生成后的海报图片 */
#posterImageContainer img {
    max-width: 375px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .haibao-new {
        width: 320px;
        height: 569px;
        /* 恢复原始高度，保持与桌面端相同的宽高比 0.562 */
    }

    .haibao-job-title {
        top: 387px;
        height: 60px;
        font-size: 13px;
        line-height: 16px;
        padding: 0 12px;
    }

    .haibao-info-area {
        height: 110px;
        padding: 8px 15px 8px 12px;
        /* 减少padding给内容更多空间 */
    }

    .haibao-info-row {
        font-size: 14px;
        /* 从13px减小到12px */
        margin-bottom: 4px;
        /* 从6px减小到4px */
        padding: 0px 3px;
        /* 从5px减小到3px */
        line-height: 1.6;
        /* 添加行高控制 */
    }

    .haibao-info-left {}

    .haibao-label {
        min-width: 52px;
    }

    .haibao-qrcode {
        width: 84px;
        /* 从70px放大到84px（1.2倍） */
        height: 84px;
    }

    /* 移动端二维码容器顶部对齐，避免超出边界 */
    .haibao-info-right {
        align-items: flex-start;
        padding-top: 8px;
        margin-right: 10px;
        /* 向左移动10px */
    }

    /* 移动端背景图片使用固定尺寸 */
    .haibao-background-img {
        width: 320px;
        height: 569px;
    }

    .poster-hint.mobile-only {
        display: block;
    }

    .poster-download-btn {
        display: none;
    }

    #posterImageContainer img {
        max-width: 320px;
        margin: 0 auto;
    }

    /* 移动端海报图片容器 */
    #posterImageContainer {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

/* ================================
   用户协议弹窗样式
   ================================ */
.protocol-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.protocol-overlay.show {
    opacity: 1;
    visibility: visible;
}

.protocol-modal {
    width: 90%;
    max-width: 500px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.protocol-overlay.show .protocol-modal {
    transform: scale(1);
}

.protocol-title {
    background: #fff;
    color: #333;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.protocol-content {
    padding: 15px;
    height: 350px;
    overflow-y: auto;
    font-size: 12px;
    line-height: 20px;
    color: #333;
    text-align: left;
    background: #fff;
}

.protocol-content p {
    margin-bottom: 8px;
    line-height: 20px;
}

.protocol-content span {
    display: inline;
}

.protocol-content strong,
.protocol-content b {
    font-weight: 700;
}

.protocol-content u {
    text-decoration: underline;
}

/* 协议内容滚动条 */
.protocol-content::-webkit-scrollbar {
    width: 6px;
}

.protocol-content::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.protocol-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.protocol-content::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.protocol-buttons {
    display: flex;
    border-top: 1px solid #eee;
}

.protocol-buttons button {
    flex: 1;
    padding: 15px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, opacity 0.3s;
}

.protocol-buttons .btn-disagree {
    background: #2e2e2e;
    color: #fff;
}

.protocol-buttons .btn-disagree:hover {
    opacity: 0.9;
}

.protocol-buttons .btn-agree {
    background: #DB0D16;
    color: #fff;
}

.protocol-buttons .btn-agree:hover {
    background: #c00c14;
}

/* PC端适配 */
@media (min-width: 769px) {
    .protocol-modal {
        max-width: 600px;
    }

    .protocol-content {
        height: 400px;
        padding: 20px;
        font-size: 13px;
        line-height: 22px;
    }

    .protocol-title {
        font-size: 20px;
        padding: 18px 24px;
    }
}

/* 移动端适配 */
@media (max-width: 768px) {
    .protocol-modal {
        width: 92%;
        max-width: 400px;
    }

    .protocol-content {
        height: 300px;
    }

    .protocol-buttons button {
        padding: 14px;
        font-size: 15px;
    }
}

/* ================================
   �ƶ���ְλ����ҳ
   ================================ */
.mobile-job-apply body {
    background: #FFFFFF;
    min-height: 100vh;
}

.mobile-job-apply .container {
    max-width: 430px;
    margin: 0 auto;
    background: #FFFFFF;
    position: relative;
    min-height: 100vh;
    padding-bottom: 88px;
}

.mobile-job-apply .header {
    height: 63px;
    border-bottom: 0.67px solid #AAA;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
}

.mobile-job-apply .back-icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.mobile-job-apply .logo {
    width: 105px;
    height: 51px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.mobile-job-apply .job-header {
    padding: 23px 15px 20px;
    border-bottom: 1px solid #F0F0F0;
}

.mobile-job-apply .job-title {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 10px;
}

.mobile-job-apply .job-info-brief {
    font-size: 14px;
    color: #666;
}

.mobile-job-apply .info-item {
    color: #666;
}

.mobile-job-apply .separator {
    margin: 0 8px;
    color: #DDD;
}

.mobile-job-apply .apply-form-section {
    padding: 20px 15px;
}

.mobile-job-apply .section-title {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}

.mobile-job-apply .form-group {
    margin-bottom: 20px;
}

.mobile-job-apply .form-label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.mobile-job-apply .required {
    color: #DB0D16;
}

.mobile-job-apply .form-input {
    width: 100%;
    height: 44px;
    padding: 0 15px;
    border: 1px solid #DDD;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background: #FFFFFF;
    transition: border-color 0.3s;
}

.mobile-job-apply .form-input:focus {
    outline: none;
    border-color: #DB0D16;
}

.mobile-job-apply .form-input::placeholder {
    color: #999;
}

.mobile-job-apply .upload-container {
    width: 100%;
    min-height: 120px;
    border: 1.5px dashed #DDD;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #FAFAFA;
}

.mobile-job-apply .upload-container:hover {
    border-color: #DB0D16;
    background: #FFF5F5;
}

.mobile-job-apply .upload-placeholder {
    text-align: center;
    padding: 20px;
}

.mobile-job-apply .upload-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 10px;
}

.mobile-job-apply .upload-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.mobile-job-apply .upload-hint {
    font-size: 12px;
    color: #999;
}

.mobile-job-apply .bottom-action {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    height: 68px;
    background: #F2F6F7;
    border-top: 0.67px solid #B9BCBD;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.mobile-job-apply .submit-button {
    width: 100%;
    height: 44px;
    background: #DB0D16;
    border: none;
    border-radius: 5px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.mobile-job-apply .submit-button:hover {
    background: #C00C15;
}

.mobile-job-apply .submit-button:active {
    background: #A00B12;
}

.mobile-job-apply .submit-button:disabled {
    background: #CCC;
    cursor: not-allowed;
}

.mobile-job-apply .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.mobile-job-apply .modal-content {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px 20px 20px;
    max-width: 320px;
    width: 90%;
    text-align: center;
}

.mobile-job-apply .modal-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    font-weight: bold;
}

.mobile-job-apply .modal-icon.success {
    background: #E8F5E9;
    color: #4CAF50;
}

.mobile-job-apply .modal-icon.error {
    background: #FFEBEE;
    color: #F44336;
}

.mobile-job-apply .modal-title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.mobile-job-apply .modal-message {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mobile-job-apply .modal-button {
    width: 100%;
    height: 40px;
    background: #DB0D16;
    border: none;
    border-radius: 5px;
    color: #FFFFFF;
    font-size: 15px;
    cursor: pointer;
}

@media (min-width: 430px) {

    .mobile-job-apply .container,
    .mobile-job-apply .bottom-action {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
}

/* ================================
   �����ְλ����ҳ
   ================================ */
.desktop-job-apply body {
    background: #2C2C2C;
    min-height: 100vh;
}

.desktop-job-apply .page-wrapper {
    min-height: 100vh;
}

.desktop-job-apply .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    height: 100px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.desktop-job-apply .header-content {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 96px;
}

.desktop-job-apply .logo {
    width: 125px;
    height: 55px;
    margin-right: 76px;
}

.desktop-job-apply .nav-menu {
    display: flex;
    gap: 0;
}

.desktop-job-apply .nav-item {
    padding: 38px 21px;
    font-size: 16px;
    color: #2E2E2E;
    height: 100px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.desktop-job-apply .nav-item:hover {
    background: #F5F3F3;
}

.desktop-job-apply .nav-item.active {
    background: #FFFFFF;
    font-weight: 500;
}

.desktop-job-apply .hero-section {
    margin-top: 100px;
    position: relative;
    height: 235px;
    overflow: hidden;
}

.desktop-job-apply .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desktop-job-apply .hero-content {
    position: absolute;
    left: 105px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
}

.desktop-job-apply .hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.desktop-job-apply .hero-subtitle {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 12px;
}

.desktop-job-apply .hero-tagline {
    font-size: 24px;
    font-weight: 300;
}

.desktop-job-apply .main-content {
    max-width: 1440px;
    margin: 40px auto;
    padding: 0 96px 60px;
    display: flex;
    gap: 35px;
}

.desktop-job-apply .apply-card {
    flex: 1;
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #E4E7ED;
    padding: 35px 40px;
}

.desktop-job-apply .job-info-header {
    margin-bottom: 30px;
}

.desktop-job-apply .back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #DB0D16;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 20px;
}

.desktop-job-apply .back-link img {
    width: 14px;
    height: 14px;
}

.desktop-job-apply .job-title {
    font-size: 24px;
    font-weight: 700;
    color: #303133;
    margin-bottom: 15px;
}

.desktop-job-apply .job-meta {
    display: flex;
    gap: 20px;
}

.desktop-job-apply .meta-item {
    font-size: 15px;
    color: #606266;
    padding-right: 20px;
    border-right: 1px solid #C0C4CC;
}

.desktop-job-apply .meta-item:last-child {
    border-right: none;
}

.desktop-job-apply .form-section {
    border-top: 1px solid #E4E7ED;
    padding-top: 30px;
}

.desktop-job-apply .section-title {
    font-size: 20px;
    font-weight: 500;
    color: #303133;
    margin-bottom: 25px;
}

.desktop-job-apply .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.desktop-job-apply .form-group {
    flex: 1;
    margin-bottom: 20px;
}

.desktop-job-apply .form-group.full-width {
    flex: 1 1 100%;
}

.desktop-job-apply .form-label {
    display: block;
    font-size: 14px;
    color: #606266;
    margin-bottom: 10px;
}

.desktop-job-apply .required {
    color: #DB0D16;
}

.desktop-job-apply .form-input {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #DCDFE6;
    border-radius: 4px;
    font-size: 14px;
    color: #606266;
    background: #FFFFFF;
    transition: border-color 0.3s;
}

.desktop-job-apply .form-input:focus {
    outline: none;
    border-color: #DB0D16;
}

.desktop-job-apply .form-input::placeholder {
    color: #C0C4CC;
}

.desktop-job-apply .upload-container {
    width: 100%;
    min-height: 150px;
    border: 2px dashed #DCDFE6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #FAFAFA;
}

.desktop-job-apply .upload-container:hover {
    border-color: #DB0D16;
    background: #FFF5F5;
}

.desktop-job-apply .upload-placeholder {
    text-align: center;
    padding: 30px;
}

.desktop-job-apply .upload-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;
}

.desktop-job-apply .upload-text {
    font-size: 15px;
    color: #606266;
    margin-bottom: 8px;
}

.desktop-job-apply .upload-hint {
    font-size: 13px;
    color: #909399;
}

.desktop-job-apply .form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #E4E7ED;
}

.desktop-job-apply .btn-primary,
.desktop-job-apply .btn-secondary {
    height: 40px;
    padding: 0 30px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.desktop-job-apply .btn-primary {
    background: #DB0D16;
    color: #FFFFFF;
}

.desktop-job-apply .btn-primary:hover {
    background: #C00C15;
}

.desktop-job-apply .btn-primary:disabled {
    background: #CCC;
    cursor: not-allowed;
}

.desktop-job-apply .btn-secondary {
    background: #FFFFFF;
    color: #606266;
    border: 1px solid #DCDFE6;
}

.desktop-job-apply .btn-secondary:hover {
    color: #DB0D16;
    border-color: #DB0D16;
}

.desktop-job-apply .sidebar {
    width: 300px;
    flex-shrink: 0;
}

.desktop-job-apply .sidebar-card {
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #E4E7ED;
    padding: 25px;
}

.desktop-job-apply .sidebar-title {
    font-size: 16px;
    font-weight: 500;
    color: #303133;
    margin-bottom: 20px;
    text-align: center;
}

.desktop-job-apply .qr-container {
    width: 250px;
    height: 228px;
    background: rgba(219, 13, 22, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.desktop-job-apply .qr-container img {
    width: 100%;
    height: auto;
}

.desktop-job-apply .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.desktop-job-apply .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.desktop-job-apply .modal-content {
    position: relative;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 40px 30px 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    z-index: 1;
}

.desktop-job-apply .modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    font-weight: bold;
}

.desktop-job-apply .modal-icon.success {
    background: #E8F5E9;
    color: #4CAF50;
}

.desktop-job-apply .modal-icon.error {
    background: #FFEBEE;
    color: #F44336;
}

.desktop-job-apply .modal-title {
    font-size: 20px;
    font-weight: 500;
    color: #303133;
    margin-bottom: 12px;
}

.desktop-job-apply .modal-message {
    font-size: 14px;
    color: #606266;
    line-height: 1.6;
    margin-bottom: 25px;
}

.desktop-job-apply .modal-button {
    width: 100%;
    height: 40px;
    background: #DB0D16;
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.desktop-job-apply .modal-button:hover {
    background: #C00C15;
}

@media (max-width: 1024px) {
    .desktop-job-apply .main-content {
        flex-direction: column;
        padding: 0 40px 60px;
    }

    .desktop-job-apply .sidebar {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ================================
   Desktop Footer
   ================================ */
.desktop-footer {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #333333;
    color: #FFFFFF;
    padding: 30px 0 40px;
}

.desktop-footer .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.desktop-footer .footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.desktop-footer .footer-link {
    color: #FFFFFF;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    padding: 0 15px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.desktop-footer .footer-link:hover {
    opacity: 1;
}

.desktop-footer .link-separator {
    color: #FFFFFF;
    opacity: 0.5;
    font-size: 14px;
}

.desktop-footer .footer-divider {
    width: 280px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.desktop-footer .footer-copyright {
    font-size: 14px;
    color: #CCCCCC;
    text-align: center;
}

/* ================================
   移动端About页面 - 网站链接区域
   ================================ */
.website-link-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 16px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
}

.website-link-icon {
    width: auto;
    height: auto;
    margin-right: 6px;
    flex-shrink: 0;
}