/* Global Styles */
:root {
    --primary-color: #6C5CE7;
    --secondary-color: #a29bfe;
    --background-color: #f8f9fc;
    --text-color: #2d3436;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --light-bg: #f8f9fa;
    --border-radius: 12px;
    --card-border-color: rgba(108, 92, 231, 0.1);
    --bs-primary-rgb: 105, 93, 223;
    --bs-secondary-rgb: 162, 155, 254;
    
    /* 新增灰色系 */
    --gray-light: #f8f9fa;
    --gray-medium: #636e72;
    --gray-dark: #2d3436;
    --gray-border: #e9e9e9;
    --gray-text: #666;
    --gray-muted: #999;
    
    /* 新增橙色系 */
    --orange-primary: #ff7675;
    --orange-secondary: #fd79a8;
    --orange-light: #ffeaa7;
    --orange-warning: #fdcb6e;
    --orange-google: #fbbc04;
    
    /* 新增绿色系 */
    --green-primary: #00b894;
    --green-secondary: #00cec9;
    --green-success: #4CAF50;
    --green-light: #a7f3d0;
    --green-google: #34a853;
    
    /* 新增红色系 */
    --red-primary: #e74c3c;
    --red-secondary: #ff6b6b;
    --red-danger: #dc3545;
    --red-error: #e17055;
}

/* ===== TRADE ERP STYLES ===== */
/* Trade Hero Banner */
.trade_hero-banner {
    background: url('../images/trade_erp_banner_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 45vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    position: relative;
}

/* Global Shop Hero Banner */
.global_shop-hero-banner {
    background: url('../images/global_shop_banner_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 45vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    position: relative;
}

.trade_hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(116, 185, 255, 0.1) 100%);
    pointer-events: none;
}

.trade_hero-banner .container {
    position: relative;
    z-index: 2;
}

.trade_hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 500;
    font-size: 1.1rem;
}

.trade_hero-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.trade_hero-description {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1.25rem;
}

.trade_hero-cta .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trade_hero-cta .btn-light {
    background: #ffffff;
    color: var(--primary-color);
    border: none;
}

.trade_hero-cta .btn-light:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

.trade_hero-cta .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    background: transparent;
}

.trade_hero-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.trade_hero-image {
    text-align: center;
    position: relative;
}

.trade_hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

