/* 【新增】定义全局字体 */
@font-face {
    font-family: 'Maple Mono Normal NF CN';
    /* 路径相对于此CSS文件，即从 'css' 目录返回上一级到 'web'，再进入 'fonts' 目录 */
    src: url('../fonts/MapleMonoNormal-NF-CN-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* 优化字体加载体验 */
}

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 【修改】使用与主页面相同的配色风格，强调色改为橙色单色 */
    --primary-color: #005984;
    --secondary-color: #FB6104; /* 橙色单色 */
    --accent-color: #FB6104; /* 统一使用橙色 */
    --dark-color: #212529;
    --light-color: #f0f2f5;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --transition: all 0.3s ease;
    --animation-delay: 0.2s;
    /* 【新增】深色模式变量 */
    --bg-color: #f0f2f5;
    --text-color: #212529;
    --content-bg: white;
    --header-text: #212529;
    --header-border: #e9ecef;
    --button-bg: rgba(0, 0, 0, 0.1);
    --button-hover-bg: rgba(0, 0, 0, 0.2);
}

/* 【新增】深色模式 */
body.dark-mode {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --light-color: #1e1e1e;
    --content-bg: #1e1e1e;
    --header-text: #f5f5f5;
    --header-border: #333;
    --dark-color: #f5f5f5;
    --light-gray: #333;
    --button-bg: rgba(255, 255, 255, 0.1);
    --button-hover-bg: rgba(255, 255, 255, 0.2);
}

html {
    scroll-behavior: smooth;
}

/* 【修改】全局字体设置为 Maple Mono */
body {
    font-family: 'Maple Mono Normal NF CN', 'Courier New', monospace;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s, color 0.3s;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 【修改】工作室页面控制面板样式 - 移除悬浮定位，功能集成到navbar */
#company-controls {
    display: none; /* 隐藏旧的悬浮容器 */
}

/* [新增] 导航栏内的控件容器 */
.navbar-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto; /* 将控件推到右侧 */
    padding-left: 20px;
}

/* [修改] 调整公司页面控制按钮的样式 */
.navbar-controls .control-btn {
    background-color: transparent; /* 背景透明 */
    color: var(--text-color); /* 文本颜色与导航栏一致 */
    border: 1px solid var(--header-border); /* 添加边框 */
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Maple Mono Normal NF CN', 'Courier New', monospace;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 32px;
}

.navbar-controls .control-btn:hover {
    background-color: var(--secondary-color); /* 悬停背景色 */
    color: white; /* 悬停文本色 */
    border-color: var(--secondary-color); /* 悬停边框色 */
}

.navbar-controls .control-btn.active {
    background-color: var(--secondary-color);
    color: white;
    font-weight: bold;
    border-color: var(--secondary-color);
}

/* 【新增】工作室页面语言下拉框样式 */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-toggle-btn {
    /* 使用 navbar-controls .control-btn 的样式 */
    border-radius: 5px; /* 与其他按钮保持一致的圆角 */
    gap: 5px; /* 为下拉箭头提供间距 */
}

.language-toggle-btn:hover {
    /* 使用 navbar-controls .control-btn:hover 的样式 */
}

.language-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--content-bg); /* [修改] 背景与Navbar一致 */
    border: 1px solid var(--header-border); /* [修改] 边框与Navbar一致 */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    min-width: 80px;
    z-index: 1000;
    margin-top: 5px;
}

.language-dropdown-content.show {
    display: block;
}

.language-option {
    display: block;
    width: 100%;
    padding: 8px 12px;
    background: none;
    border: none;
    color: var(--text-color); /* [修改] 文本颜色与Navbar一致 */
    font-family: 'Maple Mono Normal NF CN', 'Courier New', monospace;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    text-align: left;
}

.language-option:hover {
    background-color: var(--secondary-color); /* [修改] 悬停背景色 */
    color: white;
}

.language-option:first-child {
    border-radius: 8px 8px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 8px 8px;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Maple Mono Normal NF CN', 'Courier New', monospace;
}

.primary-btn {
    /* 【修改】使用橙色单色而不是渐变 */
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(251, 97, 4, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(251, 97, 4, 0.4);
}

.secondary-btn {
    background-color: var(--content-bg);
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--header-border);
}

.secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* 滚动动画 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* 标题样式 */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.active {
    opacity: 1;
    transform: translateY(0);
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--header-text);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    /* 【修改】使用橙色单色 */
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-title h2 span {
    /* 【修改】使用橙色单色 */
    color: var(--secondary-color);
}

.section-title p {
    font-size: 16px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--content-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--header-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--header-text);
    font-family: 'Maple Mono Normal NF CN', 'Courier New', monospace;
}

.logo a span {
    color: var(--secondary-color);
}

.menu ul {
    display: flex;
}

.menu ul li {
    margin-left: 30px;
}

.menu ul li a {
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    color: var(--text-color);
    font-family: 'Maple Mono Normal NF CN', 'Courier New', monospace;
}

.menu ul li a:hover {
    color: var(--secondary-color);
}

.menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.menu ul li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

/* 英雄区域样式 */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--light-color);
    background-image: url('../images/bg-pattern.svg');
    background-size: 200px 200px;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* 为固定导航栏留出空间 */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(251, 97, 4, 0.05);
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--header-text);
}

.hero-content h1 span {
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-group {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    perspective: 1000px;
}

/* 【移除】资金池相关样式已全部移除 */

.hero-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 20px;
}

/* 【修改】修复卡片翻转鼠标离开问题 */
.showcase-card {
    position: relative;
    width: 100%;
    height: 220px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    cursor: pointer;
    /* 【修改】增加外边距来扩大悬停区域 */
    margin: 10px;
    padding: 10px;
}

.showcase-card:hover {
    transform: rotateY(180deg);
}

/* 【修改】使用延迟机制防止快速翻转 */
.showcase-card.flipping {
    pointer-events: none;
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: var(--content-bg);
    border: 1px solid var(--header-border);
    /* 【修改】调整内边距以适应新的外边距 */
    margin: -10px;
}

.card-front {
    background-color: var(--content-bg);
}

.card-back {
    background-color: var(--content-bg);
    transform: rotateY(180deg);
}

.card-back p {
    color: var(--gray-color);
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
}

.showcase-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(251, 97, 4, 0.3);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background-color: var(--content-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 120px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--header-border);
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.stat-text {
    display: block;
    font-size: 16px;
    color: var(--gray-color);
    font-weight: 500;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* 组织介绍区域样式 */
.company-about {
    padding: 100px 0;
    background-color: var(--light-color);
}

/* 选项卡导航样式 */
.about-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background-color: var(--content-bg);
    border: 1px solid var(--header-border);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
    font-family: 'Maple Mono Normal NF CN', 'Courier New', monospace;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--secondary-color);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(251, 97, 4, 0.3);
}

/* 选项卡内容样式 */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 组织介绍内容样式 */
.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--header-text);
}

.intro-text p {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.intro-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 发展历程样式 */
.history-content {
    padding: 20px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--secondary-color);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    background: var(--secondary-color);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    z-index: 1;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background-color: var(--content-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid var(--header-border);
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    left: 55%;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--header-text);
}

.timeline-content p {
    font-size: 15px;
    color: var(--gray-color);
}

/* 组织文化样式 */
.culture-content {
    padding: 20px;
}

.culture-item {
    background-color: var(--content-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid var(--header-border);
}

.culture-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.culture-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(251, 97, 4, 0.3);
}

.culture-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--header-text);
}

.culture-item p {
    color: var(--gray-color);
    font-size: 15px;
}

/* 核心价值观样式 */
.values-content {
    padding: 20px;
}

.values-content h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--header-text);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-item {
    background-color: var(--content-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--header-border);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(251, 97, 4, 0.3);
}

.value-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 10px;
    color: var(--header-text);
}

.value-item p {
    color: var(--gray-color);
    font-size: 15px;
}

/* 特性区域样式 - 已移除 */
.features {
    display: none;
}

.feature-item.active {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-item .icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(251, 97, 4, 0.3);
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--gray-color);
    font-size: 15px;
}

