/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #b8860b;
}

.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: flex-end;
    justify-content: center;
    height: auto;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

/* 轮播容器样式 */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* 轮播图片样式 */
.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;
}

/* 轮播图片叠加渐变 */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

/* 激活的轮播图片 */
.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: 2;
}

.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-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 15%; /* 调整此处百分比控制按钮在图片下1/3处 */
    position: relative;
    z-index: 3;
    transform: translateY(-10px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-logo,
.hero h1,
.hero h2,
.hero-subtitle,
.hero p {
    display: none;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 24px;
    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 {
    padding: 60px 0;
    background-color: #000000;
    position: relative;
}

.mission-content {
    margin: 0 auto;
    text-align: center;
}

.mission-title {
    font-size: 28px;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #b8860b;
}

.mission-text {
    font-size: 22px;
    color: #ffffff;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.9;
}

/* 章节标题样式 */
.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;
}

.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: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-en {
    font-size: 18px;
    font-weight: 500;
    color: #b8860b;
}

.title-zh {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    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-bottom: 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-bottom: 20px;
}

.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-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.flagship-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.4;
}

.fund-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.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;
}

.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: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.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 1fr;
    gap: 20px;
}

.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;
}

/* 基金产品预览样式 */
.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-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-category {
    text-align: center;
    padding: 0 20px;
}

.partner-category h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.category-en {
    font-size: 14px;
    color: #b8860b;
    margin-bottom: 20px;
    font-weight: 500;
}

.partner-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.partner-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.partner-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(184, 134, 11, 0.3);
    transform: translateY(-3px);
}

/* Logo占位符样式 */
.partner-logo {
    width: 100px;
    height: 50px;
    background-color: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background-color: transparent;
    transform: scale(1.05);
}

/* Logo图片样式 */
.partner-logo img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0.8) invert(1);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: brightness(1) invert(1);
    transform: scale(1.05);
}

.partner-name {
    font-size: 15px;
    color: #e0e0e0;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.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,
    .strategy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .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: 480px) {
    .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 {
    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: #1a1a1a;
    color: #fff;
}

.team .section-title {
    color: #fff;
}

.team .title-zh {
    color: #b8860b;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.team-card {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 0;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border: none;
    border-left: 3px solid #b8860b;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.03);
}

/* 团队头像样式 */
.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #b8860b;
    background-color: #2d2d2d;
    margin-bottom: 10px;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 团队信息样式 */
.team-info {
    width: 100%;
}

.team-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: #b8860b;
    margin-bottom: 5px;
    text-align: center;
}

.team-chinese-name {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
    text-align: center;
}

.team-position {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    text-align: center;
    line-height: 1.4;
}

.team-position-en {
    font-size: 13px;
    color: #b8860b;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

/* 团队简介列表样式 */
.team-bio {
    list-style-type: disc;
    margin-left: 25px;
    color: #e0e0e0;
    line-height: 1.8;
    padding-left: 0;
}

.team-bio li {
    margin-bottom: 10px;
    font-size: 14px;
    padding-right: 10px;
}

.team-bio li:last-child {
    margin-bottom: 0;
}

/* 基金产品样式 */
.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;
}

.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;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-date {
    width: 120px;
    background-color: #b8860b;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    flex-shrink: 0;
}

.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;
}

/* 联系我们样式 */
.contact {
    padding: 80px 0;
    background-color: #fff;
}

.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: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.6;
}

.map-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;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.form-message {
    margin-top: 15px;
    color: #38a169;
    font-weight: 500;
    text-align: center;
}

/* 页脚样式 */
.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;
}

/* 响应式设计 */
@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;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .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;
    }
}