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

/* 移动端触摸优化 */
*, *:before, *:after {
    -webkit-tap-highlight-color: transparent;
}

/* 改善移动端滚动性能 */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* 移动端字体渲染优化 */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-color: #C19B5C;
    --secondary-color: #D4A574;
    --dark-color: #6B5D42;
    --dark-brown: #8B6F47;
    --light-color: #F5E6D3;
    --light-bg: #FAF5F0;
    --text-color: #4A3F28;
    --text-light: #FFF;
    --gradient-primary: linear-gradient(135deg, #C19B5C 0%, #D4A574 100%);
    --gradient-dark: linear-gradient(135deg, #4A3F28 0%, #6B5D42 100%);
    --gradient-warm: linear-gradient(135deg, #8B6F47 0%, #C19B5C 100%);
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.95) 0%, rgba(107, 93, 66, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(74, 63, 40, 0.2);
    z-index: 1000;
    /* 完全禁用动画 */
    transition: none !important;
    animation: none !important;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* 禁用容器动画 */
    transition: none !important;
    animation: none !important;
}

.nav-content {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    align-items: center;
    padding: 1rem 0;
    width: 100%;
    /* 禁用内容动画 */
    transition: none !important;
    animation: none !important;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    grid-column: 1;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    grid-column: 2;
    justify-content: center;
    /* 禁用链接容器动画 */
    transition: none !important;
    animation: none !important;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    /* 只保留颜色过渡，移除其他 */
    transition: color 0.2s ease;
    position: relative;
    opacity: 0.9;
}

.nav-links a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    /* 禁用下划线动画 */
    transition: none;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover {
    background-color: rgba(212, 165, 116, 0.2);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 2px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

/* 主页横幅 */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B6F47 0%, #6B5D42 50%, #4A3F28 100%);
    opacity: 1;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center;
    background-size: cover;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-height: 44px; /* 移动端最小触摸目标 */
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    user-select: none;
}

.btn-primary {
    background: linear-gradient(135deg, #C19B5C 0%, #D4A574 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(193, 155, 92, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 155, 92, 0.5);
    background: linear-gradient(135deg, #D4A574 0%, #C19B5C 100%);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(212, 165, 116, 0.2);
    color: white;
    border-color: var(--secondary-color);
}

/* 章节通用样式 */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
}

.section-subtitle {
    color: var(--dark-brown);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-top: 1rem;
}

/* 首页简介 */
.home-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #FAF5F0 0%, #F5E6D3 100%);
}

.intro-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.intro-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF5F0 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(74, 63, 40, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #C19B5C 0%, #D4A574 50%, #C19B5C 100%);
}

.intro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 93, 66, 0.2);
}

.intro-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.intro-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* 关于我们 */
.about {
    background: linear-gradient(135deg, #F5E6D3 0%, #FAF5F0 100%);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(107, 93, 66, 0.1);
    transition: transform 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
}

.about-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-item ul {
    list-style: none;
    padding-left: 0;
}

.about-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(107, 93, 66, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-brown);
    font-size: 1rem;
}

/* 服务板块 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(107, 93, 66, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 93, 66, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #C19B5C 0%, #D4A574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(193, 155, 92, 0.3);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.8;
}

/* 优势部分 */
.advantages {
    background: linear-gradient(135deg, #6B5D42 0%, #4A3F28 100%);
    color: white;
}

.advantages .section-title,
.advantages .section-subtitle {
    color: white;
}

.advantages .section-title::after {
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.advantage-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.advantage-card ul {
    list-style: none;
}

.advantage-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.advantage-card li::before {
    content: '→';
    position: absolute;
    left: 0;
}

/* 产品部分 */
.products {
    background: linear-gradient(135deg, #FAF5F0 0%, #F5E6D3 100%);
}

.products-tabs {
    max-width: 1300px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 10px 30px;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #C19B5C 0%, #D4A574 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(193, 155, 92, 0.3);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* 投资保险标签页特殊布局 - 四个框体并排 */
#investment .product-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto;
}

#investment .product-card {
    padding: 1.5rem;
    min-width: 0;
}

#investment .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#investment .product-card h4 {
    font-size: 1.1rem;
    height: 1.8rem;
    display: flex;
    align-items: center;
}

#investment .product-card > p {
    font-size: 0.9rem;
    /* 固定高度以对齐所有卡片 */
    height: 3rem;
    line-height: 1.5;
    margin-bottom: 0;
    display: block;
    white-space: normal;
}

