/* 合并的CSS文件 - Wed Jul 23 09:15:29 CST 2025 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 主色调 - 深邃专业 */
    --primary-color: #6366F1;  /* 亮紫色 */
    --primary-light: #818CF8;
    --primary-dark: #4F46E5;
    --accent-color: #FFD700;
    --accent-light: #FFF4B3;
    
    /* 辅助色彩 */
    --secondary-color: #2c3e50;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    
    /* 背景色 */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --bg-dark: #0a0a15;  /* 深色背景 */
    --surface: #FFFFFF;
    --surface-hover: #F8FAFC;
    
    /* 文字色彩 */
    --text-primary: #1a1a2e;
    --text-secondary: #475569;
    --text-muted: #94A3B8;  /* 亮灰色 */
    --text-inverse: #FFFFFF;
    --text-accent: #FFD700;
    
    /* 边框色彩 */
    --border-light: #E2E8F0;
    --border-medium: #CBD5E1;
    --border-dark: #94A3B8;
    
    /* 阴影 */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* 渐变 */
    --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    --gradient-accent: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-hero: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}body {

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-inverse);
    background: var(--bg-dark);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    background: rgba(26, 26, 46, 0.5);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.logo h1 {
    color: var(--text-inverse);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-inverse);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}/* 
Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-inverse);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.6);
}

.btn-primary.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-secondary.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background: transparent;
}

.hero-background {
    display: none; /* 隐藏原有背景，使用canvas流场效果替代 */
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--primary-light);
    font-weight: 500;
}.b
adge-icon {
    font-size: 1rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-inverse);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.methodology-preview {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
}

.preview-header {
    text-align: center;
    margin-bottom: 2rem;
}

.preview-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 0.5rem;
}

.preview-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}.pre
view-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-preview {
    text-align: center;
    flex: 1;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.step-title {
    font-weight: 600;
    color: var(--text-inverse);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.step-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin: 0 0.5rem;
}

/* Methodology Section */
.methodology-section {
    padding: 100px 0;
    background: rgba(10, 10, 15, 0.7);
    position: relative;
    z-index: 1;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.method-step {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.method-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}.step-num
ber {
    position: absolute;
    top: -15px;
    left: 2.5rem;
    background: var(--gradient-primary);
    color: var(--text-inverse);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 0.5rem;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-style: italic;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(99, 102, 241, 0.2);
    color: var(--text-inverse);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Flagship Section */
.flagship-section {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.7);
    position: relative;
    z-index: 1;
}

.case-showcase {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

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

.case-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 0.5rem;
}

.case-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}.cas
e-methodology {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.case-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(10, 10, 15, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.case-step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.case-step-content h4 {
    font-weight: 600;
    color: var(--text-inverse);
    margin-bottom: 0.5rem;
}

.case-step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Expandable Section */
.expandable-section {
    margin: 3rem 0;
}

.expand-btn {
    width: 100%;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-inverse);
}

.expand-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.expand-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.expand-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.expand-content.active {
    max-height: 500px;
}

.expand-header {
    padding: 2rem 0 1rem;
    text-align: center;
}

.expand-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-inverse);
}.exp
and-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.expand-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(10, 10, 15, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.expand-item h5 {
    font-weight: 600;
    color: var(--text-inverse);
    margin-bottom: 0.5rem;
}

.expand-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.case-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background: rgba(10, 10, 15, 0.7);
    position: relative;
    z-index: 1;
}

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

.solution-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

.solution-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.solution-card.featured::before {
    content: '推荐';
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--gradient-primary);
    color: var(--text-inverse);
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: 600;
}.sol
ution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.solution-icon {
    font-size: 2.5rem;
}

.solution-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-inverse);
}

.solution-target {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(10, 10, 15, 0.5);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.solution-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Tabs */
.solution-tabs {
    margin-top: 1rem;
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tab-btn {
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--text-inverse);
    border-color: var(--primary-color);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.service-list {
    list-style: none;
    padding: 0;
}

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

.service-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}/* Ab
out Section */
.about-section {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.7);
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-block {
    margin-bottom: 3rem;
}

.about-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 1rem;
}