/* Trade Introduction Card */
.trade_intro-card {
    background: linear-gradient(135deg, var(--gray-light) 0%, #ffffff 100%);
    border: 1px solid var(--card-border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.trade_section-title {
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #6b5be0, #a393ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trade_section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.8;
}

.trade_intro-text {
    color: var(--gray-medium);
    font-size: 1rem;
    line-height: 2;
    text-align: justify;
    text-indent: 2em;
}

/* Trade Statistics */
.trade_highlight-stats {
    margin-top: 2rem;
}

.trade_stat-item {
    text-align: left;
    padding: 1rem 0 1rem 2rem;
    border-left: 4px solid var(--secondary-color);

}

.trade_stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trade_stat-label {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin: 0;
}

/* Trade System Preview */
.trade_system-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 360px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.trade_system-icon {
    font-size: 4rem;
    color: #ffffff;
    opacity: 0.9;
    animation: trade_pulse 2s ease-in-out infinite;
}

.trade_system-image {
    max-width: 90%;
    height: auto;
    max-height: 160px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.trade_system-image:hover {
    transform: scale(1.05);
}

@keyframes trade_pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Trade Feature Cards */
.trade_feature-card {
    padding: 2rem;
    background: #ffffff;
    border: 1px solid var(--card-border-color);
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trade_feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trade_feature-card:hover::before {
    transform: scaleX(1);
}

.trade_feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(var(--bs-primary-rgb), 0.15);
    border-color: var(--primary-color);
}

.trade_feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.trade_feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.trade_feature-icon i {
    font-size: 1.25rem;
    color: #ffffff;
}

.trade_feature-title {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
}

.trade_feature-desc {
    color: var(--gray-medium);
    line-height: 1.8;
    margin: 0;
}

/* Trade Agent Cards */
.trade_agent-card {
    background: #ffffff;
    border: 1px solid var(--card-border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.trade_agent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(var(--bs-primary-rgb), 0.15);
    border-color: var(--primary-color);
}

.trade_agent-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.trade_agent-avatar::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(1);
    transition: all 0.3s ease;
}

.trade_agent-card:hover .trade_agent-avatar::after {
    animation: trade_avatar-ring 2s ease-in-out infinite;
}

@keyframes trade_avatar-ring {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

.trade_agent-avatar i {
    font-size: 2rem;
    color: #ffffff;
    z-index: 1;
    position: relative;
}

.trade_agent-name {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.trade_agent-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.trade_agent-skills {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.trade_agent-skills li {
    color: var(--gray-medium);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-border);
    position: relative;
    padding-left: 1.5rem;
}

.trade_agent-skills li:last-child {
    border-bottom: none;
}

.trade_agent-skills li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: bold;
}

/* Trade Advantage Items */
.trade_advantage-item {
    text-align: center;
    padding: 2rem 1rem;
    background: #ffffff;
    border: 1px solid var(--card-border-color);
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.trade_advantage-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(var(--bs-primary-rgb), 0.1);
    border-color: var(--primary-color);
}

.trade_advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.trade_advantage-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.trade_advantage-item h5 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.trade_advantage-item p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin: 0;
}

/* Trade CTA Section */
.trade_cta-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    color: #ffffff;
}

.trade_cta-section h3 {
    color: #ffffff;
    font-weight: 700;
}

.trade_cta-section .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trade_section-title {
        font-size: 1.75rem;
    }
    
    .trade_stat-number {
        font-size: 2rem;
    }
    
    .trade_system-preview {
        height: 150px;
    }
    
    .trade_system-icon {
        font-size: 3rem;
    }
    
    .trade_feature-card,
    .trade_agent-card {
        margin-bottom: 1.5rem;
    }
    
    .trade_cta-section {
        padding: 2rem 1rem;
    }
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--background-color);
}

/* 桌面端顶部间距 - 仅在大屏幕设备上应用 */
@media (min-width: 992px) {
    body {
        padding-top: 80px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.5px;
}

.display-1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
}

/* Cards */
.card {
    background: #ffffff;
    border: 1px solid var(--card-border-color);
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(var(--bs-primary-rgb), 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(var(--bs-primary-rgb), 0.1);
    transform: translateY(-4px);
}

/* Buttons */
.btn {
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    cursor: pointer;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    cursor: pointer;
}

/* Sections */
section {
    padding: 5rem 0;
}

.banner-section {
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Spacing */
.mb-5 {
    margin-bottom: 3rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .display-1 {
        font-size: 3rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* 导航栏样式 */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    background-color: white !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
}

.navbar-brand i {
    font-size: 1.8rem;
}

.nav-item {
    cursor: pointer;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: var(--text-color) !important;
    transition: color 0.3s ease;
    cursor: pointer; /* 基础声明即可 */
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* 下拉菜单样式 */
.dropdown-menu {
    border: 2px solid var(--gray-border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 200px;
    width:800px;
    margin-top: 0.5rem;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
    left: -260px;
}

/* Mega下拉菜单样式 */
.mega-dropdown {
    min-width: 600px;
    padding: 1.5rem;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(var(--bs-primary-rgb), 0.15);
}

.dropdown-section {
    padding: 0;
}

.dropdown-header {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-medium);
    margin-bottom: 1rem;
    padding: 0.8rem 0;
}

.dropdown-subheader {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 1rem 0 0.5rem 0;
    padding-left: 0rem;
}

.dropdown-section-content {
    padding-left: 0rem;
}

.dropdown-icon {
    display: inline-block;
    width: 40px;
    height: 20px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 4px;
    text-align: center;
    line-height: 20px;
    font-size: 0.7rem;
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-weight: 500;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 确保下拉菜单在hover时保持显示 */
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 产品与服务下拉菜单样式 - 禁用Bootstrap点击行为，只保留hover */
#productsDropdown {
    pointer-events: auto;
}

#productsDropdown:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
}

/* 确保产品与服务菜单位置在所有状态下保持一致 */
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
    position: absolute !important;
    top: 100% !important;
    left: -260px !important;
}

/* 财务团队下拉菜单hover效果 */
.dropdown:hover .finance-team-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.finance-team-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* 确保菜单位置在所有状态下保持一致 */
.finance-team-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) !important;
    position: absolute !important;
    top: auto !important;
    bottom: 100% !important;
    left: 50% !important;
}

/* 禁用Bootstrap的点击切换行为，只保留hover */
#financeTeamDropdown {
    pointer-events: auto;
}

#financeTeamDropdown:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
}

/* 优化下拉菜单项样式 */
.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
}

.dropdown-item i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

/* 财务团队下拉菜单特殊样式 - 向上展开 */
.finance-team-dropdown {
    position: absolute;
    top: auto;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 280px;
    width: auto;
    max-width: 320px;
    margin-bottom: 0.5rem;
    margin-top: 0;
    background: #ffffff;
    border: 1px solid rgba(108, 92, 231, 0.15);
    border-radius: 12px;
    box-shadow: 0 -8px 24px rgba(108, 92, 231, 0.15);
    padding: 0.5rem 0;
    z-index: 1050;
    /* 禁用Bootstrap默认的点击行为 */
    pointer-events: auto;
}

.finance-team-dropdown.show {
    transform: translateX(-50%) translateY(0);
}

.finance-team-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    background: transparent;
}

.finance-team-dropdown .dropdown-item:hover {

}

.finance-team-dropdown .dropdown-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 0.75rem;
    object-fit: cover;
    border: 2px solid rgba(108, 92, 231, 0.1);
    transition: all 0.3s ease;
}

