/* ============================================
   影视众筹局 - 主样式表
   CSS前缀: fund-
   配色方案: 深灰#2C3E50 / 翡翠绿#2ECC71 / 投资蓝#3498DB / 云白#ECF0F1
   ============================================ */

/* === 字体引入 (本地化) === */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Montserrat Regular'), local('Montserrat-Regular');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Montserrat Bold'), local('Montserrat-Bold');
}

/* === 基础重置 === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: #ECF0F1;
    background-color: #1a2332;
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: #2ECC71;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #27ae60;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* === 干扰标签隐藏 === */
.invest-jammer-block {
    display: none;
}

/* === 导航栏 === */
#fund-header {
    background-color: #2C3E50;
    padding: 0 2rem;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.fund-nav-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.fund-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.fund-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2ECC71, #27ae60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    position: relative;
}

.fund-logo-icon::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
}

.fund-logo-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    margin-left: 2px;
}

.sp-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ECF0F1;
}

.fund-nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.fund-nav-links li a {
    color: #ECF0F1;
    padding: 22px 16px;
    display: block;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.fund-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #2ECC71;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.fund-nav-links li a:hover::after,
.fund-nav-links li a.fund-active::after {
    width: 80%;
}

.fund-nav-links li a:hover {
    color: #2ECC71;
}

/* 汉堡菜单 */
.fund-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.fund-hamburger span {
    width: 28px;
    height: 3px;
    background: #ECF0F1;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.fund-hamburger.fund-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.fund-hamburger.fund-active span:nth-child(2) {
    opacity: 0;
}

.fund-hamburger.fund-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* === 通用容器 === */
.fund-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fund-section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #ECF0F1;
}

.fund-section-subtitle {
    text-align: center;
    color: #95a5a6;
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.fund-section-title .fund-highlight {
    color: #2ECC71;
}

/* === Hero 明星项目路演 === */
.fund-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a2332;
}

.fund-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 1;
}

.fund-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,62,80,0.9) 0%, rgba(26,35,50,0.7) 100%);
    z-index: 2;
}

.fund-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.fund-hero-badge {
    display: inline-block;
    background: rgba(46,204,113,0.15);
    border: 1px solid #2ECC71;
    color: #2ECC71;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.fund-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.fund-hero-desc {
    font-size: 1.15rem;
    color: #bdc3c7;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.fund-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.fund-hero-stat {
    text-align: center;
}

.fund-hero-stat-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2ECC71;
    font-family: 'Montserrat', sans-serif;
}

.fund-hero-stat-label {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-top: 4px;
}

.fund-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.fund-btn-primary {
    background: linear-gradient(135deg, #2ECC71, #27ae60);
    color: #fff;
    box-shadow: 0 4px 15px rgba(46,204,113,0.3);
}

.fund-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46,204,113,0.4);
    color: #fff;
}

.fund-btn-outline {
    background: transparent;
    border: 2px solid #2ECC71;
    color: #2ECC71;
}

.fund-btn-outline:hover {
    background: #2ECC71;
    color: #fff;
}

.fund-hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === 新手上路 === */
.fund-guide {
    padding: 5rem 0;
    background: #1e2d3d;
}