.about-block p {
    color: var(--text-muted);
    line-height: 1.6;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-showcase {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    backdrop-filter: blur(10px);
}

.showcase-header {
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-inverse);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.expertise-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(10, 10, 15, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

.expertise-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.expertise-title {
    font-weight: 600;
    color: var(--text-inverse);
    margin-bottom: 0.25rem;
}

.expertise-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}/* Contac
t Section */
.contact-section {
    padding: 100px 0;
    background: rgba(10, 10, 15, 0.7);
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-inverse);
}

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

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-inverse);
    margin-bottom: 1rem;
}

.contact-block p {
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    font-weight: 500;
    color: var(--text-inverse);
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--text-muted);
}

/* Form */
.form {
    background: rgba(26, 26, 46, 0.5);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-inverse);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-inverse);
    background: rgba(10, 10, 15, 0.5);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}/
* Footer */
footer {
    background: rgba(10, 10, 15, 0.9);
    color: var(--text-inverse);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo span {
    color: var(--text-inverse);
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-brand p {
    color: var(--text-muted);
}

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

.footer-column h4 {
    color: var(--text-inverse);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}@media (m
ax-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 6rem 1rem 2rem;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        max-width: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .case-methodology {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .method-step {
        padding: 2rem 1.5rem;
    }
    
    .case-showcase {
        padding: 2rem 1.5rem;
    }
    
    .solution-card {
        padding: 2rem 1.5rem;
    }
    
    .form {
        padding: 2rem 1.5rem;
    }
}/* 修复首页左侧边距，与方法论页面对齐 */
.hero {
    padding-left: 20px !important; /* 与.container的内边距相同 */
    padding-right: 20px !important;
    max-width: 1200px !important; /* 与.container的最大宽度相同 */
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 移除之前添加的额外内边距 */
.hero-content {
    padding-left: 0 !important;
}

.hero-visual {
    padding-right: 0 !important;
}/* 解决方案模块并列显示 */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important; /* 强制三列布局 */
    gap: 2rem;
}

/* 标题和icon并列居中 */
.solution-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.solution-icon {
    font-size: 2rem;
    margin-bottom: 0;
}

.solution-header h3 {
    margin: 0;
}

/* 标签和按钮居中 */
.solution-features, .tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    display: inline-block;
}

/* 内容居中 */
.solution-target, .solution-content {
    text-align: center;
}

.service-list {
    text-align: left;
    padding-left: 1.5rem;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr !important;
    }
}/* 南开大学项目 - 申解AI模块的并行排列样式 */
.case-methodology {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 2rem !important;
    margin-bottom: 2rem !important;
}

.case-step {
    flex: 1 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1.5rem !important;
    background: rgba(26, 26, 46, 0.5) !important;
    border-radius: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease !important;
}

.case-step:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2) !important;
    border-color: rgba(99, 102, 241, 0.5) !important;
}

.case-step-icon {
    font-size: 2rem !important;
    flex-shrink: 0 !important;
}

.case-step-content {
    flex: 1 !important;
}

.case-step-content h4 {
    font-weight: 600 !important;
    color: var(--text-inverse) !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
}

.case-step-content p {
    color: var(--text-muted) !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .case-methodology {
        flex-direction: column !important;
        gap: 1rem !important;
    }
}

@media (max-width: 768px) {
    .case-step {
        padding: 1rem !important;
    }
}/* 联系我们部分的样式修改 */
.contact-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.contact-content {
    flex: 1;
}