/* 服务区域样式 */
.services {
    padding: 100px 0;
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    background-color: var(--content-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    border: 1px solid var(--header-border);
}

.service-item.active {
    opacity: 1;
    transform: translateY(0);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item .icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(251, 97, 4, 0.3);
    flex-shrink: 0;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--header-text);
}

.service-item p {
    color: var(--gray-color);
    font-size: 15px;
}

/* 产品展示区域样式 */
.portfolio {
    padding: 100px 0;
    background-color: var(--light-color);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--content-bg);
    border: 1px solid var(--header-border);
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
    font-family: 'Maple Mono Normal NF CN', 'Courier New', monospace;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--secondary-color);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(251, 97, 4, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.portfolio-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.portfolio-item.active {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-card {
    background-color: var(--content-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid var(--header-border);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--header-text);
}

.portfolio-info p {
    font-size: 15px;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.product-category {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(251, 97, 4, 0.1);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/* 管理团队区域样式 */
.team {
    padding: 100px 0;
    background-color: var(--light-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-item {
    background-color: var(--content-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--header-border);
}

.team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary-color);
}

.team-info-simple {
    padding: 10px;
}

.team-info-simple h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--header-text);
}

.team-info-simple .position {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 500;
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(251, 97, 4, 0.1);
    border-radius: 20px;
}

.team-info-simple p {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.6;
}

/* 联系我们区域样式 */
.contact {
    padding: 100px 0;
    background-color: var(--light-color);
}

.job-list {
    margin-bottom: 20px;
}

.job-item {
    padding: 15px;
    background-color: var(--content-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    border: 1px solid var(--header-border);
}

.job-item.active {
    opacity: 1;
    transform: translateY(0);
}

.job-item h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.job-item p {
    color: var(--gray-color);
    font-size: 14px;
}

.contact-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* 【修改】移除简历投递表单，只保留联系信息 */
.contact-form {
    display: none; /* 隐藏简历投递表单 */
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background-color: var(--content-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--header-border);
    margin: 0 auto; /* 居中显示 */
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--header-text);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-item p {
    color: var(--gray-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--header-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-color);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
}

/* 页脚样式 */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
}

body.dark-mode .footer {
    background-color: var(--content-bg);
    color: var(--text-color);
    border-top: 1px solid var(--header-border);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

.footer-logo a {
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    font-family: 'Maple Mono Normal NF CN', 'Courier New', monospace;
}

.footer-logo a span {
    color: var(--secondary-color);
}

.footer-logo p {
    color: #adb5bd;
    margin-bottom: 20px;
}

body.dark-mode .footer-logo p {
    color: var(--gray-color);
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

body.dark-mode .footer-links h4 {
    color: var(--header-text);
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #adb5bd;
    transition: var(--transition);
    font-family: 'Maple Mono Normal NF CN', 'Courier New', monospace;
}

body.dark-mode .footer-links ul li a {
    color: var(--gray-color);
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

body.dark-mode .footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

body.dark-mode .footer-contact h4 {
    color: var(--header-text);
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact ul li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-contact ul li span {
    color: #adb5bd;
    font-family: 'Maple Mono Normal NF CN', 'Courier New', monospace;
}

body.dark-mode .footer-contact ul li span {
    color: var(--gray-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

body.dark-mode .footer-bottom {
    border-top: 1px solid var(--header-border);
}

.footer-bottom p {
    color: #adb5bd;
    font-family: 'Maple Mono Normal NF CN', 'Courier New', monospace;
}

body.dark-mode .footer-bottom p {
    color: var(--gray-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #adb5bd;
    transition: var(--transition);
}

body.dark-mode .footer-social a {
    color: var(--gray-color);
}

.footer-social a:hover {
    color: white;
}

body.dark-mode .footer-social a:hover {
    color: var(--secondary-color);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .features-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--content-bg);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }

    .menu.active {
        right: 0;
    }

    .menu ul {
        flex-direction: column;
        padding: 30px;
    }

    .menu ul li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .hero-content p {
        max-width: 100%;
    }

    .btn-group {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* [修改] 移动端 navbar-controls 隐藏 */
    .navbar-controls {
        display: none;
    }

    .company-control-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .features-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        grid-template-columns: 1fr;
    }
}