.finance-team-dropdown .dropdown-item:hover .dropdown-avatar {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.finance-team-dropdown .dropdown-item span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.dropdown-item:hover {
    background-color: rgba(108, 92, 231, 0.1);
    color: var(--primary-color);
}

/* 确保下拉菜单在移动设备上也能正常工作 */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: transparent;
        border: none;
        box-shadow: none;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
    }
    
    /* 财务团队下拉菜单移动端适配 */
    .finance-team-dropdown {
        position: static !important;
        transform: none !important;
        left: auto !important;
        bottom: auto !important;
        top: auto !important;
        width: 100% !important;
        min-width: auto !important;
        max-width: none !important;
        margin: 0.5rem 0 0 0 !important;
        background: #ffffff !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        padding: 0.5rem 0 !important;
    }
    
    .finance-team-dropdown .dropdown-item {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .finance-team-dropdown .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .finance-team-dropdown .dropdown-avatar {
        width: 28px;
        height: 28px;
        margin-right: 0.5rem;
    }
    
    .finance-team-dropdown .dropdown-item span {
        font-size: 0.85rem;
    }
    
    /* Mega下拉菜单移动端适配 */
    .mega-dropdown {
        min-width: 100%;
        padding: 1rem;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        background-color: transparent;
    }
    
    .mega-dropdown .row {
        flex-direction: column;
    }
    
    .mega-dropdown .col-md-6,
    .mega-dropdown .col-md-3 {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .dropdown-section {
        background: #ffffff;
        border-radius: 8px;
        padding: 1rem;
        margin-bottom: 0.5rem;
        box-shadow: 0 2px 8px rgba(var(--bs-primary-rgb), 0.1);
    }
    
    .dropdown-header {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    /* 移动端导航菜单优化 */
    .navbar-collapse {
        background: #ffffff;
        border-radius: 8px;
        margin-top: 0.5rem;
        padding: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    /* 移动端按钮组优化 */
    .nav-buttons {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .dropdown-subheader {
        font-size: 0.8rem;
        margin: 0.75rem 0 0.5rem 0;
    }
    
    /* 移动端专用菜单样式 - Bootstrap简洁版 */
    .mobile-menu-section {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid #dee2e6;
        border-bottom: 1px solid #dee2e6;
    }
    
    .mobile-menu-header {
        font-weight: 500;
        padding: 0.5rem 1rem !important;
        color: var(--text-color) !important;
        transition: color 0.3s ease;
        cursor: pointer;
    }
    
    .mobile-submenu {
        margin-bottom: 1rem;
    }
    
    .mobile-submenu-header {
        font-weight: 500;
        color: var(--primary-color);
        font-size: 0.9rem;
        padding: 0.25rem 0 0 2rem;
        margin-bottom: 0.25rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    
    .mobile-submenu .navbar-nav {
        padding-left: 0;
        margin-bottom: 0;
    }
    
    .mobile-submenu-item .nav-link {
        font-size: 0.9rem;
        color: #495057;
        border: none;
        border-radius: 0;
        transition: all 0.2s ease;
        padding-left: 2rem !important;
    }
    
    .mobile-submenu-item .nav-link:hover {
        color: #007bff;
        background-color: rgba(0, 123, 255, 0.08);
        padding-left: 1.2rem;
    }
    
    .mobile-submenu-item .nav-link.text-muted {
        color: #6c757d !important;
    }
    
    .mobile-submenu-item .nav-link.text-muted:hover {
        color: #6c757d !important;
        background-color: transparent;
        padding-left: 1rem;
    }
    
    /* 移动端导航收起状态优化 */
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
}

/* 导航按钮样式 */
.nav-buttons {
    display: flex;
    gap: 0.5rem;
}

.nav-buttons .btn {
    padding: 0.25rem 0.8rem;
    font-weight: 400;
    font-size: 0.9rem;
}

/* 图标样式 */
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-icon {
    width: 24px;
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.social-icon {
    font-size: 1.5rem;
    color: white;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    /* 产品卡片移动端优化 */
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .product-card .img-container {
        max-width: 120px;
        margin: 0 auto 1rem;
    }
    
    /* DIX AI做什么部分移动端优化 */
    .sectionhow .col-md-6 {
        margin-bottom: 2rem;
    }
    
    .content-block {
        padding: 1.5rem;
        text-align: center;
    }
    
    .content-block h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .feature-item {
        justify-content: center;
        text-align: left;
        font-size: 0.9rem;
    }
    
    .feature-item i {
        margin-right: 0.8rem;
    }
    
    /* 联系我们部分移动端优化 */
    .contact-info .d-flex {
        margin-left: 0 !important;
        justify-content: center;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .contact-info .rounded-circle {
        margin-right: 1rem;
    }
    
    /* 视频容器移动端优化 */
    #video-container .col-lg-6 {
        margin-bottom: 2rem;
    }
    
    #video-container video {
        max-height: 200px;
    }
    
    /* CTA部分移动端优化 */
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta .lead {
        font-size: 1rem;
    }
    
    /* 二维码图片移动端优化 */
    .text-center img[alt="联系二维码"] {
        max-width: 200px !important;
    }
}

/* AI助手头像样式 */
.ai-profile .avatar-container {
    width: 240px;
    height: 240px;
    margin: 0 auto;
    position: relative;
}

.ai-profile .avatar-container img {
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2);
    transition: transform 0.3s ease;
}

.ai-profile .avatar-container img:hover {
    transform: scale(1.05);
}

.ai-profile .rating {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 20px;
}

.ai-profile .rating .fas.fa-star {
    color: var(--orange-warning);
}

/* 核心能力图标样式 */
.rounded-circle.bg-primary {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rounded-circle.bg-primary i {
    font-size: 1rem;
}

/* 开始使用步骤图标样式 */
.step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 使用场景图标样式 */
.scenario-item i {
    font-size: 2rem;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 专业背景图标样式 */
.card-body .list-unstyled i {
    width: 20px;
    text-align: center;
}

/* 个人资料卡片样式 */
.profile-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.profile-card .avatar-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
}

.profile-card .avatar-container::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, var(--primary-color), #8E7BF7);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
}

/* 专业背景卡片样式 */
.experience-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.experience-card .list-unstyled li {
    position: relative;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--card-border-color);
}

.experience-card .list-unstyled li:last-child {
    margin-bottom: 0;
}

/* 核心能力卡片样式 */
.capabilities-card .rounded-circle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    box-shadow: 0 4px 8px rgba(108, 92, 231, 0.2);
}

/* 使用场景卡片样式 */
.scenario-item {
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--card-border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.scenario-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.1);
    transform: translateY(-2px);
}

/* 开始使用卡片样式 */
.steps .step {
    position: relative;
}

.steps .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 16px;
    width: 2px;
    height: calc(100% - 24px);
    background: var(--card-border-color);
}