#investment .product-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

#investment .product-details p {
    font-size: 0.85rem;
    /* 固定高度以对齐所有卡片 */
    height: 2.6rem;
    line-height: 1.3;
    display: block;
    white-space: normal;
}

.product-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(107, 93, 66, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 93, 66, 0.2);
}

.product-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    min-height: 1.5rem;
}

.product-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.product-details p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* 团队部分 */
.team-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.team-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1300px;
    margin: 2rem auto 0;
    justify-items: center;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(107, 93, 66, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #C19B5C 0%, #D4A574 100%);
    border-radius: 50%;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 20px rgba(193, 155, 92, 0.3);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.member-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-desc {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 联系部分 - 高档设计 */
.contact {
    background: linear-gradient(135deg, #F5E6D3 0%, #FAF5F0 100%);
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

/* 左侧公司信息卡片 - 简化设计 */
.company-info-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF9F6 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(107, 93, 66, 0.12);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.company-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 20%, #C19B5C 50%, transparent 80%);
}

.company-header {
    margin-bottom: 2rem;
}

.company-name {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.company-name-en {
    font-size: 1.2rem;
    color: #999;
    letter-spacing: 4px;
    display: block;
}

.company-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C19B5C, transparent);
    margin: 2rem auto;
}

.company-tagline {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.company-partner {
    font-size: 1rem;
    color: #777;
    font-style: italic;
}

.service-scope {
    margin-bottom: 2.5rem;
}

.scope-title {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.service-tag {
    background: linear-gradient(135deg, #F5E6D3 0%, #FAF5F0 100%);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(193, 155, 92, 0.2);
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: linear-gradient(135deg, #C19B5C 0%, #D4A574 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 155, 92, 0.3);
}

.company-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
    font-size: 0.95rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #C19B5C 0%, #D4A574 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(107, 93, 66, 0.1);
}

.contact-form h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(193, 155, 92, 0.15);
}

/* 右侧咨询卡片 - 浅色高档设计 */
.consultation-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(107, 93, 66, 0.12);
    position: relative;
    overflow: hidden;
}

.consultation-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(193, 155, 92, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.consultation-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.consultation-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.consultation-subtitle {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.qr-showcase {
    display: flex;
    justify-content: space-around;
    gap: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.qr-box {
    text-align: center;
}

.qr-wrapper {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #FAF9F6 0%, #FFFFFF 100%);
    border-radius: 16px;
    padding: 12px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    border: 2px solid rgba(193, 155, 92, 0.3);
    box-shadow: 0 8px 20px rgba(107, 93, 66, 0.1);
    transition: all 0.3s ease;
}

.qr-wrapper:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(193, 155, 92, 0.25);
}

.qr-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(193, 155, 92, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.qr-wrapper:hover::before {
    transform: translateX(100%);
}

.qr-code {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.qr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #C19B5C;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.qr-wrapper:hover .qr-overlay {
    opacity: 1;
}

.qr-info {
    margin-top: 1rem;
    text-align: center;
}

.qr-platform {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.consultation-footer {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(193, 155, 92, 0.2);
    position: relative;
    z-index: 1;
}

.privacy-note {
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
}

/* 页脚 */
.footer {
    background: linear-gradient(135deg, #4A3F28 0%, #6B5D42 100%);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 页面横幅 */
.page-hero {
    background: linear-gradient(135deg, #6B5D42 0%, #4A3F28 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.page-hero-content {
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    font-size: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

/* Financial Alliance 介绍 */
.fa-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF5F0 100%);
}

.fa-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.fa-logo-section {
    text-align: center;
}

.logo-placeholder {
    display: inline-block;
    background: linear-gradient(135deg, #C19B5C 0%, #D4A574 100%);
    color: white;
    padding: 2rem 3rem;
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    box-shadow: 0 5px 20px rgba(193, 155, 92, 0.3);
}

.stats-section .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* 业务伙伴 */
.partners {
    background: linear-gradient(135deg, #FAF5F0 0%, #F5E6D3 100%);
    padding: 80px 0;
}

.partners-grid {
    display: grid;
    gap: 3rem;
}

.partner-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(107, 93, 66, 0.1);
}

.category-title {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    padding: 1rem 0;
    background: linear-gradient(135deg, #8B6F47 0%, #6B5D42 100%);
    border-radius: 10px;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.2rem;
    padding: 2rem 0;
}

.partner-logo {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(139, 111, 71, 0.95) 0%, 
        rgba(193, 155, 92, 0.95) 25%,
        rgba(212, 165, 116, 0.95) 50%,
        rgba(193, 155, 92, 0.95) 75%,
        rgba(139, 111, 71, 0.95) 100%);
    background-size: 200% 200%;
    animation: shimmer 3s ease infinite;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 
        0 3px 12px rgba(193, 155, 92, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* 闪光动画 */
@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 添加光泽效果层 */
.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

/* 鼠标悬停时的光泽扫过 */
.partner-logo:hover::before {
    left: 100%;
}

.partner-logo:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, 
        rgba(193, 155, 92, 1) 0%, 
        rgba(212, 165, 116, 1) 25%,
        rgba(255, 215, 0, 0.9) 50%,
        rgba(212, 165, 116, 1) 75%,
        rgba(193, 155, 92, 1) 100%);
    box-shadow: 
        0 5px 20px rgba(255, 215, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
}

/* 添加淡入和闪光动画效果 */
.partner-logo {
    animation: 
        fadeIn 0.8s ease-out forwards,
        shimmer 3s ease infinite;
}

/* 闪光扫过效果 - 错开时间创造流动感 */
.partner-logo:nth-child(3n) {
    animation-delay: 0s, 0s;
}

.partner-logo:nth-child(3n+1) {
    animation-delay: 0.1s, 1s;
}

.partner-logo:nth-child(3n+2) {
    animation-delay: 0.2s, 2s;
}

/* 禁用导航栏所有动画和过渡效果 */
.navbar,
.navbar *,
.nav-content,
.nav-content *,
.nav-links,
.nav-links * {
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

/* 仅保留导航链接颜色变化 */
.nav-links a {
    transition: color 0.15s ease !important;
}

/* 为何选择我们 */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF5F0 100%);
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.why-text > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.mission-boxes {
    display: grid;
    gap: 2rem;
}

.mission-box {
    background: linear-gradient(135deg, #FAF5F0 0%, #F5E6D3 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(74, 63, 40, 0.08);
    text-align: center;
}

.mission-box p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-color);
}

/* 服务详情 */
.service-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.service-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.service-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-features h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-features p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* 服务核心轮盘 */
.service-core {
    background: linear-gradient(135deg, #F5E6D3 0%, #FAF5F0 100%);
    padding: 80px 0;
}

.service-wheel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.wheel-center {
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(107, 93, 66, 0.15);
    border: 5px solid var(--primary-color);
}

.center-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C19B5C 0%, #D4A574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.center-icon svg {
    width: 30px;
    height: 30px;
}

.wheel-center h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.wheel-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.wheel-service {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(107, 93, 66, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.wheel-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 93, 66, 0.2);
}

.wheel-service h4 {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.4;
}

/* 落地案例 */
.case-studies {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF5F0 100%);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.case-card {
    background: linear-gradient(135deg, #FAF5F0 0%, #F5E6D3 100%);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 93, 66, 0.15);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.case-label {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.case-industry {
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.case-desc {
    margin: 0;
    line-height: 1.8;
    color: var(--text-color);
}

.case-summary {
    text-align: center;
}

.summary-box {
    background: linear-gradient(135deg, #8B6F47 0%, #6B5D42 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(74, 63, 40, 0.2);
}

.summary-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* 团队成员详情样式 */
.team-member.featured {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 650px;
    padding: 2rem;
}

.team-member.featured .member-photo {
    width: 180px;
    height: 180px;
    font-size: 48px;
    margin-bottom: 1.5rem;
}

.team-member.featured .member-desc {
    text-align: center;
    margin-top: 1rem;
}

.team-member.featured .member-desc p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-additional {
    margin-top: 4rem;
}

.team-additional h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.member-photo.small {
    width: 100px;
    height: 100px;
    font-size: 36px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.team-member p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
}

.member-desc strong {
    color: var(--primary-color);
    font-weight: 500;
}

/* 张恒冰个人介绍优化样式 */
.team-member.featured .member-desc {
    margin-top: 1.5rem;
}

.member-desc .member-credentials {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(193, 155, 92, 0.2);
}

.member-desc .member-highlight {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.member-desc .member-education {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.member-desc .member-expertise {
    font-size: 0.9rem;
    color: #888;
    padding-top: 1rem;
    border-top: 1px solid rgba(193, 155, 92, 0.2);
    line-height: 1.5;
}

.name-english {
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
    line-height: 1.4;
}

.name-english-small {
    font-size: 0.8rem;
    font-weight: 400;
    color: #888;
    line-height: 1.3;
}

/* 跨境财富管理解决方案 - 折叠部分 */
.wealth-solution-wrapper {
    padding: 40px 0;
    background: linear-gradient(135deg, #FAF5F0 0%, #FFFFFF 100%);
}

.solution-toggle-btn {
    background: linear-gradient(135deg, #C19B5C 0%, #D4A574 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(193, 155, 92, 0.3);
    display: block;
    width: 100%;
}

.solution-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 155, 92, 0.4);
    background: linear-gradient(135deg, #D4A574 0%, #E5B685 100%);
}

.toggle-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 1rem;
    margin-right: 10px;
}

.toggle-icon.active {
    transform: rotate(90deg);
}

.toggle-text {
    display: inline-block;
}

.wealth-solution-container {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 详细优势分析 */
.detailed-advantages {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF5F0 100%);
    padding: 80px 0;
}

.advantage-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: linear-gradient(135deg, #FAF5F0 0%, #F5E6D3 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(193, 155, 92, 0.2);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 93, 66, 0.15);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.detail-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.detail-card p {
    color: var(--text-color);
    line-height: 1.8;
}

/* 平板设备响应式 */
@media (max-width: 1024px) {
    .team-grid-horizontal {
        grid-template-columns: repeat(3, 1fr);
    }
    
    #investment .product-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    /* 导航菜单优化 */
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--light-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 5px 20px rgba(107, 93, 66, 0.15);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #eee;
        width: 100%;
        color: var(--text-color);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero部分适配 */
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 250px;
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    /* 页面标题适配 */
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-hero {
        padding: 100px 0 60px;
    }
    
    /* 卡片布局适配 */
    .intro-content,
    .services-grid,
    .advantages-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid-horizontal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cases-grid,
    .partner-logos,
    .advantage-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* 服务轮盘适配 */
    .wheel-services {
        grid-template-columns: 1fr;
    }
    
    .wheel-center {
        width: 150px;
        height: 150px;
        margin-bottom: 2rem;
    }
    
    .center-icon {
        width: 50px;
        height: 50px;
    }
    
    /* 表单适配 */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* 联系页面响应式 */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-info-card,
    .consultation-card {
        padding: 2rem;
    }
    
    .company-name {
        font-size: 1.8rem;
    }
    
    .service-tags {
        gap: 0.5rem;
    }
    
    .service-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .qr-showcase {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .qr-wrapper {
        width: 140px;
        height: 140px;
    }
    
    .consultation-title {
        font-size: 1.5rem;
    }
    
    /* 标签按钮适配 */
    .tab-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .tab-btn {
        width: 200px;
        padding: 12px 20px;
    }
    
    /* 产品卡片适配 */
    .product-cards {
        grid-template-columns: 1fr;
    }
    
    #investment .product-cards {
        grid-template-columns: 1fr;
    }
    
    /* 团队成员适配 */
    .team-member.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-member.featured .member-desc {
        text-align: left;
    }
    
    /* 合作伙伴标志适配 */
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .partner-logo {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
        min-height: 40px;
    }
    
    /* 页面间距调整 */
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    /* 小屏手机优化 */
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    /* 导航适配 */
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    /* 按钮适配 */
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* 统计数据适配 */
    .stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* 卡片内边距调整 */
    .service-card,
    .intro-card,
    .advantage-card,
    .product-card,
    .team-member,
    .case-card,
    .detail-card {
        padding: 1.5rem;
    }
    
    /* 表单优化 */
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 15px;
        font-size: 16px; /* 防止iOS缩放 */
    }
    
    /* 合作伙伴标志 */
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 服务详情 */
    .wheel-center {
        width: 120px;
        height: 120px;
    }
    
    .wheel-center h3 {
        font-size: 1rem;
    }
    
    /* 页脚适配 */
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
}

@media (max-width: 360px) {
    /* 超小屏优化 */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .service-card,
    .intro-card,
    .advantage-card,
    .product-card,
    .team-member,
    .case-card,
    .detail-card {
        padding: 1rem;
    }
    
    .partner-logos {
        grid-template-columns: 1fr;
    }
}