.wechat-qr {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.qr-code {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 10px;
    background: white;
}

.qr-text {
    color: var(--text-inverse);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .qr-code {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .qr-code {
        width: 150px;
        height: 150px;
    }
}/* 修复底部样式 */
body {
    /* 修改背景色，避免纯黑色 */
    background: #121224 !important; /* 深蓝紫色背景，比纯黑色更柔和 */
}

/* 页面背景渐变 */
.methodology-section, 
.flagship-section, 
.solutions-section, 
.about-section, 
.contact-section {
    background: linear-gradient(to bottom, rgba(18, 18, 36, 0.9), rgba(26, 26, 46, 0.9)) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* 调整底部样式 */
footer {
    background: rgba(18, 18, 36, 0.95) !important;
    padding: 3rem 0 2rem !important; /* 增加底部内边距 */
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.footer-bottom {
    padding-top: 2rem !important;
    margin-top: 2rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    text-align: center !important;
}

.footer-bottom p {
    color: var(--text-muted) !important;
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important; /* 增加底部文字与页面底部的距离 */
}

/* ICP备案号已设置为普通文本 *//* App展示部分样式 */
.app-showcase {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.app-preview {
    position: relative;
    width: 280px;
    height: 560px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background: #f0e6ff;
}

.app-preview:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

.app-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 36px;
}

.app-label {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(26, 26, 46, 0.7);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .app-showcase {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .app-preview {
        width: 240px;
        height: 480px;
    }
}

@media (max-width: 768px) {
    .app-preview {
        width: 200px;
        height: 400px;
    }
}/* 诺塔三步法模块背景特效 */
.methodology-section {
    position: relative;
    overflow: hidden;
}

.methodology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* 添加粒子点缀 */
.methodology-section .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.methodology-section .particle:nth-child(1) {
    top: 10%;
    left: 5%;
    width: 6px;
    height: 6px;
    background-color: rgba(99, 102, 241, 0.2);
    animation: float 15s infinite ease-in-out;
}

.methodology-section .particle:nth-child(2) {
    top: 30%;
    left: 80%;
    width: 8px;
    height: 8px;
    background-color: rgba(255, 215, 0, 0.15);
    animation: float 20s infinite ease-in-out reverse;
}

.methodology-section .particle:nth-child(3) {
    top: 70%;
    left: 20%;
    width: 5px;
    height: 5px;
    background-color: rgba(99, 102, 241, 0.15);
    animation: float 18s infinite ease-in-out 2s;
}

.methodology-section .particle:nth-child(4) {
    top: 50%;
    left: 90%;
    width: 7px;
    height: 7px;
    background-color: rgba(255, 215, 0, 0.1);
    animation: float 25s infinite ease-in-out 1s;
}

.methodology-section .particle:nth-child(5) {
    top: 85%;
    left: 40%;
    width: 6px;
    height: 6px;
    background-color: rgba(99, 102, 241, 0.1);
    animation: float 22s infinite ease-in-out 3s;
}

/* 浮动动画 */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, 10px);
    }
    50% {
        transform: translate(0, 20px);
    }
    75% {
        transform: translate(-20px, 10px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* 确保内容在背景之上 */
.methodology-section .container {
    position: relative;
    z-index: 1;
}

/* 方法论步骤悬停效果 */
.method-step {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.method-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
}/* 诺塔三步法模块的垂直层级展示 */
.methodology-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 3rem !important;
    position: relative;
    padding: 2rem 0;
}

/* 连接线，表示层级关系 */
.methodology-grid::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.8));
    z-index: 0;
    transform: translateX(-50%);
}

/* 步骤样式 */
.method-step {
    position: relative;
    width: 80% !important;
    max-width: 800px !important;
    z-index: 1;
    display: flex !important;
    flex-direction: column !important;
    padding: 2rem !important;
    background: rgba(26, 26, 46, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    transition: all 0.3s ease !important;
}

/* 添加箭头 */
.method-step:not(:last-child)::after {
    content: '↓';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: rgba(99, 102, 241, 0.8);
    z-index: 2;
}

/* 步骤编号样式 */
.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
}

/* 内容样式优化 */
.step-content {
    display: flex;
    flex-direction: column;
}

.step-content h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    font-style: italic;
}