/* Integration Page Styles */
.integration-method {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white !important;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
    box-shadow: 0 4px 6px rgba(var(--bs-primary-rgb), 0.1);
}

.integration-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(var(--bs-primary-rgb), 0.15);
}

.integration-method .rounded-circle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #a393ff);
    transition: transform 0.3s ease;
}

.integration-method:hover .rounded-circle {
    transform: scale(1.1);
}

.integration-method h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3436;
}

.integration-method .list-unstyled li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(108, 92, 231, 0.1);
}

.integration-method .list-unstyled li:last-child {
    border-bottom: none;
}

.integration-method .text-success {
    color: var(--green-primary) !important;
}

/* SSO Login Card Styles */
.sso-login-card {
    background: white;
    border: none;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.1);
    border-radius: 16px;
}

.sso-login-card .form-control {
    border: 2px solid rgba(108, 92, 231, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sso-login-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

/* Database and API Demo Styles */
.demo-section {
    background: white;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
    box-shadow: 0 4px 6px rgba(var(--bs-primary-rgb), 0.1);
    transition: all 0.3s ease;
}

.demo-section:hover {
    box-shadow: 0 8px 15px rgba(108, 92, 231, 0.15);
}

.demo-section img {
    transition: transform 0.3s ease;
}

.demo-section:hover img {
    transform: scale(1.05);
}

.demo-section pre {
    background: #2d3436 !important;
    border-radius: 8px;
    padding: 1.5rem !important;
    margin: 0;
}

.demo-section pre code {
    color: #dfe6e9;
    font-size: 0.9rem;
}

/* Hero Section Styles */
.hero-badge {
    background: rgba(108, 92, 231, 0.1) !important;
    color: var(--primary-color) !important;
    font-weight: 500;
    padding: 0.8rem 1.5rem !important;
}

.hero-title {
    background: linear-gradient(90deg, #6b5be0, #a393ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.display-3{
    font-size: 3rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
} 

.hero-subtitle{
    line-height:38px;
    font-size:16px;
}


.btn-outline-primary {
    --bs-btn-color: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--primary-color);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--primary-color);
    --bs-gradient: none;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #7f70f0;
    --bs-btn-hover-border-color: #7f70f0;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #7f70f0;
    --bs-btn-active-border-color: #7f70f0;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}

.Footer{
    font-size: 0.9rem;
    line-height: 1.8;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.5);
}

.Footer div a{
    text-decoration: none;
}
.Footer i{
    color: white;
}

.card-text{
    color: #636e72;
    font-size: 0.9rem;
}

.lead{
    font-weight: 400;
    color: #636e72;
    font-size: 1.1rem;
    line-height: 2;
}

/* 通用禁用样式 */
.dropdown-item.disabled {
    opacity: 0.65;
    background-color: transparent;
    /* 覆盖Bootstrap默认颜色 */
    color: #6c757d !important; 
}

/* 禁用状态图标颜色同步 */
.dropdown-item.disabled .fas {
    color: inherit;
}

.price{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.currency{
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
}
.amount{
    font-size: 1.5rem;
    font-weight: 600;
    font-size: 3rem;
    color: #6C5CE7;
}
.period{
    font-size: 1.5rem;
    font-weight: 400;
    color: #6C5CE7;
}

        /* 基础样式 */
        .contact-badge {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        /* 椭圆形按钮样式 */
        .badge-container {
            background: var(--primary-color);
            color: white;
            font-size: 0.9rem;
            width: 140px;
            height: 40px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: transform 0.2s;
        }

        .badge-container:hover {
            transform: scale(1.1);
            background: #a29bfe;
        }

        .contact-icon {
            color: white;
            font-size: 1.2rem;
        }

        /* 二维码浮层样式 */
        .qr-tooltip {
            position: absolute;
            top: calc(100% + 15px);
            right: 8%;
            background: white;
            border-radius: 12px;
            padding: 15px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        }

        .qr-tooltip::before {
            content: '';
            position: absolute;
            bottom: 100%;
            right: 15px;
            border-width: 8px;
            border-style: solid;
            border-color: transparent transparent white transparent;
        }

        /* 悬停效果 */
        .contact-badge:hover .qr-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* 二维码图片样式 */
        .qr-code {
            width: 280px;
            height: 280px;
            border-radius: 8px;
            display: block;
            background: white;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .contact-badge {
                top: 10px;
                right: 10px;
            }
            
            .qr-tooltip {
                right: -50%;
                transform-origin: top right;
            }
        }

/* 自定义模态框动画 */
.modal-content{
    padding: 1rem;
}
.modal.fade .modal-dialog {
    transform: translateY(50px);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: translateY(0);
}

.modal-title{
    font-size: 20px;
    font-weight: 400;
    color: #6C5CE7;
}


.alert-info{
    background-color: var(--primary-color);
    color: white;
    border: none;
}
.alert-info h5{
    color: white;
}


/* 基础容器样式保持 */
.icon-container {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 0.8rem;
}

/* 悬停动效增强 */
.icon-container:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.icon-container:hover .gradient-icon {
    filter: saturate(1.2);
}

/* 容器悬浮光效 */
.icon-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1) 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 75%
    );
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity 0.3s;
}

