/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    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-control {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.music-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1); /* 将图标变为白色 */
}

.music-icon.rotating {
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.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);
}

/* 底部标语 */
.bottom-slogan-section {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.bottom-slogan-image {
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #C6AA76;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 50px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-controls {
        gap: 15px;
    }
    
    .music-control {
        gap: 6px;
    }
    
    .music-icon {
        width: 18px;
        height: 18px;
        filter: brightness(0) invert(1); /* 确保手机端图标也是白色 */
    }
    
    .music-toggle {
        font-size: 13px;
    }
}

/* 集团简介页面样式 */

/* 主内容区域 */
.about-main {
    padding-top: 80px;
    padding-bottom: 50px;
    min-height: calc(100vh - 150px);
    display: flex;
    justify-content: center;
}

.about-container {
    width: 100%;
    max-width: 1560px;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    background-color: #f0f0f0;
}

/* 上半部分：两张图片 */
.about-images-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0 auto 60px auto;
    max-width: 1400px;
    width: 100%;
}

.about-image-container {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-container img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.about-image-container img:hover {
    filter: grayscale(70%);
}

/* 下半部分：文字内容 */
.about-content {
    text-align: left;
    max-width: 1400px;
    margin: 0 auto;
}

.about-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 30px;
}

.about-title {
    font-size: 36px;
    font-weight: bold;
    color: #C6AA76;
    margin: 0;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 16px;
    color: #C6AA76;
    margin: 0;
    font-weight: 300;
    letter-spacing: 2px;
}

.intro-text {
    margin-bottom: 30px;
}

.intro-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #777;
    margin-bottom: 15px;
}

.section-block {
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.section-block:last-child {
    border-bottom: none;
}

.section-block h3 {
    font-size: 18px;
    color: #777;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-block p {
    font-size: 14px;
    line-height: 1.8;
    color: #777;
    margin-bottom: 10px;
}

/* 冒号前的问题标签样式 */
.question-label {
    color: #666;
    font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .about-images-section {
        margin: 0 auto 40px auto;
        max-width: 900px;
    }
    
    .about-content {
        max-width: 900px;
    }
    
    .about-image-container img {
        height: 350px;
    }
    
    .about-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-images-section {
        grid-template-columns: 1fr;
        margin: 0 auto 30px auto;
        max-width: 600px;
    }
    
    .about-content {
        max-width: 600px;
        padding: 20px;
    }
    
    .about-image-container img {
        height: 300px;
    }
    
    .about-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-main {
        padding-top: 100px;
    }
    
    .section-block h3 {
        font-size: 16px;
    }
    
    .intro-text p,
    .section-block p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .about-images-section {
        max-width: 90%;
    }
    
    .about-content {
        max-width: 90%;
        padding: 15px;
    }
    
    .about-image-container img {
        height: 250px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-subtitle {
        font-size: 14px;
    }
    
    .intro-text p,
    .section-block p {
        font-size: 12px;
    }
} 