/* 添加主题相关样式 */

:root {
    --gradient-start: #2c3e50;
    --gradient-end: #000000;
    --light-color: #ffffff;
}


/* 修改为亮色主题的样式 */

[data-theme="light"] {
    --gradient-start: #11e8bb;
    --gradient-end: #760aa4;
}


/* 暗色主题 */

[data-theme="dark"] {
    --gradient-start: #2c3e50;
    --gradient-end: #000000;
}


/* 更新渐变背景样式 */

html {
    width: 100%;
    height: 100%;
    background: var(--gradient-start);
    background: -moz-linear-gradient(top, var(--gradient-start) 0%, var(--gradient-end) 100%);
    background: -webkit-linear-gradient(top, var(--gradient-start) 0%, var(--gradient-end) 100%);
    background: linear-gradient(to bottom, var(--gradient-start) 0%, var(--gradient-end) 100%);
    transition: background 0.3s ease;
    /* Old browsers */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#11e8bb', endColorstr='#760aa4', GradientType=0);
    /* IE6-9 */
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

#canvas canvas {
    pointer-events: auto !important;
}

.header {
    position: relative;
    z-index: 2;
    padding: 20px 0;
    pointer-events: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    pointer-events: auto;
}

.logo {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    align-self: flex-end;
    position: relative;
    right: 0;
    bottom: 0;
    transition: transform 0.7s cubic-bezier(.4, 0, .2, 1);
}

.logo-img-animate {
    animation: logo-rotate-ccw 0.9s cubic-bezier(.4, 0, .2, 1);
}