.icon-container:hover::after {
    opacity: 1;
}


.sectionhow {
    position: relative;
    background-color: var(--primary-color); /* 底色 */
    min-height: 300px; /* 根据实际情况调整 */
    color: white;
  }
  
  /* 背景图片层 */
  .sectionhow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/howbg.png) fixed center/cover;
    opacity: 1; /* 只控制图片透明度 */
    z-index: 1; /* 保持在下层 */
  }
  
  /* 内容容器 */
  .sectionhow-wrapper {
    position: relative; /* 关键定位 */
    z-index: 2; /* 必须高于伪元素的z-index */
    color: #fff; /* 文字颜色自行调整 */
    padding: 2rem;
    /* 以下属性确保内容不透明 */
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
  }
/* DIX AI做什么部分 - 内容块样式 */
.content-block {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    transition: all 0.3s ease;
}

.content-block:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.content-block h3 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-item i {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item span {
    flex: 1;
}

.logo-ai{
    width: 2.8rem;
    height: 2.1rem;
    margin-right: 0.2rem;
}

/* 产品卡片图片渐变效果 */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card .img-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
}

.product-card .img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.product-card .img-container img.hover-img {
    opacity: 0;
}

.product-card:hover .img-container img.default-img {
    opacity: 0;
}

.product-card:hover .img-container img.hover-img {
    opacity: 1;
}

.product-card .btn-outline-primary{
    font-size: 0.9rem;
}

/* 数字员工名片 Styles */
.agent-card {
    position: relative;
    overflow: hidden;
}

.agent-card .card-body {
    padding: 2rem;
}

.agent-card .agent-avatar {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.15);
}

.agent-card .agent-info {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.agent-card .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(var(--bs-primary-rgb), 0.05);
    text-align: left;
}

.agent-card .info-label {
    min-width: 100px;
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 1rem;
}

.agent-card .info-value {
    flex: 1;
    color: var(--text-color);
}

.agent-card .capabilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agent-card .capabilities-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.agent-card .capabilities-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}
.agent-card h2{
    color: #6C5CE7;
}

.pricing-employee-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1.5rem;
  margin-bottom: 0;
}
.pricing-employee-table thead th {
  background: var(--gray-light);
  color: var(--primary-color);
  font-weight: 600;
  border: none;
  padding: 1rem 0.5rem;
  text-align: center;
  font-size: 1.1rem;
}
.pricing-employee-table tbody tr {
  background: #fff;
  box-shadow: 0 2px 8px rgba(108, 92, 231, 0.07);
  border-radius: 16px;
  transition: box-shadow 0.2s;
}
.pricing-employee-table tbody tr:hover {
  box-shadow: 0 6px 18px rgba(var(--bs-primary-rgb), 0.13);
}
.pricing-employee-table td {
  padding: 1.2rem 0.7rem;
  text-align: center;
  vertical-align: middle;
  border-top: none;
  border-bottom: 1px solid var(--gray-border);
  font-size: 1rem;
  background: #fff;
}
.pricing-employee-table td:first-child {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}
.pricing-employee-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 992px) {
  .pricing-employee-table thead {
    display: none;
  }
  .pricing-employee-table, .pricing-employee-table tbody, .pricing-employee-table tr, .pricing-employee-table td {
    display: block;
    width: 100%;
  }
  .pricing-employee-table tr {
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.07);
    border-radius: 16px;
    background: #fff;
  }
  .pricing-employee-table td {
    text-align: left;
    padding: 0.8rem 1rem;
    border-bottom: none;
    position: relative;
  }
  .pricing-employee-table td:before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 0.98rem;
  }
}

