:root {
    --primary-color: #0668E1;
    --secondary-color: #242526;
    --accent-color: #1877F2;
    --text-primary: #050505;
    --text-secondary: #65676B;
    --text-light: #ffffff;
    --bg-light: #F0F2F5;
    --bg-card: #ffffff;
    --border-color: #dadde1;
    --success-color: #31A24C;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans CJK", "Source Han Sans", "M+ FONTS", "Hiragino Sans GB", "Hiragino Kaku Gothic Pro", "Microsoft YaHei", "微软雅黑", sans-serif;
}

body {
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* 中文和日文专用类 */
.chinese-name {
    font-family: "Noto Sans SC", "Noto Sans JP", sans-serif;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
}

header {
    background-color: var(--bg-card);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container img {
    width: 180px;
    height: auto;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

nav {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

nav li {
    padding: 1rem;
}

nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--accent-color);
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.2);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
}

.contact-info {
    margin-top: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--bg-light);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-color);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

section {
    padding: 5rem 0;
    margin: 0 auto;
    max-width: 1280px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

section:nth-child(even) {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.service-grid, .team-grid, .case-grid, .partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.icon-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 2.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.icon-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.card li::before {
    content: '▶';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.philosophy-box {
    background: white;
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.philosophy-box:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

/* 团队成员部分的新样式 */
.team-member {
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--primary-color);
}

.member-content {
    padding: 2rem;
}

.member-position {
    background-color: var(--primary-color);
    color: white;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.member-name {
    font-size: 1.5rem;
    margin: 0.5rem 0 1rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.expertise-tag {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .team-member {
        border-left-width: 3px;
    }
    
    .member-content {
        padding: 20px;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .member-expertise {
        margin-bottom: 10px;
    }
}

/* 删除旧的团队成员图片样式 */
.member-image,
.member-image::before,
.member-image:hover,
.member-image-ceo,
.member-image-ceo::after,
.member-image-tech1,
.member-image-tech1::after,
.member-image-tech2,
.member-image-tech2::after {
    /* 覆盖旧样式 */
    display: none;
}

.news-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.news-date {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cta-banner {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-banner h3 {
    color: white;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: var(--transition);
}

.btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

footer {
    background: #0f2027;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.info-table th,
.info-table td {
    padding: 1.2rem;
    border-bottom: 1px solid #eee;
}

.info-table th {
    background: var(--bg-light);
    font-weight: 500;
    width: 30%;
    text-align: left;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.history-table th, .history-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.history-table th {
    width: 30%;
    background: var(--bg-light);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-nav h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav a,
.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 0.5rem 0;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    text-align: center;
}

.contact-link-container {
    margin-top: 2rem;
    text-align: center;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* 移动端适配 */
@media (max-width: 768px) {
    header {
        position: relative;
        z-index: 50;
    }
    
    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1000;
        margin-left: auto;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px 0;
        background: white;
        transition: var(--transition);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 80px 0 0;
        height: 100%;
        overflow-y: auto;
    }
    
    nav li {
        width: 100%;
        text-align: center;
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 998;
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-container {
        flex-direction: column;
        margin-bottom: 1rem;
    }
    
    .contact-button {
        margin-top: 1rem;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    .service-grid, .team-grid, .case-grid, .partner-grid {
        grid-template-columns: 1fr;
    }
    
    .history-table th, .history-table td {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        margin-bottom: 2rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 1rem 0;
    }

    .contact-icon {
        margin-bottom: 0.5rem;
    }

    .info-table th, .info-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* 添加滚动时导航栏变色效果 */
nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 淡入动画效果 */
.fade-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* 修复在不支持JS的环境下的显示 */
.no-js .fade-element {
    opacity: 1;
    transform: translateY(0);
}

/* 添加阻止滚动的样式 */
body.no-scroll {
    overflow: hidden;
}

/* 调整服务卡片在PC端显示为4列 */
@media (min-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 服务图标样式 */
.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    position: relative;
    color: white;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.service-icon-staffing::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M16 17v2H2v-2s0-4 7-4 7 4 7 4m-3.5-9.5A3.5 3.5 0 1 0 9 11a3.5 3.5 0 0 0 3.5-3.5m3.44 5.5A5.32 5.32 0 0 1 18 17v2h4v-2s0-3.63-6.06-4M15 4a3.39 3.39 0 0 0-1.93.59 5 5 0 0 1 0 5.82A3.39 3.39 0 0 0 15 11a3.5 3.5 0 0 0 0-7z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.service-icon-app::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-4.5-6L9 9h2l1.5 4 3.5-4h2l-7 7z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.service-icon-support::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 9h-2V5h2v6zm0 4h-2v-2h2v2z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.service-icon-consulting::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-11h-2v5h2v-5zm0-4h-2v2h2V5z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* 福利厚生版块样式 */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    position: relative;
}

.benefit-icon i {
    display: block;
    width: 50px;
    height: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.benefit-icon-office {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z"/></svg>');
}

.benefit-icon-travel {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20.19 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.81-2-1.81-2zM20 8h-2.09c-.7 0-1.71.71-1.91 1l-2.97 2.75c-.59.59-1.32.85-2.03.85-.7 0-1.42-.25-2-.83L5.12 8H10v-.75c0-.41.34-.75.75-.75h2.5c.41 0 .75.34.75.75V8h6z"/></svg>');
}

.benefit-icon-party {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M2 22l14-5-9-9zm12.22-17.4L13 3.4l-1.22 1.2-1.32-1.3 2.54-2.52 1.32 1.3zM14.9 5.3L16 6.4l-1.1 1.1 1.2 1.2 2.3-2.3-2.3-2.3zm5 5l-1.1-1.1-1.12 1.1 1.2 1.2 2.3-2.3-1.3-1.2zM9 10c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></svg>');
}

.benefit-icon-health {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M10.5 13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13zM12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3z"/></svg>');
}

.benefit-icon-education {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3L1 9l11 6 9-4.91V17h2V9L12 3z"/></svg>');
}

.benefit-icon-flexible {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}

/* 调整移动端显示 */
@media (max-width: 768px) {
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .benefit-icon i {
        width: 35px;
        height: 35px;
    }
}

/* 细节增强 */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* 针对高分辨率屏幕的优化 */
@media (min-width: 2000px) {
    body {
        font-size: 18px;
    }
    
    .container, section {
        max-width: 1440px;
    }
}

/* 针对特殊语言的字体调整 */
:lang(ja) {
    font-feature-settings: "palt";
}

:lang(zh) {
    font-feature-settings: "tnum";
} 