@keyframes logo-rotate-ccw {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

.logo span {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.logo-animate {
    display: inline-block;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(.4, 0, .2, 1);
}

.logo-animate.animated {
    clip-path: inset(0 0 0 0);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 40px;
}

.nav-menu>li {
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.5s cubic-bezier(.4, 0, .2, 1), transform 0.5s cubic-bezier(.4, 0, .2, 1);
    margin-left: 30px;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu>li:first-child {
    margin-left: 0;
}

.nav-menu>li.nav-in {
    opacity: 1;
    transform: none;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
    padding: 8px 0;
    line-height: 24px;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.main-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 60px 20px;
    pointer-events: none;
}

.hero {
    text-align: center;
    padding: 100px 0 160px;
}

.hero h1,
.hero p {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), transform 0.7s cubic-bezier(.4, 0, .2, 1);
}

.hero h1.hero-in {
    opacity: 1;
    transform: none;
    transition-delay: 0.2s;
}

.hero p.hero-in {
    opacity: 1;
    transform: none;
    transition-delay: 0.5s;
}

.hero h1 {
    font-size: 48px;
    margin: 0 0 20px;
}

.hero p {
    font-size: 24px;
    opacity: 0.9;
}


/* 添加玻璃拟态效果 */

.nav-container,
.about {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
}


/* 特性展示部分样式 */

.features {
    position: fixed;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 20px;
    pointer-events: none;
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.feature-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-width: 380px;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(40px);
}

.feature-card.feature-in {
    opacity: 1;
    transform: none;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}


/* 响应式设计 */

@media (max-width: 968px) {
    .features {
        position: relative;
        bottom: auto;
        padding: 20px;
    }
    .feature-container {
        flex-direction: column;
        align-items: center;
    }
    .feature-card {
        margin-bottom: 20px;
        width: 100%;
        max-width: 100%;
    }
}


/* 新的主题切换按钮样式 */

.theme-switch {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 30px;
}

.switch {
    --line: #E8EBFB;
    --dot: var(--gradient-start);
    --circle: #D3D4EC;
    --duration: .3s;
    --text: #9EA0BE;
    --shadow: 0 1px 3px rgba(0, 9, 61, 0.08);
    cursor: pointer;
    position: relative;
    width: 48px;
    height: 28px;
}

.switch:before {
    content: "";
    width: 48px;
    height: 28px;
    border-radius: 14px;
    background: var(--background, rgba(255, 255, 255, 0.1));
    position: absolute;
    left: 0;
    top: 0;
}

.switch input {
    display: none;
}

.switch input+div {
    position: relative;
    width: 100%;
    height: 100%;
}

.switch input+div:before,
.switch input+div:after {
    --s: 1;
    content: "";
    position: absolute;
    height: 4px;
    top: 12px;
    width: 20px;
    background: var(--line);
    transform: scaleX(var(--s));
    transition: transform var(--duration) ease;
}

.switch input+div:before {
    --s: 0;
    left: 4px;
    transform-origin: 0 50%;
    border-radius: 2px 0 0 2px;
}

.switch input+div:after {
    left: 24px;
    transform-origin: 100% 50%;
    border-radius: 0 2px 2px 0;
}

.switch input+div span:before {
    --x: 0;
    --b: var(--circle);
    --s: 4px;
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 var(--s) var(--b);
    transform: translateX(var(--x));
    transition: box-shadow var(--duration) ease, transform var(--duration) ease;
}

.switch input:checked+div:before {
    --s: 1;
}

.switch input:checked+div:after {
    --s: 0;
}

.switch input:checked+div span:before {
    --x: 20px;
    --s: 12px;
    --b: var(--dot);
}


/* 移除原来的主题切换按钮样式 */

.theme-btn {
    display: none;
}


/* 修改一些颜色以匹配您的主题 */

.square {
    background: var(--gradient-start);
    border: 3px solid black;
}

.minicubeface {
    background: radial-gradient(var(--gradient-start), var(--gradient-end)) center;
    border: 1px solid var(--gradient-end);
}


/* 添加关于我们弹窗样式 */

.about-modal {
    position: fixed;
    top: 0;
    right: -35%;
    /* 初始位置在屏幕右侧外 */
    width: 35%;
    /* 占据屏幕1/4宽度 */
    height: 100vh;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px 0 0 15px;
    padding: 30px;
    z-index: 100;
    transition: right 0.3s ease;
    box-sizing: border-box;
    overflow-y: auto;
}

.about-modal.active {
    right: 0;
    /* 显示时滑入 */
}

.about-modal-close {
    position: static;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    padding: 0;
    margin: 0;
}

.about-modal-close:hover {
    opacity: 1;
}

.about-modal-content {
    color: #fff;
    padding-top: 0;
}

.about-modal-content h2 {
    font-size: 24px;
    margin: 0;
    display: inline-block;
}

.about-modal-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}


/* 服务弹窗样式 */

.services-modal {
    position: fixed;
    top: 0;
    right: -25%;
    width: 25%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px 0 0 15px;
    padding: 30px;
    z-index: 100;
    transition: right 0.3s ease;
    box-sizing: border-box;
    overflow-y: auto;
    /* 添加滚动条 */
}

.services-modal.active {
    right: 0;
}

.services-modal-close {
    position: static;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    padding: 0;
    margin: 0;
}

.services-modal-close:hover {
    opacity: 1;
}

.services-modal-content {
    color: #fff;
    padding-top: 0;
}

.services-modal-content h2 {
    font-size: 24px;
    margin: 0;
    display: inline-block;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.service-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    background: linear-gradient( to right, var(--light-color) 0%, var(--gradient-start) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.service-item p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}


/* 添加滚动条样式 */

.services-modal::-webkit-scrollbar {
    width: 6px;
}

.services-modal::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.services-modal::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.services-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}


/* 联系我们弹窗样式 */

.contact-modal {
    position: fixed;
    top: 0;
    right: -25%;
    width: 25%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px 0 0 15px;
    padding: 30px;
    z-index: 100;
    transition: right 0.3s ease;
    box-sizing: border-box;
}

.contact-modal.active {
    right: 0;
}

.contact-modal-close {
    position: static;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    padding: 0;
    margin: 0;
}

.contact-modal-close:hover {
    opacity: 1;
}

.contact-modal-content {
    color: #fff;
    padding-top: 0;
}

.contact-modal-content h2 {
    font-size: 24px;
    margin: 0;
    display: inline-block;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.contact-info {
    width: 100%;
}

.contact-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    background: linear-gradient( to right, var(--light-color) 0%, var(--gradient-start) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.qr-code {
    margin-top: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    width: fit-content;
}

.qr-code img {
    width: 120px;
    height: 120px;
    display: block;
}

.contact-note {
    margin-top: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.8;
}

.contact-note p {
    margin: 5px 0;
}


/* 移除不需要的样式 */

.contact-icon {
    display: none;
}


/* 项目网格布局 */

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 10px 0;
}


/* 项目卡片样式 */

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gradient-start);
}

.project-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    background: linear-gradient( to right, var(--light-color) 0%, var(--gradient-start) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.project-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 15px;
}


/* 项目标签样式 */

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags span {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--gradient-start);
}


/* 调整标题区域的布局 */

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}


/* 修改弹窗标题和关闭按钮的样式 */

.about-modal-content h2,
.services-modal-content h2,
.contact-modal-content h2 {
    font-size: 24px;
    margin: 0;
    /* 移除底部间距 */
    display: inline-block;
    /* 让标题和按钮在同一行 */
}


/* 调整所有弹窗的标题区域样式 */

.about-modal-content,
.services-modal-content,
.contact-modal-content {
    color: #fff;
    padding-top: 0;
    /* 移除顶部内边距 */
}


/* 调整标题区域的布局 */

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    /* 添加底部间距 */
}


/* 统一调整关闭按钮位置 */

.about-modal-close,
.services-modal-close,
.contact-modal-close {
    position: static;
    /* 移除绝对定位 */
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    padding: 0;
    margin: 0;
}

.about-modal-close:hover,
.services-modal-close:hover,
.contact-modal-close:hover {
    opacity: 1;
}


/* 添加移动端样式 */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