.step-content p {
    margin-bottom: 1rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* 鼠标悬停效果 */
.method-step:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2) !important;
    border-color: rgba(99, 102, 241, 0.5) !important;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .method-step {
        width: 90% !important;
        padding: 1.5rem !important;
    }
}/* 诺塔三步法模块的水平布局 - 覆盖垂直布局 */
.methodology-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 2rem !important;
    padding: 2rem 0;
}

/* 移除垂直连接线 */
.methodology-grid::before {
    display: none;
}

/* 移除垂直箭头 */
.method-step:not(:last-child)::after {
    display: none;
}

/* 步骤样式调整 */
.method-step {
    width: auto !important;
    max-width: none !important;
    text-align: center !important;
}

/* 标题居中 */
.step-content h3 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 副标题居中 */
.step-content h4 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 段落居中 */
.step-content p {
    text-align: center !important;
}

/* 标签居中 */
.step-features {
    justify-content: center !important;
}

/* 步骤编号居中 */
.step-number {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .methodology-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
}/* 首页预览中的诺塔三步法垂直展示 */
.preview-steps {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
}

.step-preview {
    width: 100%;
    max-width: 200px;
    padding: 1rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step-arrow {
    font-size: 1.5rem;
    color: rgba(99, 102, 241, 0.8);
    margin: 0.5rem 0;
}

.step-preview:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .preview-steps {
        gap: 0.5rem !important;
    }
    
    .step-preview {
        padding: 0.75rem;
    }
    
    .step-arrow {
        margin: 0.25rem 0;
    }
}/*
 让icon和标题在同一行 */