.fund-guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.fund-guide-step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(44,62,80,0.5);
    border-radius: 12px;
    border: 1px solid rgba(46,204,113,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.fund-guide-step:hover {
    transform: translateY(-5px);
    border-color: rgba(46,204,113,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.fund-guide-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2ECC71, #27ae60);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.fund-guide-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: #ECF0F1;
}

.fund-guide-step p {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* === 投资风向标 === */
.fund-barometer {
    padding: 5rem 0;
    background: #1a2332;
}

.fund-barometer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.fund-barometer-chart {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.fund-barometer-chart img {
    width: 100%;
    display: block;
}

.fund-barometer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ECF0F1;
}

.fund-barometer-info p {
    color: #95a5a6;
    margin-bottom: 1.5rem;
}

.fund-trend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fund-trend-label {
    font-size: 0.95rem;
}

.fund-trend-value {
    color: #2ECC71;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.fund-trend-value.fund-negative {
    color: #e74c3c;
}

/* === 成功案例 === */
.fund-success {
    padding: 5rem 0;
    background: #1e2d3d;
}

.fund-success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fund-success-card {
    background: rgba(44,62,80,0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.fund-success-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.fund-success-poster {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.fund-success-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fund-success-card:hover .fund-success-poster img {
    transform: scale(1.05);
}

.fund-success-roi {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(46,204,113,0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.fund-success-info {
    padding: 1.5rem;
}

.fund-success-info h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #ECF0F1;
}

.fund-success-meta {
    display: flex;
    justify-content: space-between;
    color: #95a5a6;
    font-size: 0.85rem;
    margin-top: 0.8rem;
}

/* === 票房追踪 === */
.fund-boxoffice {
    padding: 5rem 0;
    background: #1a2332;
    position: relative;
}

.fund-boxoffice-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.fund-boxoffice-content {
    position: relative;
    z-index: 2;
}

.fund-boxoffice-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(44,62,80,0.8);
    border-radius: 12px;
    overflow: hidden;
}

.fund-boxoffice-table thead {
    background: rgba(46,204,113,0.15);
}

.fund-boxoffice-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 0.9rem;
    color: #2ECC71;
    font-weight: 600;
}

.fund-boxoffice-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

.fund-boxoffice-table tr:hover {
    background: rgba(46,204,113,0.05);
}

.fund-rank {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2ECC71;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.fund-rank-2 { background: #3498DB; }
.fund-rank-3 { background: #9b59b6; }

/* === 风险控制 === */
.fund-risk {
    padding: 5rem 0;
    background: #1e2d3d;
}

.fund-risk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.fund-risk-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.fund-risk-image img {
    width: 100%;
    display: block;
}

.fund-risk-list {
    list-style: none;
}

.fund-risk-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: rgba(44,62,80,0.5);
    border-radius: 10px;
    border-left: 3px solid #2ECC71;
    transition: all 0.3s ease;
}

.fund-risk-item:hover {
    background: rgba(44,62,80,0.8);
    transform: translateX(5px);
}

.fund-risk-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(46,204,113,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.fund-risk-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #ECF0F1;
}

.fund-risk-item p {
    font-size: 0.85rem;
    color: #95a5a6;
}

/* === 合作伙伴 === */
.fund-partners {
    padding: 5rem 0;
    background: #1a2332;
}

.fund-partners-wall {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.fund-partners-wall img {
    width: 100%;
    display: block;
}

/* === 行业资讯 === */
.fund-news {
    padding: 5rem 0;
    background: #1e2d3d;
}

.fund-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fund-news-card {
    background: rgba(44,62,80,0.6);
    border-radius: 12px;
    padding: 1.8rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.fund-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-color: rgba(46,204,113,0.2);
}

.fund-news-date {
    color: #2ECC71;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.fund-news-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #ECF0F1;
    line-height: 1.5;
}

.fund-news-card p {
    color: #95a5a6;
    font-size: 0.88rem;
    line-height: 1.7;
}

.fund-news-link {
    display: inline-block;
    margin-top: 1rem;
    color: #2ECC71;
    font-size: 0.88rem;
    font-weight: 600;
}

/* === 投资人说 === */
.fund-testimonials {
    padding: 5rem 0;
    background: #1a2332;
}

.fund-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fund-testimonial-card {
    background: rgba(44,62,80,0.6);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.fund-testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: rgba(46,204,113,0.2);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.fund-testimonial-text {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.fund-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fund-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.fund-testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ECF0F1;
}

.fund-testimonial-role {
    font-size: 0.8rem;
    color: #95a5a6;
}

/* === 加入我们 CTA === */
.fund-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2C3E50 0%, #1a2332 50%, #2C3E50 100%);
    text-align: center;
}

.fund-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.fund-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.fund-cta p {
    color: #95a5a6;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.fund-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === 页脚 === */
#fund-footer {
    background: #2C3E50;
    padding: 4rem 0 0;
}

.fund-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.fund-footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #ECF0F1;
    position: relative;
    padding-bottom: 10px;
}

.fund-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #2ECC71;
    border-radius: 2px;
}

.fund-footer-links {
    list-style: none;
}

.fund-footer-links li {
    margin-bottom: 8px;
}

.fund-footer-links li a {
    color: #95a5a6;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.fund-footer-links li a:hover {
    color: #2ECC71;
}

.fund-footer-contact p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.fund-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 2rem;
    text-align: center;
    max-width: 1440px;
    margin: 0 auto;
}

.fund-footer-bottom p {
    color: #7f8c8d;
    font-size: 0.82rem;
    margin-bottom: 6px;
    line-height: 1.8;
}

.fund-footer-bottom a {
    color: #95a5a6;
}

.fund-footer-bottom a:hover {
    color: #2ECC71;
}

.fund-footer-honor {
    color: #2ECC71;
    font-size: 0.82rem;
    margin-bottom: 6px;
}

.fund-footer-warning {
    color: #e74c3c;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 8px;
}

/* === 项目池页面 === */
.fund-pool-header {
    padding: 4rem 0 2rem;
    text-align: center;
    background: #1e2d3d;
}

.fund-pool-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.fund-filter-btn {
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid rgba(46,204,113,0.3);
    background: transparent;
    color: #95a5a6;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.fund-filter-btn:hover,
.fund-filter-btn.fund-active {
    background: #2ECC71;
    color: #fff;
    border-color: #2ECC71;
}

.fund-pool-sort {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
    align-items: center;
}

.fund-pool-sort label {
    color: #95a5a6;
    font-size: 0.9rem;
}

.fund-pool-sort select {
    background: rgba(44,62,80,0.8);
    color: #ECF0F1;
    border: 1px solid rgba(46,204,113,0.3);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
}

.fund-pool-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.fund-project-card {
    background: rgba(44,62,80,0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.fund-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.fund-project-card:hover .fund-project-overlay {
    opacity: 1;
}

.fund-project-poster {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.fund-project-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fund-project-card:hover .fund-project-poster img {
    transform: scale(1.08);
}

.fund-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fund-project-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(52,152,219,0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    z-index: 2;
}

.fund-project-info {
    padding: 1.5rem;
}

.fund-project-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #ECF0F1;
}

.fund-progress-bar {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.fund-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2ECC71, #27ae60);
    border-radius: 4px;
    transition: width 1.5s ease;
    width: 0;
}

.fund-project-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #95a5a6;
}

.fund-project-meta span {
    display: flex;
    flex-direction: column;
}

.fund-project-meta .fund-meta-value {
    color: #ECF0F1;
    font-weight: 600;
    font-size: 0.95rem;
}

/* === 内页通用 === */
.fund-page-banner {
    padding: 4rem 0;
    background: #1e2d3d;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fund-page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.fund-page-banner-content {
    position: relative;
    z-index: 2;
}

.fund-page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fund-page-banner p {
    color: #95a5a6;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.fund-page-content {
    padding: 3rem 0;
    background: #1a2332;
}

.fund-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fund-content-card {
    background: rgba(44,62,80,0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.fund-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.fund-content-card-img {
    height: 220px;
    overflow: hidden;
}

.fund-content-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fund-content-card:hover .fund-content-card-img img {
    transform: scale(1.05);
}

.fund-content-card-body {
    padding: 1.5rem;
}

.fund-content-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: #ECF0F1;
}

.fund-content-card-body p {
    color: #95a5a6;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* === APP下载页 === */
.fund-app-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #1a2332;
}

.fund-app-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.fund-app-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,62,80,0.9), rgba(26,35,50,0.85));
}

.fund-app-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 600px;
}

.fund-app-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fund-app-content p {
    color: #95a5a6;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.fund-qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    padding: 10px;
}

.fund-qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fund-app-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.fund-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(44,62,80,0.8);
    border: 1px solid rgba(46,204,113,0.3);
    border-radius: 10px;
    color: #ECF0F1;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.fund-app-btn:hover {
    background: #2ECC71;
    color: #fff;
    border-color: #2ECC71;
}

.fund-app-btn-icon {
    font-size: 1.5rem;
}

/* === 响应式断点 === */

/* 1440px */
@media (max-width: 1440px) {
    .fund-container {
        max-width: 1200px;
    }
}

/* 1024px */
@media (max-width: 1024px) {
    .fund-hero h1 {
        font-size: 2.2rem;
    }

    .fund-guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fund-success-grid,
    .fund-news-grid,
    .fund-testimonial-grid,
    .fund-content-grid,
    .fund-pool-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fund-barometer-content,
    .fund-risk-content {
        grid-template-columns: 1fr;
    }

    .fund-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 768px */
@media (max-width: 768px) {
    .fund-nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #2C3E50;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .fund-nav-links.fund-show {
        display: flex;
    }

    .fund-nav-links li a {
        padding: 12px 2rem;
        color: #2ECC71;
    }

    .fund-hamburger {
        display: flex;
    }

    .fund-nav-wrapper {
        position: relative;
    }

    .fund-hero h1 {
        font-size: 1.8rem;
    }

    .fund-hero-stats {
        gap: 1.5rem;
    }

    .fund-hero-stat-num {
        font-size: 1.6rem;
    }

    .fund-section-title {
        font-size: 1.6rem;
    }

    .fund-success-grid,
    .fund-news-grid,
    .fund-testimonial-grid,
    .fund-content-grid,
    .fund-pool-grid {
        grid-template-columns: 1fr;
    }

    .fund-footer-grid {
        grid-template-columns: 1fr;
    }

    .fund-boxoffice-table {
        font-size: 0.82rem;
    }

    .fund-boxoffice-table th,
    .fund-boxoffice-table td {
        padding: 10px 12px;
    }
}

/* 360px */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }

    .fund-hero h1 {
        font-size: 1.5rem;
    }

    .fund-guide-grid {
        grid-template-columns: 1fr;
    }

    .fund-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .fund-hero-btns {
        flex-direction: column;
    }

    .fund-pool-filters {
        flex-direction: column;
        align-items: center;
    }
}

/* === 动画 === */
@keyframes fund-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fund-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fund-animate.fund-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fund-progressFill {
    from { width: 0; }
}

.fund-progress-fill {
    animation: fund-progressFill 1.5s ease forwards;
}
