/**
 * Vue 组件样式
 */

/* ==================== Header 深色主题 ==================== */
.header-dark {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-dark.scrolled {
    background: rgba(10, 22, 40, 0.98);
}

.header-dark-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.header-dark .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.header-dark .logo-img {
    height: 40px;
    width: auto;
}

.header-dark .logo-text {
    font-size: 1.25rem;
    font-weight: 600;
}

.header-dark .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-dark .nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.header-dark .nav-link:hover,
.header-dark .nav-link.active {
    color: #4facfe;
}

.header-dark .nav-link.active {
    padding: 8px 10px;
}

.header-dark .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #4facfe;
}

.header-dark .mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.header-dark .mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.header-dark .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header-dark .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.header-dark .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .header-dark-nav {
        padding: 0 20px;
    }

    .header-dark .mobile-menu-btn {
        display: flex;
    }

    .header-dark .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .header-dark .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header-dark .nav-link {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
}

/* ==================== Header 组件 ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-default);
    box-shadow: 0 2px 20px rgba(248, 109, 16, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header .logo-img {
    height: 48px;
    width: auto;
}

.header .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header .nav-item {
    position: relative;
}

.header .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-default);
    position: relative;
}

.header .nav-link:hover,
.header .nav-link.active {
    color: var(--primary-dark);
    background: rgba(248, 109, 16, 0.12);
}

.header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* 下拉菜单 */
.header .has-dropdown {
    position: relative;
}

.header .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: var(--light-card);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.header .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.header .dropdown-link {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-default);
}

.header .dropdown-link:hover {
    background: rgba(248, 109, 16, 0.1);
    color: var(--primary-color);
}

/* 移动端菜单按钮 */
.header .mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.header .mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-default);
}

.header .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.header .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
    .header .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px;
        background: var(--light-bg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .header .nav-links.active {
        transform: translateX(0);
    }
    
    .header .nav-link {
        padding: 16px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .header .nav-item.has-dropdown .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .header .nav-item.has-dropdown:hover .dropdown {
        display: block;
    }
    
    .header .mobile-menu-btn {
        display: flex;
    }
    
    .header .nav {
        padding: 0 20px;
    }
}

/* ==================== Page Header 组件 ==================== */
.page-header {
    padding: 120px 0 80px;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
}

.page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
}

.page-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-default);
}

.page-header .breadcrumb a:hover {
    color: #FFFFFF;
}

.page-header .breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-header .page-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header .page-desc {
        font-size: 16px;
    }
}

/* ==================== CTA 组件 ==================== */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    text-align: center;
}

.cta-section .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 109, 16, 0.15) 0%, #FFFFFF 50%, rgba(248, 109, 16, 0.15) 100%);
}

.cta-section .container {
    position: relative;
}

.cta-section .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-section .cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.4;
    color: var(--text-primary);
}

.cta-section .cta-content p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-section .btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-section .btn-primary {
    background: var(--primary-color);
    color: #FFFFFF;
}

.cta-section .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(248, 109, 16, 0.3);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-section .btn-secondary:hover {
    background: rgba(248, 109, 16, 0.1);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-section .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-section .cta-content p {
        font-size: 16px;
    }
    
    .cta-section .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ==================== Footer 组件 ==================== */
.app-footer {
    background: var(--primary-color);
    color: #FFFFFF;
    padding: 48px 0 32px;
}

.app-footer .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E0E0E0;
}

.app-footer .footer-logo {
    display: block;
}

.app-footer .footer-logo img {
    height: 36px;
    width: auto;
    transition: opacity 0.3s;
}

.app-footer .footer-logo:hover img {
    opacity: 0.85;
}

.app-footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-footer .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-footer .contact-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.app-footer .contact-phone {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.app-footer .contact-phone:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.app-footer .contact-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.app-footer .footer-bottom {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.app-footer .footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    line-height: 1.6;
}

.app-footer .footer-bottom a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s;
}

.app-footer .footer-bottom a:hover {
    color: #FFFFFF;
}

/* Footer 深色主题 */
.app-footer.dark {
    background: #050a12;
}

.app-footer.dark .footer-content {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.app-footer.dark .business-label {
    color: rgba(255, 255, 255, 0.5);
}

.app-footer.dark .business-phone {
    color: #FFFFFF;
}

.app-footer.dark .footer-bottom {
    background: transparent;
}

.app-footer.dark .footer-bottom p,
.app-footer.dark .footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
}

.app-footer.dark .footer-bottom a:hover {
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .app-footer {
        padding: 36px 0 28px;
    }
    
    .app-footer .footer-content {
        flex-direction: column;
        text-align: center;
        padding-bottom: 28px;
    }
    
    .app-footer .footer-logo img {
        height: 32px;
    }
    
    .app-footer .business-phone {
        font-size: 18px;
    }
}