.step-icon {
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.step-title {
    display: inline-block;
    vertical-align: middle;
}/* 增大首页"AI驱动的商业逻辑重构者"字体大小 */
.hero-badge .badge-text {
    font-size: 1.8rem !important; /* 放大一倍，原来大约是0.9rem */
    font-weight: 600 !important;
    padding: 0.5rem 1rem !important;
    display: inline-block !important;
}

/* 调整徽章容器样式以适应更大的文本 */
.hero-badge {
    margin-bottom: 2.5rem !important;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hero-badge .badge-text {
        font-size: 1.4rem !important; /* 在小屏幕上稍微减小字体大小 */
        padding: 0.4rem 0.8rem !important;
    }
}/* 增大首页"诺塔三步法"模块文案字体大小到150% */

/* 标题字体大小增加 */
.methodology-preview .preview-header h3 {
    font-size: 1.8rem !important; /* 增加标题字体大小 */
    margin-bottom: 0.75rem !important;
}

/* 副标题字体大小增加 */
.methodology-preview .preview-header p {
    font-size: 1.2rem !important; /* 增加副标题字体大小 */
    margin-bottom: 1.5rem !important;
}

/* 步骤标题字体大小增加 */
.step-title {
    font-size: 1.35rem !important; /* 增加步骤标题字体大小 */
    font-weight: 600 !important;
}

/* 步骤描述字体大小增加 */
.step-desc {
    font-size: 1.05rem !important; /* 增加步骤描述字体大小 */
    margin-top: 0.5rem !important;
}

/* 步骤图标大小增加 */
.step-icon {
    font-size: 1.5rem !important; /* 增加图标大小 */
}

/* 箭头大小增加 */
.step-arrow {
    font-size: 2.25rem !important; /* 增加箭头大小 */
    margin: 0.75rem 0 !important;
}

/* 调整步骤卡片大小以适应更大的文本 */
.step-preview {
    max-width: 240px !important; /* 增加卡片宽度 */
    padding: 1.2rem !important; /* 增加内边距 */
}

/* 响应式调整 */
@media (max-width: 768px) {
    .methodology-preview .preview-header h3 {
        font-size: 1.5rem !important;
    }
    
    .methodology-preview .preview-header p {
        font-size: 1.05rem !important;
    }
    
    .step-title {
        font-size: 1.2rem !important;
    }
    
    .step-desc {
        font-size: 0.95rem !important;
    }
    
    .step-preview {
        padding: 1rem !important;
    }
}/* 调整首页"诺塔三步法"模块间距和高度对齐 */

/* 减小步骤之间的间距 */
.preview-steps {
    gap: 0.5rem !important; /* 减小步骤之间的间距，原来是1rem */
}

/* 减小箭头的上下边距 */
.step-arrow {
    margin: 0.3rem 0 !important; /* 减小箭头的上下边距，原来是0.75rem */
}

/* 减小步骤卡片的内边距 */
.step-preview {
    padding: 0.9rem !important; /* 减小内边距，原来是1.2rem */
}

/* 调整整体模块的高度和位置 */
.methodology-preview {
    height: 100% !important; /* 确保高度填满容器 */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* 垂直居中内容 */
}

/* 调整预览标题的上边距，使整体更紧凑 */
.preview-header {
    margin-bottom: 1rem !important;
}

/* 调整hero-visual容器的对齐方式 */
.hero-visual {
    display: flex !important;
    align-items: center !important; /* 垂直居中 */
    height: 100% !important;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .preview-steps {
        gap: 0.3rem !important;
    }
    
    .step-arrow {
        margin: 0.2rem 0 !important;
    }
    
    .step-preview {
        padding: 0.8rem !important;
    }
}/* 减小首页"诺塔三步法"模块背景框高度 */

/* 减小整体容器的内边距 */
.methodology-preview {
    padding: 1.2rem !important; /* 进一步减小内边距，原来是1.5rem */
    max-height: 80% !important; /* 将高度缩减为原来的80%（减少五分之一） */
    transform: scale(0.95) !important; /* 稍微缩小整体比例 */
}

/* 进一步减小预览标题的下边距 */
.preview-header {
    margin-bottom: 0.6rem !important; /* 从0.75rem减小到0.6rem */
}

/* 减小预览标题中的段落下边距 */
.methodology-preview .preview-header p {
    margin-bottom: 0.8rem !important; /* 从1rem减小到0.8rem */
    line-height: 1.4 !important; /* 减小行高 */
}

/* 减小标题的上下边距 */
.methodology-preview .preview-header h3 {
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important; /* 减小标题下边距 */
    line-height: 1.3 !important; /* 减小行高 */
}

/* 进一步减小步骤之间的间距 */
.preview-steps {
    gap: 0.3rem !important; /* 从0.4rem减小到0.3rem */
}

/* 进一步减小箭头的上下边距 */
.step-arrow {
    margin: 0.15rem 0 !important; /* 从0.2rem减小到0.15rem */
    line-height: 1 !important; /* 减小行高 */
}

/* 减小步骤卡片的内边距 */
.step-preview {
    padding: 0.65rem !important; /* 从0.8rem减小到0.65rem */
    margin: 0 !important; /* 移除可能的外边距 */
}

/* 减小步骤描述的上边距和行高 */
.step-desc {
    margin-top: 0.25rem !important; /* 从0.3rem减小到0.25rem */
    line-height: 1.3 !important; /* 减小行高 */
}

/* 响应式调整 */
@media (max-width: 768px) {
    .methodology-preview {
        padding: 1rem !important; /* 从1.2rem减小到1rem */
        transform: scale(0.92) !important; /* 在移动设备上进一步缩小 */
    }
    
    .preview-header {
        margin-bottom: 0.4rem !important; /* 从0.5rem减小到0.4rem */
    }
    
    .methodology-preview .preview-header h3 {
        margin-bottom: 0.4rem !important;
    }
    
    .methodology-preview .preview-header p {
        margin-bottom: 0.6rem !important;
    }
    
    .preview-steps {
        gap: 0.2rem !important; /* 从0.25rem减小到0.2rem */
    }
    
    .step-arrow {
        margin: 0.1rem 0 !important; /* 从0.15rem减小到0.1rem */
    }
    
    .step-preview {
        padding: 0.55rem !important; /* 从0.7rem减小到0.55rem */
    }
    
    .step-desc {
        margin-top: 0.15rem !important; /* 从0.2rem减小到0.15rem */
    }
}/* 确保按钮样式在使用a标签时保持一致 */
.hero-buttons a.btn-secondary {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* 更新图标样式 */
.play-icon {
    margin-right: 0.5rem;
}/* 修复案例页面步骤模块的排版问题 */

/* 重置之前的样式 */
.case-step {
    position: static !important; /* 移除相对定位 */
    padding: 1.5rem !important; /* 恢复原始内边距 */
    display: flex !important; /* 使用flexbox布局 */
    flex-direction: row !important; /* 水平排列 */
    align-items: flex-start !important; /* 顶部对齐 */
    gap: 1rem !important; /* 元素之间的间距 */
}

/* 移除之前添加的伪元素 */
.case-step::before {
    display: none !important;
}

/* 重置图标样式 */
.case-step-icon {
    position: static !important; /* 移除绝对定位 */
    font-size: 2rem !important; /* 恢复图标大小 */
    flex-shrink: 0 !important; /* 防止图标缩小 */
    margin-top: 0.2rem !important; /* 微调垂直对齐 */
}

/* 重置内容区域样式 */
.case-step-content {
    flex: 1 !important; /* 占据剩余空间 */
    position: static !important; /* 移除相对定位 */
}

/* 重置标题样式 */
.case-step-content h4 {
    position: static !important; /* 移除绝对定位 */
    margin: 0 0 0.5rem 0 !important; /* 恢复边距 */
    font-weight: 600 !important;
    color: var(--text-inverse) !important;
    display: block !important; /* 块级显示 */
}

/* 重置段落样式 */
.case-step-content p {
    margin: 0 !important;
    color: var(--text-muted) !important;
    font-size: 0.9rem !important;
}

/* 创建标题和图标的内联容器 */
.case-step-header {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 0.5rem !important;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .case-step {
        padding: 1.2rem !important;
        gap: 0.8rem !important;
    }
    
    .case-step-icon {
        font-size: 1.7rem !important;
    }
}/* 联系我们部分的样式修改 */
.contact-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.contact-content {
    flex: 1;
}

.wechat-qr {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.qr-code {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 10px;
    background: white;
}

.qr-text {
    color: var(--text-inverse);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .qr-code {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .qr-code {
        width: 150px;
        height: 150px;
    }
}/* 为各个部分的粒子效果添加样式 */

/* 基础粒子样式 */
.section-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* 鼠标跟随粒子样式 */
.section-mouse-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* 通用浮动动画 */
@keyframes float {
    0% { transform: translate(0, 0); }
    25% { transform: translate(10px, 5px); }
    50% { transform: translate(0, 10px); }
    75% { transform: translate(-10px, 5px); }
    100% { transform: translate(0, 0); }
}

/* 确保各部分有相对定位，以便粒子可以正确定位 */
#flagship-case, #zhijiao-case, #solutions, #about, #contact {
    position: relative;
    overflow: hidden;
}

/* 为不同部分设置不同的粒子颜色 */
#flagship-case .section-particle {
    background-color: rgba(99, 102, 241, 0.15);
}

#zhijiao-case .section-particle {
    background-color: rgba(138, 43, 226, 0.1);
}

#solutions .section-particle {
    background-color: rgba(0, 102, 204, 0.1);
}