@media (max-width: 768px) {
    /* 导航栏样式调整 */
    .mobile-menu-btn {
        display: block;
    }
    .nav-container {
        padding: 10px;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: -70%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 80px 20px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu li {
        margin: 20px 0;
        width: 100%;
    }
    .nav-menu a {
        font-size: 18px;
        padding: 10px;
        display: block;
        width: 100%;
    }
    /* 项目网格布局调整 */
    .project-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    /* 弹窗样式调整 */
    .about-modal,
    .services-modal,
    .contact-modal {
        width: 90%;
        right: -90%;
    }
    .about-modal.active,
    .services-modal.active,
    .contact-modal.active {
        right: 0;
    }
    /* 主题切换按钮调整 */
    .theme-switch {
        margin: 20px 0;
    }
}

.language-switch {
    margin-right: 15px;
    position: relative;
}

.language-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.language-icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
    filter: drop-shadow(0 0 2px #00000033);
    transition: transform 0.2s;
}

.language-icon:hover {
    transform: scale(1.08) rotate(-8deg);
}

.language-list {
    display: none;
    position: absolute;
    left: 50%;
    top: 130%;
    transform: translateX(-50%) scaleY(0.8);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    min-width: 90px;
    max-width: 120px;
    z-index: 10;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s cubic-bezier(.4, 0, .2, 1), transform 0.22s cubic-bezier(.4, 0, .2, 1);
}

.language-list li {
    color: #222;
    font-size: 14px;
    padding: 8px 0;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, font-weight 0.18s;
    text-align: center;
    font-family: inherit;
    border-radius: 8px;
    margin: 0 8px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-list li.active {
    background: none;
    color: #11e8bb;
    font-weight: 600;
}

.language-list li:hover:not(.active) {
    background: #f5f5f5;
    color: #222;
}

.language-dropdown.active .language-list {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scaleY(1);
}


/* 加入我们弹窗样式 - 右侧滑出效果 */

.join-modal {
    position: fixed;
    top: 0;
    right: -25%;
    width: 25%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px 0 0 15px;
    padding: 30px;
    z-index: 100;
    transition: right 0.3s ease;
    box-sizing: border-box;
    overflow-y: auto;
    /* 隐藏滚动条但保持滚动功能 */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}


/* 隐藏 Webkit 浏览器的滚动条 */

.join-modal::-webkit-scrollbar {
    display: none;
}

.join-modal.active {
    right: 0;
}

.join-modal-close {
    position: static;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    padding: 0;
    margin: 0 0 20px 0;
    float: right;
}

.join-modal-close:hover {
    opacity: 1;
}

.join-modal-content h2 {
    font-size: 24px;
    margin: 0 0 20px 0;
    color: #fff;
    display: inline-block;
}

.join-content {
    color: #fff;
    padding-top: 0;
}

.positions-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.position-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.position-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.position-card.hot {
    border-color: #11e8bb;
    box-shadow: 0 0 10px rgba(17, 232, 187, 0.3);
}

.position-card.filled {
    opacity: 0.6;
    cursor: not-allowed;
}

.position-card.filled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.05);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.position-header h3 {
    color: white;
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.position-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.position-header span,
.position-footer span {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.salary {
    background: rgba(17, 232, 187, 0.2);
    color: #11e8bb;
}

.location {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.status.recruiting {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff88;
}

.status.filled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}


/* 岗位详情弹窗 - 毛玻璃效果 */

.position-detail-modal {
    position: fixed;
    top: 0;
    right: -30%;
    width: 30%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px 0 0 15px;
    padding: 30px;
    z-index: 101;
    transition: right 0.3s ease;
    box-sizing: border-box;
    overflow-y: auto;
    /* 隐藏滚动条但保持滚动功能 */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}


/* 隐藏 Webkit 浏览器的滚动条 */

.position-detail-modal::-webkit-scrollbar {
    display: none;
}

.position-detail-modal.active {
    right: 0;
}

.position-detail-close {
    position: static;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    padding: 0;
    margin: 0 0 20px 0;
    float: right;
}

.position-detail-close:hover {
    opacity: 1;
}

.position-detail-content {
    color: #fff;
}

.position-detail-content h2 {
    font-size: 20px;
    margin: 0 0 20px 0;
    color: white;
    font-weight: bold;
}

.position-detail-body {
    padding: 0;
}

.detail-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.detail-section:hover {
    transform: translateX(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.detail-section h3 {
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
}

.requirements-list,
.benefits-list {
    list-style: none;
    padding: 0;
}

.requirements-list li,
.benefits-list li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    line-height: 1.6;
}

.requirements-list li:before,
.benefits-list li:before {
    content: "✓";
    color: #11e8bb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.requirements-list li:last-child,
.benefits-list li:last-child {
    border-bottom: none;
}

.hr-contact {
    background: rgba(17, 232, 187, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.hr-contact .contact-item {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.hr-contact .contact-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    min-width: 80px;
    font-size: 14px;
}

.hr-contact .contact-item span:last-child {
    color: #11e8bb;
    font-weight: 500;
    font-size: 14px;
}


/* 响应式设计 */

@media (max-width: 768px) {
    .join-modal {
        width: 100%;
        right: -100%;
        border-radius: 0;
    }
    .position-detail-modal {
        width: 100%;
        right: -100%;
        border-radius: 0;
    }
}