.pricing-employee-card-wrap {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.pricing-employee-table .pricing-support-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.pricing-employee-table .pricing-support-list li {
  margin-bottom: 0.3rem;
  padding-left: 1.2em;
  position: relative;
  color: #636e72;
  font-size: 0.98rem;
}
.pricing-employee-table .pricing-support-list li:before {
  content: '\2714';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 1em;
  top: 0.1em;
}

.pricing-employee-horizontal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.pricing-employee-horizontal-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(var(--bs-primary-rgb), 0.08);
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  min-height: 280px;
}

.pricing-employee-horizontal-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
}

.pricing-employee-horizontal-card:hover {
  box-shadow: 0 8px 24px rgba(var(--bs-primary-rgb), 0.13);
  transform: translateY(-5px);
}

.pricing-employee-horizontal-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  padding: 0.5rem 0 0 0.5rem;
}

.pricing-employee-horizontal-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-employee-horizontal-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 8px rgba(108, 92, 231, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-employee-horizontal-card:hover .pricing-employee-horizontal-avatar {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.15);
  border: 4px solid var(--primary-color);
}

.pricing-employee-horizontal-nickname {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  text-align: center;
}
.pricing-employee-horizontal-desc {
  color: #636e72;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}
.pricing-employee-horizontal-info {
  width: 100%;
  margin-bottom: 0.7rem;
}
.pricing-employee-horizontal-info-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.35rem;
}
.pricing-employee-horizontal-info-label {
  min-width: 48px;
  color: var(--gray-muted);
  font-size: 0.9rem;
  margin-right: 0.4rem;
}
.pricing-employee-horizontal-info-value {
  flex: 1;
  background: #f8f9fa;
  border-radius: 6px;
  padding: 0.8rem 0.8rem;
  font-size: 0.9rem;
  color: var(--gray-dark);
}
.pricing-employee-horizontal-features {
  width: 100%;
  border-radius: 8px;
  padding: 0 1rem 0 1rem;
  margin-bottom: 0.2rem;
}
.pricing-employee-horizontal-features-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}
.pricing-employee-horizontal-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem 1rem;
  column-gap: 1.5rem;
}
.pricing-employee-horizontal-features-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.3em;
  color: #666;
  font-size: 0.89rem;
  line-height: 1.8;
}
.pricing-employee-horizontal-features-list li:before {
  content: '\2714';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 1em;
  top: 0.05em;
}
@media (max-width: 768px) {
  .pricing-employee-horizontal-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  
  .pricing-employee-horizontal-left {
    min-width: auto;
    width: 100%;
  }
  
  .pricing-employee-horizontal-right {
    width: 100%;
  }
  
  .pricing-employee-horizontal-info-row {
    justify-content: center;
  }
  
  .pricing-employee-horizontal-features {
    text-align: left;
  }
  
  .pricing-employee-horizontal-features-list {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

.pricing-employee-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.sticky-top {
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.banner{
    background-image: url(../images/banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* 视频动态效果样式 */
.video-item {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    cursor: pointer;
}

.video-item .video-container {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    padding: 1.6rem 1rem 1rem 1rem;
    border-radius: 1rem;
}

.video-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.video-item:hover .video-container {
}

.video-item.shrink {
    transform: scale(0.95);
    opacity: 0.8;
}

.video-item.enlarge {
    transform: scale(1.05);
    z-index: 10;
}

.video-item.enlarge .video-container {
}

/* 视频播放器样式优化 */
.video-item video {
    transition: all 0.3s ease;
}

.video-item:hover video {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* 移动端优化 */
@media (max-width: 768px) {
    .video-item:hover {
        transform: scale(1.02);
    }
    
    .video-item.enlarge {
        transform: scale(1.02);
    }
    
    .video-item.shrink {
        transform: scale(0.98);
    }
}

/* DIX AI优势与特点新版布局样式 */
.value-section-custom {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
    background: none;
}
.value-section-bg {
    width: 100%;
    background-image: url(../images/value-section-bg.png);
    background-size: 100% 100%;
    background-position: center;
    padding: 60px 0 60px 0;
}
.value-features-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.value-feature-item {
    flex: 1 1 300px;
    min-width: 260px;
    max-width: 360px;
    color: #fff;
    text-align: center;
    background: transparent;
    box-shadow: none;
    padding: 32px 24px 28px 24px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-image: url('../images/value-feature-item.png'); /* 默认背景图，用户替换 */
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), background-image 0.3s;
}
.value-feature-item:hover {
    transform: translateY(-4px);
    background-image: url('../images/value-feature-item-actived.png'); /* 悬停时背景图，用户替换 */
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
}
.value-feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}
.value-feature-item h4 {
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #fff;
}
.value-feature-item p {
    font-size: 1rem;
    color: #f3f3ff;
    line-height: 1.8;
    padding: 10px 40px 10px 40px;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .value-features-row {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    .value-feature-item {
        max-width: 95vw;
    }
}


.contact-section{
    background-image: url(../images/contact-section-bg.png), linear-gradient(180deg, transparent 0%, rgba(var(--bs-primary-rgb), 0.1) 100%);
}

/* Digital Employee Team Introduction - Stacked Cards */
.digital-employee-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,  transparent 0%, rgba(var(--bs-primary-rgb), 0.117) 70%, transparent 100%);
}

.stacked-cards-container {
    position: relative;
    height: 600px;
    perspective: 1000px;
    cursor: pointer; /* 提示用户可以交互 */
    
    /* Flexbox布局属性 */
    order: 1; /* 确保卡片容器在左侧 */
    flex: 1; /* 让卡片容器占据剩余空间 */
    max-width: 1200px; /* 限制最大宽度 */
    
    /* 添加居中显示属性 */
    display: flex;
    align-items: center;
    justify-content: center;
}


.stacked-card {
    position: absolute;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid var(--gray-border);
    transform: translateY(100px) scale(0.9);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    height: 540px; /* 确保卡片有固定高度 */
}

.stacked-card.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    z-index: 3;
}

.stacked-card.prev {
    transform: translateY(-50px) scale(0.95);
    opacity: 0.7;
    z-index: 2;
}

.stacked-card.next {
    transform: translateY(80px) scale(0.85);
    opacity: 0.4;
    z-index: 1;
}

.card-content {
    padding: 3rem;
    display: flex;
    align-items: center;
}

.card-info {
    padding-right: 2rem;
}

.employee-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.employee-badge i {
    margin-right: 0.5rem;
}

.employee-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.employee-title {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.employee-description p {
    font-size: 1rem;
    line-height: 2;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.employee-capabilities h5 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* 新的横向布局样式 */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-top: 1rem;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(var(--bs-primary-rgb), 0.05);
    border-radius: 8px;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
    transition: all 0.3s ease;
}

.capability-item:hover {
    background: rgba(108, 92, 231, 0.1);
    border-color: rgba(var(--bs-primary-rgb), 0.2);
    transform: translateY(-1px);
}

.capability-item i {
    color: var(--primary-color);
    font-size: 14px;
    flex-shrink: 0;
}

.capability-item span {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .capability-item {
        padding: 6px 10px;
    }
    
    .capability-item span {
        font-size: 0.85rem;
    }
}

/* 头像容器样式 */
.col-lg-4.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* 内容从顶部开始排列 */
}

.employee-avatar {
    position: relative;
    display: inline-block;
    align-self: flex-start; /* 将头像定位到容器顶部 */
    margin-top: 0; /* 确保没有顶部边距 */
}

.employee-avatar img {
    width: 90%;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid rgba(var(--bs-primary-rgb), 0.1);
    transition: all 0.3s ease;
}

.stacked-card.active .employee-avatar img {
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.scroll-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(var(--bs-primary-rgb), 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* 卡片切换指示器样式 */
.scroll-dots {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.scroll-dots .scroll-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(var(--bs-primary-rgb), 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.scroll-dots .scroll-dot:hover {
    background: rgba(var(--bs-primary-rgb), 0.4);
    transform: scale(1.1);
}

.scroll-dots .scroll-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.2);
}

/* 卡片区域包装器 */
.cards-section-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px; /* 添加左右内边距 */
}

/* 右侧纵向圆点指示器样式 */
.scroll-dots-vertical {
    display: flex;
    flex-direction: column;
    gap: 0; /* 移除间距 */
    position: absolute; /* 改为绝对定位 */
    top: 50%; /* 垂直居中 */
    right: 20px; /* 距离右侧0px */
    transform: translateY(-50%); /* 垂直居中调整 */
    z-index: 10;
    padding: 8px;
    background: var(--primary-color); /* 紫色底色 */
    border-radius: 20px; /* 减小圆角 */
    box-shadow: 0 4px 16px rgba(var(--bs-primary-rgb), 0.3); /* 增强阴影 */
    border: 1px solid rgba(255, 255, 255, 0.2); /* 白色边框 */
    flex-shrink: 0; /* 防止圆点被压缩 */
}

.scroll-dots-vertical .scroll-dot {
    width: 12px; /* 减小圆点尺寸 */
    height: 12px; /* 减小圆点尺寸 */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3); /* 反白背景 */
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.5); /* 白色边框 */
    position: relative;
    margin: 6px 0; /* 为圆点添加垂直间距 */
}

.scroll-dots-vertical .scroll-dot:hover {
    background: rgba(255, 255, 255, 0.6); /* 更亮的悬停色 */
    transform: scale(1.15); /* 减小缩放 */
    border-color: rgba(255, 255, 255, 0.8); /* 更亮的边框 */
}

.scroll-dots-vertical .scroll-dot.active {
    background: #ffffff; /* 纯白色激活状态 */
    border-color: #ffffff;
    transform: scale(1.25); /* 减小激活状态缩放 */
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3); /* 白色外发光 */
}