#about .section-particle {
    background-color: rgba(22, 33, 62, 0.15);
}

#contact .section-particle {
    background-color: rgba(26, 26, 46, 0.1);
}/* 统一背景特效样式 */

/* 确保背景特效在所有页面/模块中正确显示 */
body {
    background-color: #0a0a15;
    position: relative;
    overflow-x: hidden;
}

/* 为各个部分添加相对定位，以便粒子可以正确定位 */
#methodology, #flagship-case, #zhijiao-case, #solutions, #about, #contact {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* 确保内容在背景之上 */
.container {
    position: relative;
    z-index: 2;
}

/* 为不同部分设置不同的背景色调 */
#home {
    background: linear-gradient(to bottom, rgba(10, 10, 21, 0.7), rgba(10, 10, 21, 0.5));
}

#methodology {
    background: linear-gradient(to bottom, rgba(10, 10, 21, 0.5), rgba(22, 33, 62, 0.5));
}

#flagship-case {
    background: linear-gradient(to bottom, rgba(22, 33, 62, 0.5), rgba(44, 0, 81, 0.5));
}

#zhijiao-case {
    background: linear-gradient(to bottom, rgba(44, 0, 81, 0.5), rgba(13, 71, 161, 0.5));
}

#solutions {
    background: linear-gradient(to bottom, rgba(13, 71, 161, 0.5), rgba(0, 102, 204, 0.5));
}

