/* 全局样式 */
:root {
    --primary-color: #87CEEB;
    /* 天蓝色 */
    --secondary-color: #1E90FF;
    /* 道奇蓝 */
    --accent-color: #00BFFF;
    /* 深天蓝 */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #87CEEB 0%, #1E90FF 100%);
    --gradient-light: linear-gradient(135deg, #E6F4FF 0%, #B3E0FF 100%);
    --gradient-dark: linear-gradient(135deg, #1E90FF 0%, #87CEEB 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: navbarSlideDown 0.8s ease-out;
    padding: 0.5rem 1rem;
}

.navbar.scrolled {
    background: var(--primary-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 90px;
    transform: scale(1.5);
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-container .logo img {
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.navbar.scrolled .nav-links a {
    color: white;
}

img {
    -webkit-user-drag: none;
    /* user-drag: none; */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: white;
}

.nav-links a.active::after {
    width: 100%;
}

.showcase-btn {
    background: transparent;
    color: white;
    padding: 0.8rem 1.5rem;
    border: 2px solid white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-weight: 500;
}

.navbar.scrolled .showcase-btn {
    background: white;
    color: var(--primary-color);
    border: none;
}

.showcase-btn:hover {
    background: white;
    color: var(--primary-color);
}

/* 导航栏动画 */
@keyframes navbarSlideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 英雄区域样式 */
.hero {
    min-height: 100vh;
    padding: 0;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%2300FFFF" fill-opacity="0.05" d="M0 0h100v100H0z"/></svg>');
    opacity: 0.5;
    z-index: 0;
    animation: backgroundMove 20s linear infinite;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 500px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: contentSlideIn 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    /* 确保内容默认显示 */
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    -webkit-text-fill-color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s infinite;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineExpand 1.5s ease forwards 1s;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.5s ease forwards 0.5s;
    opacity: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1.5s ease forwards 1s;
    opacity: 0;
}

/* 轮播图样式 */
.hero-slider {
    /*position: relative;*/
    /*width: 100%;*/
    /*height: 100vh;*/
    /*margin: 0;*/
    /*flex: 1;*/
    /*overflow: hidden;*/
    /*opacity: 1;  !* 确保轮播图默认显示 *!*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-container {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    animation: fadeIn 1s ease-out;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.slide:hover img {
    transform: scale(1.05);
}

.slider-controls {
    position: absolute;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
    bottom: 28rem;
    /*right: 2rem;*/
    left: 52.5rem !important;

}

.slider-controls button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    animation: glow 2s infinite;
}

.slider-controls .next-btn {
    margin-left: 1500px;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* 轮播图指示器 */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* 轮播图动画 */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }

    100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
}

/* 新增动画效果 */
@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

@keyframes contentSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }

    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
}

@keyframes lineExpand {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.introduction {
    padding: 6rem 2rem;
    background: var(--gradient-dark);
    position: relative;
}

.introduction .intro-content {
    text-align: center;
    margin-bottom: 4rem;
}

.introduction .intro-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
}

.introduction .intro-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

/* 特性区域样式 */
.features {
    padding: 6rem 2rem;
    background: white;
    position: relative;
}

.features-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.features-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features-intro p {
    font-size: 1.3rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.2);
    border-color: var(--secondary-color);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-card p {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-desc {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.9;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(135, 206, 235, 0.2);
}

/* 统计数据样式 */
.stats {
    padding: 10rem 2rem;
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-content {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
}

.stats-intro p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    border: 2px solid rgba(135, 206, 235, 0.3);
    transition: var(--transition);
    animation: fadeIn 1s ease-out;
    backdrop-filter: blur(5px);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.4);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.2);
}