/* 添加连接线效果 */
.scroll-dots-vertical .scroll-dot:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px; /* 减小连接线宽度 */
    height: 12px; /* 减小连接线高度 */
    background: rgba(255, 255, 255, 0.4); /* 白色连接线 */
    border-radius: 0.5px;
}

/* 箭头图标样式 */
.scroll-dots-vertical i {
    color: rgba(255, 255, 255, 0.7); /* 白色箭头 */
    font-size: 14px;
    text-align: center;
    margin: 0; /* 移除箭头间距 */
    transition: all 0.3s ease;
    padding: 8px 0; /* 为箭头添加点击区域 */
}

.scroll-dots-vertical i:hover {
    color: #ffffff; /* 悬停时纯白色 */
    transform: scale(1.1);
}

/* 移动端适配 - 隐藏数字员工团队介绍的复杂交互 */
@media (max-width: 992px) {
    /* 完全隐藏数字员工团队介绍部分 */
    .digital-employee-section {
        display: none !important;
    }
}

/* 平板端适配 - 简化交互但保留显示 */
@media (min-width: 993px) and (max-width: 1200px) {
    .cards-section-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    
    .stacked-cards-container {
        order: 1;
        width: 100%;
        height: 500px; /* 减小高度 */
    }
    
    .stacked-card {
        height: 450px; /* 减小卡片高度 */
    }
    
    .scroll-dots-vertical {
        position: absolute;
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        padding: 10px 20px;
    }
    
    .scroll-dots-vertical .scroll-dot:not(:last-child)::after {
        width: 15px;
        height: 2px;
        top: 50%;
        left: 100%;
        transform: translateY(-50%);
    }
}

