/* 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;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--background-color);
    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(108, 92, 231, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(108, 92, 231, 0.1);
    transform: translateY(-2px);
}

/* 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: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 0.5rem;
    min-width: 200px;
    margin-top: 0.5rem;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
}

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

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

/* 优化下拉菜单项样式 */
.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);
}

.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;
    }
}

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

.nav-buttons .btn {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* 图标样式 */
.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;
    }
}

/* 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(108, 92, 231, 0.1);
    border-radius: 20px;
}

.ai-profile .rating .fas.fa-star {
    color: #ffc107;
}

/* 核心能力图标样式 */
.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;
    background: var(--primary-color);
    box-shadow: 0 4px 8px rgba(108, 92, 231, 0.2);
}

/* 使用场景图标样式 */
.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(108, 92, 231, 0.1);
    box-shadow: 0 4px 6px rgba(108, 92, 231, 0.1);
}

.integration-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(108, 92, 231, 0.15);
}

.integration-method .rounded-circle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6C5CE7, #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: #00b894 !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: #6C5CE7;
    box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
}

/* Database and API Demo Styles */
.demo-section {
    background: white;
    border: 1px solid rgba(108, 92, 231, 0.1);
    box-shadow: 0 4px 6px rgba(108, 92, 231, 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: #6C5CE7 !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: #636e72;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
} 


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

.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: #6C5CE7;
    margin-bottom: 1rem;
}
.currency{
    font-size: 1.5rem;
    font-weight: 400;
    color: #6C5CE7;
}
.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: #6C5CE7;
            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: #6C5CE7;
    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: #6C5CE7; /* 底色 */
    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: 0.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;
  }
  .flex-shrink-0{
    font-size: 6rem;
    width: 100px;
    border-right: 1px solid white;
}

.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;
}

/* 数字员工名片 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(108, 92, 231, 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(108, 92, 231, 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: #f8f9fa;
  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(108, 92, 231, 0.13);
}
.pricing-employee-table td {
  padding: 1.2rem 0.7rem;
  text-align: center;
  vertical-align: middle;
  border-top: none;
  border-bottom: 1px solid #f0f0f0;
  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(108, 92, 231, 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(108, 92, 231, 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 #6C5CE7;
}

.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: #999;
  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: #222;
}
.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 {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.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 {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* 视频播放器样式优化 */
.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);
    }
}