/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

/* 容器 */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部导航栏 */
.navbar {
    background: #C6AA76 !important;
    padding: 0;
    position: relative;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 30px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
}

.nav-menu li {
    position: relative;
    margin: 0 15px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* 下拉菜单 */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #C6AA76;
}

/* 导航控制 */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.music-toggle {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.music-toggle:hover,
.music-control:hover .music-toggle {
    color: #f0f0f0;
}

.music-control:hover .music-icon {
    filter: brightness(0) invert(0.9); /* hover时稍微变暗 */
}

.language-switch {
    color: #fff;
    font-size: 14px;
}

.language-switch .active {
    font-weight: bold;
}

/* 汉堡菜单 */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* 激活状态 */
.dropdown.active .nav-link,
.nav-menu .active .nav-link {
    background-color: rgba(255, 255, 255, 0.2);
}

/* 创新页面基础样式 */
.innovation-page {
    background-color: #ffffff;
}

/* 主要内容区域 */
.innovation-main {
    padding-top: 80px;
    min-height: calc(100vh - 150px);
}

/* 内容区域 */
.content-section {
    background-color: #ffffff;
}

.content-layout {
    max-width: 1560px;
    margin: 0 auto;
    background-color: #f0f0f0;
    padding: 60px 40px 40px 40px;
    border-radius: 8px;
}

/* 顶部英雄图片区域 */
.hero-image-section {
    width: 100%;
    max-width: 1400px;
    height: 600px;
    overflow: hidden;
    position: relative;
    margin: 0 auto 50px auto;
}

.content-and-menu {
    width: 100%;
    margin: 0 auto;
}

.hero-image-container {
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.main-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* 标题区域 */
.title-section {
    margin-bottom: 50px;
}

.title-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
}

.page-title {
    font-size: 42px;
    font-weight: bold;
    color: #C6AA76;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: 18px;
    color: #C6AA76;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 0;
    margin-left: 20px;
}

/* 章节标题 */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 22px;
    font-weight: bold;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.8;
    letter-spacing: 3px;
}

.section-description {
    font-size: 16px;
    color: #999;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

/* 能力块 */
.capability-block {
    margin-bottom: 50px;
}

.block-title {
    font-size: 22px;
    font-weight: bold;
    color: #C6AA76;
    margin: 0 0 20px 0;
    line-height: 1.8;
    letter-spacing: 3px;
    display: inline-block;
}

/* 特性列表 */
.feature-list {
    margin-left: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    line-height: 1.8;
}

.bullet {
    color: #C6AA76;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    font-size: 16px;
    color: #aaa;
    flex: 1;
    line-height: 1.8;
}

.feature-text strong {
    color: #777;
    font-weight: 600;
}

/* 功能内容样式 */
.feature-content {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #999;
    line-height: 1.8;
}

.feature-content p {
    margin-bottom: 12px;
}

/* 结语 */
.conclusion {
    margin-top: 50px;
}

.conclusion p {
    font-size: 16px;
    color: #999;
    line-height: 1.8;
    margin: 0;
}

/* 底部标语区域 */
.bottom-slogan-section {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.bottom-slogan-image {
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .content-layout {
        max-width: 100%;
        padding: 30px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-controls {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .innovation-main {
        padding-top: 70px;
    }
    
    .hero-image-section {
        height: 250px;
        max-width: 100%;
    }
    
    .content-layout {
        padding: 20px;
    }
    
    .title-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
        margin-left: 0;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .block-title {
        font-size: 20px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .conclusion p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .content-layout {
        padding: 15px;
    }
    
    .hero-image-section {
        height: 200px;
    }
    
    .title-row {
        gap: 5px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .block-title {
        font-size: 18px;
    }
    
    .feature-text {
        font-size: 13px;
    }
    
    .section-description {
        font-size: 13px;
    }
    
    .conclusion p {
        font-size: 13px;
    }
    
    .feature-content {
        margin-left: 15px;
        font-size: 14px;
    }
} 