/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Inter字体定义 */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter/Inter-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/inter/Inter-Medium.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/inter/Inter-SemiBold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inter/Inter-Bold.woff2') format('woff2');
    font-display: swap;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

/* 容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏样式 */
.navbar {
    background-color: #000000;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.navbar .logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #b8860b;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #b8860b;
}

.language-switcher {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.language-btn {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    border-color: #b8860b;
    color: #b8860b;
}

.language-btn.active {
    background-color: #b8860b;
    border-color: #b8860b;
    color: #ffffff;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* 英雄区域样式 */
.hero {
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

/* 轮播容器样式 */
.hero-slider {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1;
    border-radius: 37px;
    overflow: hidden;
}

/* 轮播图片样式 */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateX(100%);
    transition: transform 1s ease-in-out;
    border-radius: 37px;
}

/* 轮播图片叠加渐变 */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    border-radius: 37px;
    z-index: 2;
}

/* 激活的轮播图片 */
.hero-slide.active {
    transform: translateX(0);
}

/* 离开视口的轮播图片 */
.hero-slide.prev {
    transform: translateX(-100%);
}

/* 轮播指示器 */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background-color: #fff;
    transform: scale(1.2);
}

.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    font-size: 36px;
    font-weight: 500;
    color: #e8d5a7;
    line-height: 1.4;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 101;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-logo,
.hero h1,
.hero h2,
.hero-subtitle,
.hero p {
    display: none;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: #b8860b;
    color: #fff;
}

.btn-primary:hover {
    background-color: #8b6914;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #b8860b;
    border: 2px solid #b8860b;
}

.btn-outline:hover {
    background-color: #b8860b;
    color: #fff;
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* 使命区块样式 */
.mission-section {
    padding: 60px 0;
    background-color: #0a0a0a;
    position: relative;
}

.mission-content {
    margin: 0 auto;
    text-align: center;
    max-width: 900px;
}

.mission-text {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.8;
    font-weight: 400;
}

/* 关于我们区块样式 */
.about-section {
    padding: 60px 0 80px 0;
    background-color: #0a0a0a;
}

.about-achievements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.achievement-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 37px;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.achievement-number {
    font-size: 48px;
    font-weight: 700;
    color: #b8860b;
    line-height: 1;
    margin-bottom: 8px;
}

.achievement-details {
    width: 100%;
}

.achievement-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.achievement-source {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.btn-detail {
    display: inline-block;
    padding: 10px 28px;
    background-color: #b8860b;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: 1px solid #b8860b;
    white-space: nowrap;
    margin-top: 12px;
}

.btn-detail:hover {
    background-color: #d4af37;
    border-color: #d4af37;
}

/* 图片展示区域样式 */
.gallery-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.gallery-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* 左侧图片列 */
.gallery-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    flex: 1;
}

/* 右侧图片列 */
.gallery-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    flex: 1;
}

/* 中间文字区域 */
.gallery-center {
    flex: 0 0 35%;
    max-width: 400px;
    text-align: center;
    padding: 40px 20px;
}

.gallery-center h3 {
    font-size: 28px;
    font-weight: 700;
    color: #e8d5a7;
    margin-bottom: 20px;
}

.gallery-center p {
    font-size: 18px;
    color: #e8d5a7;
    margin: 12px 0;
    line-height: 1.6;
}

/* 图片样式 */
.gallery-item {
    overflow: hidden;
    border-radius: 37px;
    background-color: rgba(255, 255, 255, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* 左侧图片错落布局 */
.gallery-left .item-1 {
    grid-column: span 2;
    height: 200px;
}

.gallery-left .item-2 {
    height: 160px;
}

.gallery-left .item-3 {
    height: 160px;
}

.gallery-left .item-4 {
    height: 180px;
}

.gallery-left .item-5 {
    height: 180px;
}

.gallery-left .item-6 {
    grid-column: span 2;
    height: 220px;
}

/* 右侧图片错落布局 */
.gallery-right .item-7 {
    height: 180px;
}

.gallery-right .item-8 {
    height: 180px;
}

.gallery-right .item-9 {
    grid-column: span 2;
    height: 200px;
}

.gallery-right .item-10 {
    grid-column: span 2;
    height: 220px;
}

.gallery-right .item-11 {
    height: 160px;
}

.gallery-right .item-12 {
    height: 160px;
}

/* 章节标题样式 */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

/* 核心优势样式 */
.advantages {
    padding: 80px 0;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

/* 波浪容器样式 */
.waves-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.2) 0%, rgba(45, 45, 45, 0.1) 100%);
    z-index: 0;
}

.advantages .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-en {
    font-size: 18px;
    font-weight: 500;
    color: #b8860b;
}

.title-zh {
    font-size: 36px;
    font-weight: 700;
    color: #DAC5A6;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    border-color: rgba(184, 134, 11, 0.3);
}