#about {
    background: linear-gradient(to bottom, rgba(0, 102, 204, 0.5), rgba(22, 33, 62, 0.5));
}

#contact {
    background: linear-gradient(to bottom, rgba(22, 33, 62, 0.5), rgba(10, 10, 21, 0.7));
}

/* 微妙的扫描线效果 */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.02) 2px,
        rgba(0, 255, 255, 0.02) 4px
    );
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

/* 确保背景特效不会干扰用户交互 */
canvas {
    pointer-events: none;
}

/* 优化移动设备体验 */
@media (max-width: 768px) {
    .scanlines {
        opacity: 0.15;
    }
    
    #unified-background {
        opacity: 0.7;
    }
}/* 为各个部分添加特定的背景样式 */

/* 首页部分 */
#home {
    position: relative;
    overflow: hidden;
}

/* 方法论部分 */
#methodology {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(10, 10, 21, 0.5), rgba(22, 33, 62, 0.5));
}

/* 旗舰案例部分 */
#flagship-case {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(22, 33, 62, 0.5), rgba(44, 0, 81, 0.5));
}

/* 西部公益项目部分 */
#zhijiao-case {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(44, 0, 81, 0.5), rgba(13, 71, 161, 0.5));
}

/* 解决方案部分 */
#solutions {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(13, 71, 161, 0.5), rgba(0, 102, 204, 0.5));
}

/* 关于我们部分 */
#about {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0, 102, 204, 0.5), rgba(22, 33, 62, 0.5));
}

/* 联系我们部分 */
#contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(22, 33, 62, 0.5), rgba(10, 10, 21, 0.7));
}

/* 为每个部分添加微妙的粒子效果 */
.section-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* 为不同部分设置不同的粒子颜色 */
#methodology .section-particle {
    background-color: rgba(99, 102, 241, 0.15);
}

#flagship-case .section-particle {
    background-color: rgba(99, 102, 241, 0.15);
}

#zhijiao-case .section-particle {
    background-color: rgba(138, 43, 226, 0.1);
}

#solutions .section-particle {
    background-color: rgba(0, 102, 204, 0.1);
}

#about .section-particle {
    background-color: rgba(22, 33, 62, 0.15);
}

#contact .section-particle {
    background-color: rgba(26, 26, 46, 0.1);
}

/* 确保内容在背景之上 */
.container {
    position: relative;
    z-index: 2;
}

/* 添加微妙的光晕效果 */
.section-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

/* 为不同部分设置不同的光晕颜色 */
#methodology .section-glow {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
}

#flagship-case .section-glow {
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, transparent 70%);
}

#zhijiao-case .section-glow {
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
}

#solutions .section-glow {
    background: radial-gradient(circle, rgba(0, 102, 204, 0.3) 0%, transparent 70%);
}

#about .section-glow {
    background: radial-gradient(circle, rgba(22, 33, 62, 0.3) 0%, transparent 70%);
}

#contact .section-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
}

/* 优化移动设备体验 */
@media (max-width: 768px) {
    .section-glow {
        opacity: 0.1;
    }
}