/* 通用链接样式 */
.learn-more-link {
    color: #695ddf !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    color: #5a4fd8 !important;
    text-decoration: underline !important;
}

/* Trade More Agents Indicator */
.trade_more-agents {
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.05) 0%, rgba(var(--bs-secondary-rgb), 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
}

.trade_more-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.trade_more-indicator i {
    font-size: 1.25rem;
}

.trade_more-indicator span {
    font-size: 1.1rem;
}

.trade_more-agents p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.trade_more-agents .btn {
    transition: all 0.3s ease;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
}

.trade_more-agents .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.3);
}

/* Responsive Design for Hero Banner */
@media (max-width: 768px) {
    .trade_hero-banner {
        min-height: 80vh;
        background-attachment: scroll;
    }
    
    .trade_hero-title {
        font-size: 2.5rem;
    }
    
    .trade_hero-description {
        font-size: 1.1rem;
    }
    
    .trade_hero-cta .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .trade_hero-image {
        margin-top: 2rem;
    }
}

/* Element UI 风格步骤条样式 */
.process-flow-section {

}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.steps-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
}

.step-item:not(:last-child) {
    margin-right: 2rem;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.step-number {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-line {
    position: absolute;
    top: 28px;
    left: 50%;
    width: calc(100% + 2rem);
    height: 4px;
    background:var(--secondary-color);
    z-index: 1;
}

.step-item:last-child .step-line {
    display: none;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 1.5rem 1rem;
}

.step-image {
    width: 160px;
    height: 160px;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9ff;
    border: 2px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.step-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step-subtitle {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 200px;
}

/* Element UI 步骤条响应式设计 */
@media (max-width: 992px) {
    .steps-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .step-item {
        margin-right: 0;
        margin-bottom: 2rem;
        max-width: 300px;
    }
    
    .step-item:not(:last-child) {
        margin-right: 0;
    }
    
    .step-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .steps-container {
        padding: 1.5rem 1rem;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
    }
    
    .step-number {
        font-size: 0.9rem;
    }
    
    .step-content {
        padding: 1rem 0.75rem;
    }
    
    .step-image {
        width: 100px;
        height: 100px;
    }
    
    .step-title {
        font-size: 0.9rem;
    }
    
    .step-subtitle {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.85rem;
        max-width: 180px;
    }
}

/* 旧样式兼容性 - Process Steps */
@media (max-width: 992px) {
    .process-arrow {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .process-step-card {
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .process-step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        top: -8px;
        right: -8px;
    }
    
    .process-step-image {
        width: 100px;
        height: 100px;
    }
    
    .process-step-title {
        font-size: 1rem;
    }
    
    .process-step-desc {
        font-size: 0.85rem;
    }
}

/* 保留旧样式兼容性 */
.trade_process-step {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.trade_process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(var(--bs-primary-rgb), 0.15);
    border-color: rgba(var(--bs-primary-rgb), 0.2);
}

.trade_process-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #6f42c1 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.3);
}

.trade_process-icon {
    font-size: 2.5rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.trade_process-title {
    font-weight: 600;
    color: var(--bs-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.trade_process-desc {
        font-size: 0.85rem;
    }
}