.advantage-number {
    font-size: 14px;
    font-weight: 500;
    color: #b8860b;
    background-color: #2d2d2d;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-card h3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.card-title-zh {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

.card-title-en {
    font-size: 14px;
    font-weight: 500;
    color: #b8860b;
    text-transform: capitalize;
}

.divider {
    height: 2px;
    width: 40px;
    background-color: #b8860b;
    margin: 0 auto 20px;
}

/* 四大服务板块样式 */
.services-section {
    padding: 60px 0 80px 0;
    background-color: #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: rgba(184, 134, 11, 0.06);
    padding: 32px 28px;
    border-radius: 37px;
    border: 1px solid rgba(184, 134, 11, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 134, 11, 0.3);
    background-color: rgba(184, 134, 11, 0.1);
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.service-list li {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 10px;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-top: 20px;
    align-self: flex-end;
}

.advantage-card p {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 16px;
}

.advantage-icon {
    margin-bottom: 20px;
    color: #b8860b;
}

.advantage-card .advantage-icon {
    display: none;
}

/* 旗舰产品样式 */
.flagship-product {
    padding: 80px 0;
    background-color: #fff;
}

.flagship-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.flagship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.flagship-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #b8860b 0%, #d4af37 100%);
}

.flagship-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.flagship-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
    max-width: 100%;
}

.fund-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.detail-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.detail-card:hover {
    background-color: #ffffff;
    border-color: #b8860b;
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.1);
}

.detail-card-full {
    grid-column: 1 / -1;
}

.detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: rgba(184, 134, 11, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-content {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.detail-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.flagship-footer {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.flagship-footer .btn {
    padding: 12px 36px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .fund-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .flagship-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .flagship-header h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .flagship-card {
        padding: 30px 24px;
    }
    
    .flagship-header h3 {
        font-size: 20px;
    }
    
    .detail-card {
        padding: 20px;
    }
    
    .detail-icon {
        width: 40px;
        height: 40px;
    }
    
    .detail-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .flagship-icon {
        width: 64px;
        height: 64px;
    }
    
    .flagship-icon svg {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .flagship-product {
        padding: 60px 0;
    }
    
    .flagship-card {
        padding: 24px 20px;
    }
    
    .flagship-header h3 {
        font-size: 18px;
    }
    
    .detail-card {
        padding: 16px;
        gap: 12px;
    }
    
    .detail-label {
        font-size: 12px;
    }
    
    .detail-value {
        font-size: 14px;
    }
}

.product-comparison {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.product-comparison h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table th {
    background-color: #1a1a1a;
    color: #b8860b;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    color: #4a5568;
    font-size: 14px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* SPC架构优势样式 */
.spc-advantages {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.spc-advantages .section-title {
    color: #fff;
}

.spc-advantages .title-zh {
    color: #b8860b;
}

.spc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.spc-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.spc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.spc-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #b8860b;
    margin-bottom: 8px;
}

.spc-card p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.spc-card .divider {
    background-color: #b8860b;
    margin: 20px auto;
}

/* 投资策略样式 */
.investment-strategies {
    padding: 80px 0;
    background-color: #fff;
}

.strategy-section {
    margin-bottom: 80px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.strategy-section:last-child {
    margin-bottom: 0;
}

.strategy-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #b8860b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.strategy-button {
    display: flex;
    align-items: center;
}

.btn-view-performance {
    background-color: #b8860b;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-view-performance:hover {
    background-color: #8b6914;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.strategy-title h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.strategy-title p {
    font-size: 16px;
    color: #b8860b;
    font-weight: 500;
}

.strategy-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
}

.strategy-description p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 16px;
}

.strategy-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.chart-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.chart-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.chart-placeholder {
    background-color: #f0f0f0;
    height: 250px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.strategy-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    grid-column: 1 / -1;
}

.feature-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 案例展示样式 */
.case-showcase {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.case-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.case-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.case-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.case-info h4 {
    font-size: 24px;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 5px;
}

.case-english-name {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    margin-bottom: 20px;
}

.case-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.case-details p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 16px;
}

.case-details strong {
    color: #b8860b;
    font-weight: 600;
}

.case-chart-container {
    margin-top: 30px;
}

/* 基金产品预览样式 */
.products-preview {
    padding: 80px 0;
    background-color: #000000;
}

/* 开曼SPC基金总体说明样式 */
.spc-overview {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 合作伙伴样式 */
.partners {
    padding: 80px 0;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, rgba(45, 45, 45, 0.1) 100%);
    z-index: 0;
}

.partners .container {
    position: relative;
    z-index: 1;
}

/* 轮播容器样式 */
.partners-slider-container {
    position: relative;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* 轮播样式 */
.partners-slider {
    display: flex;
    gap: 30px;
}

/* 轮播项样式 */
.partner-slide {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 鼠标悬停时暂停动画 */
.partners-slider-container:hover .partners-slider {
    animation-play-state: paused;
}

.partner-slide:hover {
    background-color: #ffffff;
    border-color: rgba(184, 134, 11, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Logo样式 */
.partner-logo {
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}

/* Logo图片样式 */
.partner-logo img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: none;
    transform: scale(1.05);
}

/* 轮播控制按钮样式 */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(184, 134, 11, 0.8);
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: #b8860b;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: -20px;
}

.slider-btn-next {
    right: -20px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .partner-slide {
        flex: 0 0 180px;
        padding: 25px 15px;
    }
    
    .partner-logo {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .partner-slide {
        flex: 0 0 150px;
        padding: 20px 10px;
        gap: 20px;
    }
    
    .partner-logo {
        height: 40px;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .slider-btn-prev {
        left: -15px;
    }
    
    .slider-btn-next {
        right: -15px;
    }
}

.spc-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.spc-description {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

/* SPC架构优势网格样式 */
.spc-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.spc-advantage-item {
    background-color: #2d2d2d;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.spc-advantage-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
    border-color: rgba(184, 134, 11, 0.3);
}

.spc-advantage-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #b8860b;
    margin-bottom: 10px;
}

.spc-advantage-item p {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
}

/* 子基金网格样式 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    border-color: rgba(184, 134, 11, 0.3);
}

.product-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.fund-subtitle {
    font-size: 14px;
    color: #b8860b;
    font-weight: 500;
    margin-bottom: 15px;
}

.fund-meta {
    font-size: 12px;
    color: #e0e0e0;
    margin-bottom: 15px;
    font-weight: 500;
    background-color: #2d2d2d;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fund-description {
    color: #e0e0e0;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 15px;
}

.product-card .btn {
    margin-top: auto;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .flagship-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .strategy-content {
        grid-template-columns: 1fr;
    }
    
    .strategy-charts,
    .strategy-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .strategy-section {
        padding: 20px;
    }
    
    .comparison-table {
        font-size: 12px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
}

@media (max-width: 1024px) {
    .hero-text {
        font-size: 28px;
        color: #e8d5a7;
    }
    
    .hero-overlay-content {
        padding: 0 30px;
    }
    
    .about-achievements {
        gap: 30px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .achievement-card {
        padding: 35px 40px;
    }
    
    /* 图片展示区域响应式 */
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-wrapper {
        gap: 30px;
    }
    
    .gallery-center {
        flex: 0 0 40%;
        padding: 30px 15px;
    }
    
    .gallery-center h3 {
        font-size: 24px;
    }
    
    .gallery-center p {
        font-size: 16px;
    }
    
    .gallery-left .item-1,
    .gallery-right .item-9 {
        height: 170px;
    }
    
    .gallery-left .item-2,
    .gallery-left .item-3,
    .gallery-right .item-11,
    .gallery-right .item-12 {
        height: 140px;
    }
    
    .gallery-left .item-4,
    .gallery-left .item-5,
    .gallery-right .item-7,
    .gallery-right .item-8 {
        height: 150px;
    }
    
    .gallery-left .item-6,
    .gallery-right .item-10 {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .hero-text {
        font-size: 22px;
        color: #e8d5a7;
    }
    
    .hero-overlay-content {
        padding: 0 20px;
    }
    
    .about-achievements {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .achievement-card {
        padding: 30px 35px;
    }
    
    .achievement-number {
        font-size: 40px;
    }
    
    /* 图片展示区域移动端优化 */
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-wrapper {
        flex-direction: column;
    }
    
    .gallery-left,
    .gallery-right {
        width: 100%;
        gap: 15px;
    }
    
    .gallery-center {
        flex: none;
        width: 100%;
        max-width: none;
        padding: 40px 20px;
        order: -1;
    }
    
    .gallery-center h3 {
        font-size: 22px;
    }
    
    .gallery-center p {
        font-size: 16px;
    }
    
    .gallery-left .item-1,
    .gallery-right .item-9 {
        height: 160px;
    }
    
    .gallery-left .item-2,
    .gallery-left .item-3,
    .gallery-right .item-11,
    .gallery-right .item-12 {
        height: 130px;
    }
    
    .gallery-left .item-4,
    .gallery-left .item-5,
    .gallery-right .item-7,
    .gallery-right .item-8 {
        height: 140px;
    }
    
    .gallery-left .item-6,
    .gallery-right .item-10 {
        height: 170px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-text {
        font-size: 18px;
        color: #e8d5a7;
    }
    
    .hero-overlay-content {
        padding: 0 15px;
    }
    
    .about-section {
        padding: 50px 0 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 24px 20px;
        border-radius: 24px;
    }
    
    .achievement-card {
        padding: 25px 30px;
    }
    
    .achievement-number {
        font-size: 36px;
    }
    
    /* 图片展示区域小屏优化 */
    .gallery-center {
        padding: 30px 15px;
    }
    
    .gallery-center h3 {
        font-size: 20px;
    }
    
    .gallery-center p {
        font-size: 15px;
    }
    
    .gallery-left,
    .gallery-right {
        grid-template-columns: 1fr;
    }
    
    .gallery-left .item-1,
    .gallery-left .item-6,
    .gallery-right .item-9,
    .gallery-right .item-10 {
        grid-column: span 1;
    }
    
    .gallery-left .item-1,
    .gallery-right .item-9 {
        height: 180px;
    }
    
    .gallery-left .item-2,
    .gallery-left .item-3,
    .gallery-left .item-4,
    .gallery-left .item-5,
    .gallery-right .item-7,
    .gallery-right .item-8,
    .gallery-right .item-11,
    .gallery-right .item-12 {
        height: 180px;
    }
    
    .gallery-left .item-6,
    .gallery-right .item-10 {
        height: 200px;
    }
    
    .mission-section {
        padding: 40px 0;
    }
    
    .flagship-product,
    .spc-advantages,
    .investment-strategies {
        padding: 60px 0;
    }
    
    .spc-grid {
        grid-template-columns: 1fr;
    }
}

/* 投资案例样式 */
.cases {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cases .section-title {
    text-align: left;
}

/* 瀑布流布局 */
.cases-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: minmax(100px, auto);
    gap: 30px;
    margin-top: 40px;
}

.case-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 不同尺寸的案例卡片 */
.case-large {
    grid-column: span 2;
    grid-row: span 2;
}

.case-medium {
    grid-column: span 1;
    grid-row: span 2;
}

.case-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* 案例横幅 */
.case-banner {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, rgba(240, 240, 240, 0.8) 0%, rgba(220, 220, 220, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.store-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-size: 24px;
    font-weight: 500;
    background-image: linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 75%, #f0f0f0 75%, #f0f0f0),
                      linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 75%, #f0f0f0 75%, #f0f0f0);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.case-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #1a1a1a;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.case-logo h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #b8860b;
}

.case-logo p {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* 案例内容 */
.case-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.case-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case-info p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 16px;
}

.case-info strong {
    color: #b8860b;
    font-weight: 600;
}

/* 案例图表 */
.case-chart {
    background-color: #fff;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.case-chart h4 {
    display: none;
}

.chart-container {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
}

.chart-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}



.hk-class {
    text-align: center;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 15px;
}

/* 图表区域 */
.chart-area {
    position: relative;
    height: 200px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: visible;
}

/* 调整价格标签容器的溢出设置 */
.price-labels-top {
    overflow: visible !important;
}

/* 网格线 */
.grid-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
}

.grid-line {
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}

/* 主图表区域 */
.chart-main {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* 图表填充和折线已移至SVG实现 */
.chart-main svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}



/* 更新价格标签和日期标签样式 */
.price-labels-top {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    font-size: 12px !important;
    color: #333 !important;
    font-weight: 500 !important;
    padding: 0 5% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    z-index: 10 !important;
}

.price-labels-top span {
    position: absolute !important;
    transform: translateX(-50%) translateY(-20px) !important;
    white-space: nowrap !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.2s ease !important;
}

.price-labels-top span:hover {
    transform: translateX(-50%) translateY(-25px) scale(1.05) !important;
    background-color: #fff !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
}

/* 根据数据点位置调整每个价格标签的位置 */
.price-labels-top span:nth-child(1) {
    left: 6.67% !important;
    bottom: 0% !important;
} /* 买入: 24 */
.price-labels-top span:nth-child(2) {
    left: 13.33% !important;
    bottom: 25% !important;
} /* 6.26: 30 */
.price-labels-top span:nth-child(3) {
    left: 20% !important;
    bottom: 67% !important;
} /* 6.27: 40.15 */
.price-labels-top span:nth-child(4) {
    left: 26.67% !important;
    bottom: 80% !important;
} /* 7.03: 48.45 */
.price-labels-top span:nth-child(5) {
    left: 33.33% !important;
    bottom: 67% !important;
} /* 7.04: 40.00 */
.price-labels-top span:nth-child(6) {
    left: 40% !important;
    bottom: 59% !important;
} /* 7.07: 37.30 */
.price-labels-top span:nth-child(7) {
    left: 46.67% !important;
    bottom: 55% !important;
} /* 7.08: 35.80 */
.price-labels-top span:nth-child(8) {
    left: 53.33% !important;
    bottom: 61% !important;
} /* 7.09: 37.90 */
.price-labels-top span:nth-child(9) {
    left: 60% !important;
    bottom: 61% !important;
} /* 7.1: 38.00 */
.price-labels-top span:nth-child(10) {
    left: 66.67% !important;
    bottom: 60% !important;
} /* 7.11: 37.40 */
.price-labels-top span:nth-child(11) {
    left: 73.33% !important;
    bottom: 48% !important;
} /* 7.14: 34.60 */
.price-labels-top span:nth-child(12) {
    left: 80% !important;
    bottom: 46% !important;
} /* 7.15: 33.70 */
.price-labels-top span:nth-child(13) {
    left: 86.67% !important;
    bottom: 61% !important;
} /* 7.16: 38.10 */
.price-labels-top span:nth-child(14) {
    left: 93.33% !important;
    bottom: 62% !important;
} /* 7.17: 38.65 */
.price-labels-top span:nth-child(15) {
    left: 97.5% !important;
    bottom: 55% !important;
} /* 7.18: 41.05 */

.date-labels-bottom {
    display: flex !important;
    justify-content: space-between !important;
    font-size: 12px !important;
    color: #666 !important;
    margin-top: 15px !important;
    padding: 0 2% !important;
    font-weight: 500 !important;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .price-labels-top,
    .date-labels-bottom {
        font-size: 10px;
    }
    
    .chart-area {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .chart-container {
        padding: 15px;
    }
    
    .chart-title {
        font-size: 16px;
    }
    
    .price-labels-top,
    .date-labels-bottom {
        font-size: 8px;
    }
    
    .hk-class {
        font-size: 12px;
    }
    
    .chart-area {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .chart-container {
        padding: 10px;
    }
    
    .chart-title {
        font-size: 14px;
    }
    
    .price-labels-top,
    .date-labels-bottom {
        font-size: 6px;
    }
    
    .hk-class {
        font-size: 10px;
    }
    
    .chart-area {
        height: 120px;
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .case-large,
    .case-medium,
    .case-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .case-banner {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .cases {
        padding: 60px 0;
    }
    
    .case-content {
        padding: 20px;
        gap: 20px;
    }
    
    .case-logo h3 {
        font-size: 24px;
    }
    
    .case-info p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cases-masonry {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-banner {
        height: 180px;
    }
    
    .case-logo {
        padding: 15px 30px;
    }
    
    .case-logo h3 {
        font-size: 20px;
    }
    
    .case-logo p {
        font-size: 12px;
    }
}

/* 页面标题样式 */
.page-header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #b8860b;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    color: #f0f0f0;
}

/* 企业简介样式 */
.company-intro {
    padding: 80px 0;
    background-color: #000000;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* 公司基本信息样式 */
.company-basic-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 12px;
}

.info-item {
    text-align: center;
}

.info-label {
    font-size: 14px;
    color: #b8860b;
    margin-bottom: 10px;
    font-weight: 500;
}

.info-value {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

/* 公司描述样式 */
.company-description {
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

.company-description h3 {
    font-size: 20px;
    font-weight: 600;
    color: #b8860b;
    margin-bottom: 15px;
}

.company-description p {
    color: #ffffff;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

.company-description p:last-child {
    margin-bottom: 0;
}

/* 监管资质样式 */
.regulatory-info {
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

.regulatory-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #b8860b;
    margin-bottom: 15px;
}

.regulatory-info p,
.regulatory-info span {
    color: #ffffff;
    line-height: 1.8;
    font-size: 16px;
}

/* 牌照图片样式 */
.license-placeholder {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.license-image {
    max-width: 100%;
    height: auto;
    max-height: none;
    border-radius: 0;
    object-fit: cover;
}

/* 调整图片显示 */
.intro-image {
    display: flex;
    align-items: start;
}

/* 企业文化样式 */
.culture {
    padding: 80px 0;
    background-color: #000000;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.culture-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    border-color: rgba(184, 134, 11, 0.3);
}

.culture-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #b8860b;
    margin-bottom: 5px;
}

.culture-card .culture-subtitle {
    font-size: 14px;
    color: #b8860b;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0.8;
}

.culture-card p:last-child {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 核心团队样式 */
.team {
    padding: 80px 0;
    background-color: transparent;
    color: #fff;
}

.team .section-title {
    color: #fff;
}

.team .title-zh {
    font-size: 72px;
    font-weight: 400;
    color: #DAC5A6;
}

.team .section-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px auto 0;
}

.team .container {
    max-width: 960px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.team-card {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.team-left {
    flex-shrink: 0;
}

.team-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-card:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(184, 134, 11, 0.3);
}

/* 团队弹出层样式 */
.team-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.team-modal.active {
    opacity: 1;
    visibility: visible;
}

.team-modal-content {
    background-color: #1a1a1a;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 12px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.team-modal.active .team-modal-content {
    transform: translateY(0);
}

.team-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #b8860b;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.team-modal-close:hover {
    color: #fff;
    transform: scale(1.1);
}

.team-modal-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-modal-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #b8860b;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.team-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-modal-name {
    font-size: 24px;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 5px;
}

.team-modal-chinese-name {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

.team-modal-position {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.team-modal-position-en {
    font-size: 16px;
    color: #b8860b;
    margin-bottom: 30px;
}

.team-modal-bio {
    text-align: left;
    margin-top: 20px;
    width: 100%;
}

.team-modal-bio ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #e0e0e0;
    line-height: 1.8;
}

.team-modal-bio li {
    margin-bottom: 10px;
    padding-right: 20px;
}

/* 团队头像样式 */
.team-avatar {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #2d2d2d;
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
    transform: scale(1.02);
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 团队信息样式 */
.team-name-zh {
    font-size: 36px;
    font-weight: 400;
    color: #e8d5a7;
    margin: 0 0 2px 0;
    text-align: left;
}

.team-name-en {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 5px 0;
    font-weight: 400;
    text-align: left;
}

.team-position {
    font-size: 22px;
    font-weight: 400;
    color: #e8d5a7;
    margin: 0 0 20px 0;
    text-align: left;
    line-height: 1.4;
}

.team-bio {
    margin-top: 10px;
}

.team-bio ul {
    list-style-type: disc;
    margin-left: 18px;
    padding: 0;
}

.team-bio li {
    color: #DAC5A6;
    font-size: 9px;
    margin-bottom: 8px;
    line-height: 1.8;
}

/* 我们的办公空间样式 */
.office-space {
    padding: 80px 0;
}

.office-space .container {
    max-width: 1200px;
}

.office-space .section-title {
    color: #fff;
}

.office-space .title-zh {
    font-size: 72px;
    font-weight: 400;
    color: #DAC5A6;
}

.office-space .section-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px auto 0;
}

/* 办公空间轮播容器 */
.office-slider-container {
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* 办公空间轮播 */
.office-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

/* 办公空间幻灯片 */
.office-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    transform: translateX(100%);
    transition: transform 1s ease-in-out;
}

/* 激活的幻灯片 */
.office-slide.active {
    transform: translateX(0);
}

/* 离开视口的幻灯片 */
.office-slide.prev {
    transform: translateX(-100%);
}

/* 办公空间图片 */
.office-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 办公空间轮播指示器 */
.office-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.office-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.office-indicator.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* 基金产品样式 */
.products {
    padding: 80px 0;
    background-color: #fff;
}

.product-section {
    margin-bottom: 80px;
}

.product-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 30px;
}

.product-info p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-info ul {
    color: #4a5568;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 20px;
}

.data-card {
    background-color: #f1f5f9;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.data-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.data-card ul {
    color: #4a5568;
    line-height: 1.6;
    margin-left: 20px;
}

/* 投资案例样式 */
.cases {
    padding: 80px 0;
    background-color: #fff;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-card {
    background-color: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.case-image .image-placeholder {
    height: 200px;
    border-radius: 0;
}

.case-content {
    padding: 25px;
}

.case-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.case-content p {
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* 业绩页面样式 */
.performance {
    padding: 80px 0;
    background-color: #fff;
}

.password-form {
    max-width: 500px;
    margin: 0 auto;
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.password-form h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8860b;
}

.error-message {
    color: #e53e3e;
    margin-top: 15px;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.performance-card {
    background-color: #f1f5f9;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.performance-card h4 {
    font-size: 16px;
    font-weight: 500;
    color: #718096;
    margin-bottom: 10px;
}

.performance-value {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.performance-section {
    margin-bottom: 60px;
}

.performance-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.chart-placeholder {
    background-color: #e2e8f0;
    height: 300px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-size: 18px;
    font-weight: 500;
}

/* 新闻中心样式 */
.news {
    padding: 80px 0;
    background-color: #fff;
}

.news-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
}

.news-categories {
    list-style: none;
}

.news-categories li {
    margin-bottom: 15px;
}

.news-categories a {
    display: block;
    padding: 12px 20px;
    background-color: #f1f5f9;
    color: #4a5568;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.news-categories a:hover,
.news-categories a.active {
    background-color: #b8860b;
    color: #fff;
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background-color: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: flex-start;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 新闻图片容器样式 */
.news-image-container {
    width: 120px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background-color: #f1f5f9;
}

/* 新闻图片样式 */
.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* 日期占位符样式 */
.news-image-container.date-placeholder {
    background-color: #b8860b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-date-display {
    text-align: center;
    color: #fff;
}

.date-year {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.date-month {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.date-day {
    font-size: 18px;
    font-weight: 600;
}

/* 新闻内容样式 */
.news-item-content {
    flex: 1;
}

.news-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.news-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.news-info h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-info h3 a:hover {
    color: #b8860b;
}

.news-info p {
    color: #4a5568;
    line-height: 1.8;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .news-content {
        grid-template-columns: 200px 1fr;
        gap: 40px;
    }
    
    .news-item {
        gap: 20px;
        padding: 20px;
    }
    
    .news-image-container {
        width: 100px;
        height: 75px;
    }
}

@media (max-width: 768px) {
    .news {
        padding: 60px 0;
    }
    
    .news-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .news-image-container {
        width: 100%;
        height: 200px;
    }
    
    .news-date {
        margin-bottom: 5px;
    }
    
    .news-info h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .news {
        padding: 40px 0;
    }
    
    .news-item {
        padding: 15px;
    }
    
    .news-image-container {
        height: 150px;
    }
    
    .news-info h3 {
        font-size: 16px;
    }
    
    .news-info p {
        font-size: 14px;
    }
}

/* 联系我们样式 */
.contact {
    padding: 80px 0;
    background-color: #000000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #b8860b;
    margin-bottom: 15px;
}

.contact-item p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 16px;
}

.map-placeholder {
    background-color: #1a1a1a;
    height: 300px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8860b;
    font-size: 18px;
    font-weight: 500;
}

/* 地图容器样式 */
#mapContainer {
    width: 100%;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h2.section-title {
    color: #b8860b;
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 16px;
    background-color: #2d2d2d;
    color: #ffffff;
    transition: border-color 0.3s ease;
    height: 48px;
}

.contact-form textarea {
    height: auto;
    min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #b8860b;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.form-message {
    margin-top: 15px;
    color: #38a169;
    font-weight: 500;
    text-align: center;
}

/* 量子研报页面样式 */
/* 研报页面标题样式 */
.reports-intro .section-title,
.reports-categories .section-title,
.latest-reports .section-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 50px;
}

.reports-intro .title-en,
.reports-categories .title-en,
.latest-reports .title-en {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #b8860b;
}

.reports-intro .title-zh,
.reports-categories .title-zh,
.latest-reports .title-zh {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* 研报介绍 */
.reports-intro {
    padding: 60px 0;
    background-color: #000000;
}

.reports-intro .intro-content {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
}

.reports-intro .intro-text {
    max-width: 1200px;
    margin: 0 auto;
}

.reports-intro .intro-text p {
    font-size: 20px;
    line-height: 2.2;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
    padding: 0 30px;
    font-weight: 500;
    opacity: 0.9;
}

.reports-intro .intro-text p:last-child {
    margin-bottom: 0;
}

/* 研报分类 */


/* 最新研报 */
.latest-reports {
    padding: 60px 0;
    background-color: #000000;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.report-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(184, 134, 11, 0.3);
}

.report-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #b8860b;
}

.report-category {
    background-color: rgba(184, 134, 11, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.report-date {
    color: rgba(184, 134, 11, 0.8);
}

.report-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.report-info p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.report-info .btn {
    margin-top: auto;
}

/* 研报分类按钮样式 */
.report-categories {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: flex-start;
}

.report-category-btn {
    padding: 10px 20px;
    border: 1px solid #b8860b;
    border-radius: 6px;
    background-color: transparent;
    color: #b8860b;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.report-category-btn:hover {
    background-color: #b8860b;
    color: #fff;
    transform: translateY(-2px);
}

.report-category-btn.active {
    background-color: #b8860b;
    color: #fff;
}

/* 分页控件样式 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.pagination-list {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.pagination-item {
    display: flex;
    align-items: center;
}

.pagination-link {
    display: block;
    padding: 10px 15px;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 6px;
    color: #b8860b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination-link:hover {
    background-color: #b8860b;
    color: #fff;
    transform: translateY(-2px);
}

.pagination-link.active {
    background-color: #b8860b;
    color: #fff;
    border-color: #b8860b;
}

.pagination-ellipsis {
    padding: 10px 5px;
    color: #b8860b;
    font-weight: 500;
}

/* 订阅研报样式 */
.subscribe-reports {
    padding: 80px 0;
    background-color: #1a1a1a;
    margin-top: 50px;
}

.subscribe-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 20px;
}

.subscribe-content p {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-subscribe {
    font-size: 18px;
    padding: 12px 30px;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .pagination-list {
        gap: 5px;
    }
    
    .pagination-link {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .subscribe-content h3 {
        font-size: 24px;
    }
    
    .subscribe-content p {
        font-size: 16px;
    }
    
    .btn-subscribe {
        font-size: 16px;
        padding: 10px 25px;
    }
}

/* 页脚样式 */
.footer {
    background-color: #000000;
    color: #fff;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #b8860b;
}

.footer-info p {
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #b8860b;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #b8860b;
}

.footer-contact p {
    color: #cbd5e0;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

.footer-bottom a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #cbd5e0;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .intro-content,
    .product-content,
    .news-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .news-sidebar {
        order: 2;
    }
    
    .news-list {
        order: 1;
    }
}

@media (max-width: 1024px) {
    .team-card {
        border-left: none;
        border-top: 3px solid #b8860b;
    }
    
    .team-bio {
        margin-left: 20px;
        text-align: left;
    }
    
    .company-basic-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000000;
        padding: 20px;
        gap: 0;
        z-index: 999;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }
    
    .mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
        padding: 5px;
        position: relative;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .navbar .container {
        position: relative;
    }

    .navbar {
        overflow: visible;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .advantages-grid,
    .culture-grid,
    .team-grid,
    .products-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .news-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .news-date {
        width: 100%;
    }
    
    /* 公司简介响应式 */
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .company-basic-info {
        padding: 20px;
    }
    
    .regulatory-info {
        padding: 20px;
    }
    
    /* 团队卡片响应式 */
    .team-card {
        padding: 20px;
    }
    
    .team-avatar {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .company-intro,
    .culture,
    .team,
    .products,
    .cases,
    .performance,
    .news,
    .contact {
        padding: 60px 0;
    }
}

/* 研报详情页样式 */
.report-detail {
    padding: 80px 0;
    background-color: #000000;
}

.report-content {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.report-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #b8860b;
}

.report-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.report-body {
    color: #e0e0e0;
    line-height: 1.8;
}

.report-body h3 {
    font-size: 22px;
    font-weight: 600;
    color: #b8860b;
    margin-top: 30px;
    margin-bottom: 15px;
}

.report-body p {
    margin-bottom: 20px;
}

/* 免责声明弹窗样式 - 深色主题风格 */
.modal,
.disclaimer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modal.show,
.disclaimer-modal.show {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.modal::before,
.disclaimer-modal::before,
.disclaimer-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    animation: fadeIn 0.3s ease-out;
    z-index: 10001;
}

.disclaimer-content {
    position: relative;
    background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
    border: 1px solid rgba(232, 213, 167, 0.2);
    border-radius: 37px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(184, 134, 11, 0.08);
    width: 90%;
    max-width: 850px;
    max-height: 85vh;
    overflow: hidden;
    animation: disclaimerFadeIn 0.4s ease-out;
    z-index: 10001;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes disclaimerFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.disclaimer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px 24px;
    border-bottom: 1px solid rgba(232, 213, 167, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.modal-content h2,
.disclaimer-content h2,
.disclaimer-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.disclaimer-content h2,
.disclaimer-header h2 {
    font-size: 26px;
    font-weight: 600;
    color: #DAC5A6;
    letter-spacing: -0.5px;
}

.modal-content .close {
    background: none;
    border: none;
    font-size: 32px;
    color: #666666;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10002;
}

.disclaimer-close {
    background: rgba(232, 213, 167, 0.08);
    border: 1px solid rgba(232, 213, 167, 0.15);
    font-size: 24px;
    color: rgba(218, 197, 166, 0.7);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10002;
    line-height: 1;
}

.modal-content .close:hover {
    background-color: rgba(184, 134, 11, 0.1);
    color: #b8860b;
    transform: scale(1.1);
}

.disclaimer-close:hover {
    background: rgba(184, 134, 11, 0.15);
    border-color: rgba(184, 134, 11, 0.3);
    color: #b8860b;
    transform: rotate(90deg);
}

.disclaimer-body {
    padding: 32px 40px;
    max-height: 60vh;
    overflow-y: auto;
    line-height: 1.8;
    scroll-behavior: smooth;
}

.disclaimer-body::-webkit-scrollbar {
    width: 6px;
}

.disclaimer-body::-webkit-scrollbar-track {
    background: transparent;
}

.disclaimer-body::-webkit-scrollbar-thumb {
    background: rgba(218, 197, 166, 0.2);
    border-radius: 3px;
}

.disclaimer-body::-webkit-scrollbar-thumb:hover {
    background: rgba(218, 197, 166, 0.4);
}

.disclaimer-body p {
    margin-bottom: 20px;
    color: #333333;
    font-size: 16px;
}

.disclaimer-body h3 {
    color: #b8860b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 20px;
}

.disclaimer-body h4 {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 15px;
}

.disclaimer-body .language-section {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #b8860b;
}

.disclaimer-body p:last-child {
    margin-bottom: 0;
}

/* 免责声明深色主题文本样式 */
.disclaimer-content .disclaimer-body p {
    color: rgba(218, 197, 166, 0.75);
    font-size: 15px;
    line-height: 1.8;
}

.disclaimer-content .disclaimer-body h3 {
    color: #DAC5A6;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.disclaimer-content .disclaimer-body h4 {
    color: rgba(218, 197, 166, 0.9);
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 12px 0;
}

.disclaimer-content .disclaimer-body h4:first-child {
    margin-top: 0;
}

.disclaimer-content .disclaimer-body .language-section {
    padding: 20px 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
}

.disclaimer-content .disclaimer-body hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 213, 167, 0.2), transparent);
    margin: 32px 0;
}

.disclaimer-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 40px 32px;
    border-top: 1px solid rgba(232, 213, 167, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.disclaimer-footer .btn {
    min-width: 200px;
    padding: 14px 48px;
    background: linear-gradient(180deg, #E8D5A7 0%, #DAC5A6 50%, #B8A386 100%);
    color: #0a0a0a;
    font-size: 15px;
    font-weight: 600;
    border-radius: 60px;
    border: 2px solid rgba(218, 197, 166, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(218, 197, 166, 0.2);
}

.disclaimer-footer .btn:hover {
    background: linear-gradient(180deg, #F2E1B3 0%, #E8D5A7 50%, #C8B396 100%);
    box-shadow: 0 6px 20px rgba(218, 197, 166, 0.3);
    transform: translateY(-2px) scale(1.02);
}

@media (max-width: 768px) {
    .disclaimer-content {
        width: 95%;
        max-width: none;
        border-radius: 24px;
    }
    
    .disclaimer-header {
        padding: 24px 24px 16px;
    }
    
    .disclaimer-content h2,
    .disclaimer-header h2 {
        font-size: 20px;
    }
    
    .disclaimer-body {
        padding: 24px 24px;
        max-height: 55vh;
    }
    
    .disclaimer-content .disclaimer-body h3 {
        font-size: 18px;
    }
    
    .disclaimer-content .disclaimer-body h4 {
        font-size: 15px;
    }
    
    .disclaimer-content .disclaimer-body p {
        font-size: 14px;
    }
    
    .disclaimer-footer {
        padding: 16px 24px 24px;
    }
    
    .disclaimer-footer .btn {
        padding: 12px 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .disclaimer-content {
        border-radius: 16px;
    }
    
    .disclaimer-header {
        padding: 20px 18px 14px;
    }
    
    .disclaimer-body {
        padding: 20px 18px;
    }
    
    .disclaimer-footer {
        padding: 14px 18px 20px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .disclaimer-header {
        padding: 20px 24px;
    }
    
    .modal-content h2 {
        font-size: 20px;
    }
    
    .modal-content .close {
        font-size: 28px;
        width: 28px;
        height: 28px;
    }
    
    .disclaimer-body {
        padding: 24px;
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .disclaimer-header {
        padding: 16px 20px;
    }
    
    .modal-content h2 {
        font-size: 18px;
    }
    
    .modal-content .close {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }
    
    .disclaimer-body {
        padding: 20px;
    }
}

/* 研报详情页样式续 */
.report-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.report-body li {
    margin-bottom: 10px;
}

.report-actions {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-reports {
    margin-top: 60px;
}

.related-reports .section-title {
    text-align: left;
    margin-bottom: 40px;
}

/* 新闻详情页样式 */
.news-detail {
    padding: 80px 0;
    background-color: #fff;
}

.news-content {
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.news-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #b8860b;
}

.news-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.4;
}

.news-body {
    color: #4a5568;
    line-height: 1.8;
}

.news-body h3 {
    font-size: 22px;
    font-weight: 600;
    color: #b8860b;
    margin-top: 30px;
    margin-bottom: 15px;
}

.news-body p {
    margin-bottom: 20px;
    font-size: 16px;
}

.news-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.news-body li {
    margin-bottom: 10px;
}

.news-actions {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.related-news {
    margin-top: 60px;
}

.related-news .section-title {
    text-align: left;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.related-news .section-title .title-zh {
    color: #b8860b;
}

.related-news .news-items {
    gap: 20px;
}

.related-news .news-item {
    padding: 20px;
    border-radius: 8px;
}

.related-news .news-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.related-news .news-info p {
    font-size: 14px;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .report-content,
    .news-content {
        padding: 20px;
    }
    
    .report-header h2,
    .news-header h2 {
        font-size: 24px;
    }
    
    .report-body h3,
    .news-body h3 {
        font-size: 20px;
    }
    
    .related-reports .section-title,
    .related-news .section-title {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .report-detail,
    .news-detail {
        padding: 60px 0;
    }
    
    .report-header h2,
    .news-header h2 {
        font-size: 22px;
    }
}