/* ==================== 基础布局 ==================== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== 公共设备页面样式 ==================== */

/* 产品概述 */
.product-overview { padding: 100px 0; background: #fff; }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.overview-content .section-tag {
    display: inline-block; padding: 8px 16px; background: rgba(248, 109, 16, 0.1);
    border: 1px solid rgba(248, 109, 16, 0.3); border-radius: 20px;
    font-size: 13px; font-weight: 600; color: #F86D10; margin-bottom: 20px;
}
.overview-title { font-size: 36px; font-weight: 700; color: #333; margin-bottom: 20px; line-height: 1.3; }
.overview-desc { font-size: 16px; color: #666; line-height: 1.8; margin-bottom: 40px; }
.overview-features { display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-icon svg { width: 56px; height: 56px; color: #F86D10; }
.feature-icon img { width: 56px; height: 56px; object-fit: contain; }
.feature-text h4 { font-size: 18px; font-weight: 600; color: #333; margin-bottom: 4px; }
.feature-text p { font-size: 14px; color: #666; }
.overview-image { position: relative; }
.image-placeholder {
    background: linear-gradient(135deg, #FFF7F0 0%, #FFF0E6 100%); border-radius: 20px;
    height: 500px; display: flex; flex-direction: column; align-items: center;
    justify-content: center; border: 2px dashed rgba(248, 109, 16, 0.3);
}
.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.placeholder-icon {
    width: 120px; height: 120px; background: rgba(248, 109, 16, 0.1); border-radius: 24px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.placeholder-icon svg { width: 60px; height: 60px; color: #F86D10; }
.image-placeholder span { color: #F86D10; font-weight: 500; }

/* 核心技术 */
.core-tech { padding: 100px 0; background: linear-gradient(180deg, #FFF7F0 0%, #FFFFFF 100%); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-tag {
    display: inline-block; padding: 8px 16px; background: rgba(248, 109, 16, 0.1);
    border: 1px solid rgba(248, 109, 16, 0.3); border-radius: 20px;
    font-size: 13px; font-weight: 600; color: #F86D10; margin-bottom: 16px;
}
.section-header .section-title { font-size: 36px; font-weight: 700; color: #333; margin-bottom: 16px; }
.section-header .section-subtitle { font-size: 16px; color: #666; max-width: 500px; margin: 0 auto; }
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tech-card {
    background: white; border-radius: 16px; padding: 40px 24px; text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s ease;
}
.tech-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(248, 109, 16, 0.15); }
.tech-icon {
    width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.tech-icon svg { width: 80px; height: 80px; color: #F86D10; }
.tech-icon img { width: 80px; height: 80px; object-fit: contain; }
.tech-card h3 { font-size: 20px; font-weight: 600; color: #333; margin-bottom: 12px; }
.tech-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* 产品规格 */
.product-specs { padding: 100px 0; background: #fff; }
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.spec-card {
    background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 2px solid transparent; transition: all 0.3s ease; position: relative;
}
.spec-card:hover { border-color: rgba(248, 109, 16, 0.3); }
.spec-card.featured { border-color: #F86D10; transform: scale(1.02); }
.spec-badge {
    position: absolute; top: 12px; right: 12px; z-index: 10;
    background: linear-gradient(135deg, #F86D10 0%, #FF9500 100%); color: white;
    padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 600;
}
.spec-image { width: 100%; height: 200px; overflow: hidden; }
.spec-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-placeholder.small { width: 100%; height: 100%; background: linear-gradient(135deg, #FFF7F0 0%, #FFF0E6 100%); display: flex; align-items: center; justify-content: center; }
.spec-header { padding: 20px 24px 16px; }
.spec-header h3 { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 8px; }
.spec-intro { font-size: 14px; color: #666; line-height: 1.6; display: block; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #eee; }
.image-placeholder.small svg { width: 60px; height: 60px; color: #F86D10; }
.spec-list { list-style: none; padding: 0 24px 24px; }
.spec-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.spec-list li:last-child { border-bottom: none; }
.spec-list li span:first-child { color: #666; }
.spec-list li span:last-child { color: #333; font-weight: 500; }

/* 应用场景 */
.scenarios { padding: 100px 0; background: linear-gradient(180deg, #FFFFFF 0%, #FFF7F0 100%); }
.scenarios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.scenario-card {
    background: white; border-radius: 16px; padding: 40px 32px; text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s ease;
}
.scenario-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(248, 109, 16, 0.12); }
.scenario-icon {
    width: 72px; height: 72px;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.scenario-icon svg { width: 72px; height: 72px; }
.scenario-icon img { width: 72px; height: 72px; object-fit: contain; }
.scenario-card h3 { font-size: 20px; font-weight: 600; color: #333; margin-bottom: 12px; }
.scenario-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* 借还流程 */
.process-section { padding: 100px 0; background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.process-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, rgba(248, 109, 16, 0.2) 0%, rgba(248, 109, 16, 0.6) 50%, rgba(248, 109, 16, 0.2) 100%);
}
.process-card {
    background: white; border-radius: 20px; padding: 40px 32px; text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); position: relative; z-index: 1;
    transition: all 0.3s ease;
}
.process-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(248, 109, 16, 0.12); }
.process-number {
    width: 48px; height: 48px; background: linear-gradient(135deg, #F86D10 0%, #FF9500 100%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; font-size: 18px; font-weight: 700; color: white;
}
.process-icon {
    width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.process-icon svg { width: 80px; height: 80px; color: #F86D10; }
.process-icon img { width: 80px; height: 80px; object-fit: contain; }
.process-card h3 { font-size: 20px; font-weight: 600; color: #333; margin-bottom: 12px; }
.process-card p { font-size: 14px; color: #666; line-height: 1.6; }

@media (max-width: 768px) {
    .process-grid { grid-template-columns: 1fr; gap: 24px; }
    .process-grid::before { display: none; }
}

/* 响应式 */
@media (max-width: 1024px) {
    .overview-grid { grid-template-columns: 1fr; gap: 40px; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .specs-grid { grid-template-columns: 1fr; }
    .scenarios-grid { grid-template-columns: repeat(2, 1fr); }
    .config-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .overview-title { font-size: 28px; }
    .section-header .section-title { font-size: 28px; }
    .tech-grid { grid-template-columns: 1fr; }
    .scenarios-grid { grid-template-columns: 1fr; }
    .config-grid { grid-template-columns: 1fr; }
}

/* ==================== AppSpaceConfig 组件样式 ==================== */
.space-config-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFF7F0 0%, #FFFFFF 100%);
}
.config-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.config-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}
.config-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(248, 109, 16, 0.15);
    border-color: rgba(248, 109, 16, 0.3);
}
.config-card.featured {
    border-color: #F86D10;
    transform: scale(1.02);
}
.config-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}
.config-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: linear-gradient(135deg, #F86D10 0%, #FF9500 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}
.config-image {
    height: 160px;
    background: linear-gradient(135deg, #FFF7F0 0%, #FFF0E6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.config-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.config-image svg { width: 60px; height: 60px; color: #F86D10; }
.config-content {
    padding: 24px;
}
.config-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.config-content > p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}
.config-list {
    list-style: none;
    padding: 0;
}
.config-list li {
    font-size: 13px;
    color: #666;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}
.config-list li:last-child { border-bottom: none; }

/* ==================== AppContactForm 联系我们表单组件样式 ==================== */
/* ==================== AppHero 组件样式 ==================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 1080px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
    overflow: hidden;
    padding-top: 70px;
}

.hero-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.hero-section .hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,22,40,0.4) 0%, rgba(10,22,40,0.8) 100%);
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 800px;
}

.hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-section .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
    }
    .hero-section .hero-title {
        font-size: 2rem;
    }
    .hero-section .hero-subtitle {
        font-size: 1rem;
    }
}

/* ==================== AppContactForm 组件样式 ==================== */
.contact-form-section {
    width: 100%;
}

.contact-form-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 1080px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-form-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-form-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.5) 100%);
}

.contact-form-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
}

.contact-form-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

.contact-form-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 32px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input {
    width: 100%;
    height: 52px;
    padding: 0 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 15px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    outline: none;
}

.contact-form input:focus {
    border-color: #4facfe;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(79, 172, 254, 0.2);
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-submit-btn {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79, 172, 254, 0.4);
}

.contact-form-tip {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 16px;
}

/* 响应式 */
@media (max-width: 768px) {
    .contact-form-wrapper {
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }
    
    .contact-form-content {
        justify-content: center;
    }
    
    .contact-form-box {
        padding: 32px 24px;
    }
    
    .contact-form-title {
        font-size: 24px;
    }
}

/* ==================== Toast 消息提示样式 ==================== */
.toast-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    max-width: 400px;
}

.toast-message .toast-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

/* 成功样式 */
.toast-success {
    background: linear-gradient(135deg, #52c41a 0%, #73d13d 100%);
    color: #fff;
}

.toast-success .toast-icon {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* 错误样式 */
.toast-error {
    background: linear-gradient(135deg, #ff4d4f 0%, #ff7875 100%);
    color: #fff;
}

.toast-error .toast-icon {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* 警告样式 */
.toast-warning {
    background: linear-gradient(135deg, #faad14 0%, #ffc53d 100%);
    color: #fff;
}

.toast-warning .toast-icon {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* 信息样式 */
.toast-info {
    background: linear-gradient(135deg, #1890ff 0%, #40a9ff 100%);
    color: #fff;
}

.toast-info .toast-icon {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Toast 动画 */
@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}