.stat-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: float 4s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(135, 206, 235, 0.5);
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.stat-item p {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 页脚样式 */
footer {
    background: var(--secondary-color);
    color: white;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23FFFFFF" fill-opacity="0.05" d="M0 0h100v100H0z"/></svg>');
    opacity: 0.5;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.social-links a:hover {
    animation: pulse 1s infinite;
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 动画效果 */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(135, 206, 235, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(135, 206, 235, 0.8);
    }

    100% {
        box-shadow: 0 0 5px rgba(135, 206, 235, 0.5);
    }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .slider-controls {
        bottom: 30px;
    }

    .slider-controls button {
        width: 40px;
        height: 40px;
    }

    .slider-indicators {
        bottom: 20px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    /*.nav-links {*/
    /*    display: none;*/
    /*}*/

    .features {
        padding: 4rem 1rem;
    }

    .features-intro h2 {
        font-size: 2.2rem;
    }

    .features-intro p {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-card h3 {
        font-size: 1.6rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .feature-desc {
        font-size: 0.95rem;
    }

    .stats {
        padding: 4rem 1rem;
    }

    .stats-intro h2 {
        font-size: 2.2rem;
    }

    .stats-intro p {
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 2rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 1.1rem;
    }


    .showcase-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .nav-links a.active {
        background: white;
        color: var(--primary-color);
        padding: 0.5rem 1rem;
        border-radius: 20px;
    }

    .nav-links a.active::after {
        display: none;
    }
}

/* 按钮样式 */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-evenly;
}

.primary-btn,
.secondary-btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
    animation: glow 2s infinite;
}

.primary-btn:hover {
    animation: pulse 1s infinite;
    background: var(--gradient-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(135, 206, 235, 0.4);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background: rgba(135, 206, 235, 0.1);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* 发光效果 */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(135, 206, 235, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(135, 206, 235, 0.8);
    }

    100% {
        box-shadow: 0 0 5px rgba(135, 206, 235, 0.5);
    }
}

/* 动画效果增强 */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.feature-card:hover {
    animation: float 3s ease-in-out infinite;
}

/* 短视频展示区域样式 */
.video-showcase {
    padding: 10rem 2rem;
    background: white;
    position: relative;
}

.video-showcase-content {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 10px;
    z-index: 5000;
    display: none;
}

.video-showcase-content video {
    position: absolute;
    top: 5%;
    left: 37%;
    z-index: 3000;
}

.video-showcase-content .video-cancel {
    position: relative;
    top: 5%;
    left: 90%;
    width: 40px;
    height: 40px;
    z-index: 3001;
}

.video-showcase-content .video-cancel img {
    width: 100%;
    height: 100%;
    cursor: pointer;
}


.video-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.video-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.video-intro p {
    font-size: 1.3rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.1);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.2);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.video-card:hover .play-button {
    opacity: 1;
}

.play-button i {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
    background: white;
}

.video-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.video-info p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .video-showcase-content video {
        width: 60% !important;
        top: 15% !important;
        left: 20% !important;
    }

    .video-showcase {
        padding: 4rem 1rem;
    }

    .video-intro h2 {
        font-size: 2.2rem;
    }

    .video-intro p {
        font-size: 1.1rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .video-info h3 {
        font-size: 1.3rem;
    }

    .video-info p {
        font-size: 0.95rem;
    }
}

/* 平滑滚动行为 */
html {
    scroll-behavior: smooth;
}

/* 汉堡菜单样式 */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px 0;
    transition: var(--transition);
}

/* 移动端导航样式 */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.85);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: var(--transition);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* 导航链接样式 */
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        text-align: center;
        color: white;
    }

    .nav-links a:hover {
        background: rgba(32, 165, 58, 0.8);
    }

    .nav-links a.active {
        background: var(--accent-color);
        color: white;
        border-radius: 5px;
    }

    /* 确保导航容器正确显示 */
    .nav-container {
        padding: 0.5rem 1rem;
    }

    /* 调整logo大小 */
    .logo {
        width: 70px;
        transform: scale(1.2);
        position: relative;
        z-index: 1001;
    }
}