@import url('./variables.css');

/* ========== 全局增强样式 (覆盖pintuer.css) ========== */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(180deg,
            #ffffff 0%,
            #fafcfe 15%,
            #f5f8fc 35%,
            #f0f5fa 55%,
            #eaf1f8 75%,
            #e5eef6 100%);
    background-attachment: fixed;
    color: var(--color-text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

dl,
dd,
ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== 公共样式类 ========== */
/* 页面背景样式 */
.page-bg-light {
    background: linear-gradient(rgb(255, 255, 255) 0%, rgb(248, 250, 252) 100%);
}

.page-bg-gray {
    background: #F7F7F7;
}

/* 头部间距 */
.header-spacer {
    height: 80px;
}

/* Header - 调整位置以匹配原始页面，更靠下 */
.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    height: 52px;
    padding: 0;
    display: flex;
    align-items: center;
}

/* Header 内部容器 - 胶囊形状，精确复制原始页面 */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    /* 胶囊形状容器 - 精确匹配原始 */
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-radius: 999px;
    border: 1px solid transparent;
    box-shadow: inset 0px 1px 1px 0px rgba(255, 255, 255, 0), 0px 8px 8px 0px rgba(134, 36, 255, 0);
    /* 精确匹配原始页面的过渡动画 */
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* pc搜索图标 */
.site-header a.search-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.site-header a.search-ico i {
    font-size: 18px;
    color: #6E6E6E;
    transition: color 0.3s ease;
}

.site-header a.search-ico:hover i {
    color: rgb(0 102 255);
}


/* 弹出搜索 begin */
.searchBar-m {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    z-index: 9999;
    text-align: center
}

.searchBar-m .mask {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
}

.searchBar-m .mask-ico i {
    font-size: 20px;
}

.searchBar-m a {
    display: block;
    position: absolute;
    right: 5%;
    top: 5%;
    width: 60px;
    height: 60px;
    line-height: 56px;
    font-size: 48px;
    z-index: 9999;
    color: #fff;
}

.searchBar-m a:hover {
    color: #ff9600
}

.searchBar-m .form-group {
    width: 70%;
    max-width: 720px;
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -200%);
}

.searchBar-m .input {
    width: 88%;
    background: transparent;
    border: 0;
    border-bottom: 2px solid #f2f2f2;
    color: #6E6E6E;
    height: 60px;
    line-height: 60px;
    float: left;
    padding: 0;
    border-radius: 0
}

.searchBar-m .input:focus {
    border-color: #fff
}

.searchBar-m .button {
    width: 8%;
    height: 60px;
    line-height: 60px;
    border-bottom: 2px solid #f2f2f2;
    display: block;
    float: left;
    background: url(../img/ico-search-button.png) no-repeat center 50%;
    text-indent: -2000px
}

.searchBar-m .button:hover {
    background: url(../img/ico-search-button.png) no-repeat center 50%;
}

/* 弹出搜索 end */

/* 滚动后Header内部容器样式 */
.site-header.scrolled .header-inner {
    background-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0 12px;
}

.logo {
    z-index: 1;
}

.logo img {
    height: 32px;
    width: auto;
    display: block;
}

/* Navigation Container - 导航链接靠左 */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    margin-left: 24px;
}

.main-nav ul {
    display: flex;
    gap: 16px;
    padding: 0;
    margin: 0;
    align-items: center;
}

/* 导航链接 - 精确匹配原始页面 15px/500 */
.nav-link {
    font-family: 'Inter', 'Inter Placeholder', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 2em;
    color: rgb(36, 36, 42);
    padding: 4px 8px;
    background-color: transparent;
    transition: color 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: rgb(97, 100, 107);
}

.nav-link.active {
    color: rgb(36, 36, 42);
}

/* 下拉箭头 - 初始向下，悬浮向上 */
.dropdown-arrow {
    font-size: 12px;
    margin-left: 2px;
    opacity: 0.5;
    transition: transform 0.3s ease;
    display: inline-block;
    transform: rotate(90deg);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(-90deg);
}

/* 下拉菜单容器 */
.has-dropdown {
    position: relative;
}

/* 下拉菜单 */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 160px;
    background: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    /* 划重点：进入时顺滑，移现时让 visibility 立即生效，防止由于 0.2s 延迟导致的菜单重叠 */
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    /* 划重点：显示时立即生效 visibility */
    transition-delay: 0s;
}

/* 下拉菜单项 */
.dropdown-item {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgb(36, 36, 42);
    border-radius: 8px;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    background-color: rgba(247, 247, 248, 0.8);
    color: var(--color-primary);
}

/* ========== 三级子菜单 ========== */
/* 有三级的二级菜单项 */
.dropdown-item.has-submenu {
    position: relative;
    padding: 0;
}

/* 二级链接 */
.dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgb(36, 36, 42);
    border-radius: 8px;
    transition: all 0.15s ease;
    white-space: nowrap;
    cursor: pointer;
}

/* 二级有三级时，不可点击跳转 */
span.dropdown-link {
    cursor: default;
}

.dropdown-link:hover {
    background-color: rgba(247, 247, 248, 0.8);
    color: var(--color-primary);
}

/* 三级箭头 */
.submenu-arrow {
    font-size: 12px;
    opacity: 0.4;
    margin-left: 8px;
    transition: opacity 0.15s;
}

.dropdown-item.has-submenu:hover .submenu-arrow {
    opacity: 1;
}

/* 三级菜单面板 - 右侧展开，避免遮挡 */
.submenu {
    position: absolute;
    top: -6px;
    left: calc(100% + 8px);
    min-width: 140px;
    background: #fff;
    border-radius: 10px;
    padding: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 102;
}

/* 空的三级菜单不显示 */
.submenu:empty,
.submenu:not(:has(a)) {
    display: none !important;
}

/* 没有三级时，二级不显示展开效果 */
.dropdown-item.has-submenu:not(:has(.submenu a)):hover .submenu {
    display: none !important;
}

/* 悬浮显示三级 */
.dropdown-item.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* 三级链接 */
.submenu-item {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgb(36, 36, 42);
    border-radius: 8px;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.submenu-item:hover {
    background-color: rgba(247, 247, 248, 0.8);
    color: var(--color-primary);
}

/* ========== 菜单高亮状态 ========== */
/* 一级菜单高亮 */
.main-nav li.active>.nav-link {
    color: var(--color-primary);
    font-weight: 600;
}

/* 二级菜单高亮 */
.dropdown-item.active,
.dropdown-item.has-submenu.active>.dropdown-link {
    background-color: rgba(0, 102, 255, 0.08);
    color: var(--color-primary);
}

/* 三级菜单高亮 */
.submenu-item.active {
    background-color: rgba(0, 102, 255, 0.08);
    color: var(--color-primary);
}

/* ========== Mega Menu ========== */
.has-mega-menu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.03);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
    z-index: 100;
    overflow: hidden;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

.mega-menu-inner {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 220px;
}

/* 左侧二级栏目 */
.mega-menu-left {
    width: 180px;
    flex-shrink: 0;
    background: rgba(248, 249, 250, 0.95);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    border-radius: 0 0 0 12px;
}

.mega-menu-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    border-left: 3px solid transparent;
}

.mega-menu-category:hover,
.mega-menu-category.active {
    background: #fff;
    border-left-color: var(--color-primary, var(--color-primary-dark));
}

.category-title {
    font-size: 14px;
    font-weight: 500;
    color: #24242a;
}

.mega-menu-category.active .category-title {
    color: var(--color-primary, var(--color-primary-dark));
    font-weight: 600;
}

.category-arrow {
    font-size: 12px;
    color: var(--color-primary, var(--color-primary-dark));
    opacity: 0;
    transition: opacity 0.2s;
}

.mega-menu-category:hover .category-arrow,
.mega-menu-category.active .category-arrow {
    opacity: 1;
}

/* 右侧三级栏目 */
.mega-menu-right {
    flex: 1;
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
}

.mega-menu-panel {
    display: none;
    width: 100%;
}

.mega-menu-panel.active {
    display: block;
    animation: megaFadeIn 0.2s ease;
}

@keyframes megaFadeIn {
    from {
        opacity: 0;
        transform: translateX(8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.panel-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 2px 12px;
}

.panel-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 6px;
    transition: background 0.15s;
}

.panel-item:hover {
    background: rgba(0, 102, 255, 0.05);
}

.item-name {
    font-size: 13px;
    font-weight: 500;
    color: #24242a;
    transition: color 0.15s;
    white-space: nowrap;
}

.panel-item:hover .item-name {
    color: var(--color-primary, var(--color-primary-dark));
}

.item-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 3px;
}

.item-tag.hot {
    background: linear-gradient(135deg, var(--color-primary-dark), #00b7ff);
    color: #fff;
}

/* Mega Menu 移动端 */
@media (max-width: 992px) {
    .has-mega-menu {
        position: relative;
    }

    .mega-menu {
        position: static !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        border-radius: 8px;
        border: none;
        margin: 0 0 12px 0;
        background: #f5f5f5;
        overflow: visible;
    }

    .has-mega-menu.open .mega-menu {
        display: block !important;
    }

    .mega-menu-inner {
        flex-direction: column;
        min-height: auto;
    }

    .mega-menu-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding: 8px 0;
        border-radius: 0;
    }

    .mega-menu-category {
        padding: 10px 16px;
        border-left: none;
    }

    .mega-menu-category:hover,
    .mega-menu-category.active {
        border-left: none;
        background: #eee;
    }

    .mega-menu-right {
        padding: 12px 16px;
    }

    .panel-items {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .panel-item {
        padding: 10px 12px;
    }
}

/* Actions */
.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 1;
}

/* Mobile Menu Button - 3条线汉堡菜单 */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    gap: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #24242a;
    transition: all 0.3s ease;
}

/* 激活状态 - 变X */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Nav Styles */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }

    /* 隐藏右侧按钮 */
    .header-actions .btn-ai-badge,
    .header-actions .btn-secondary {
        display: none;
    }

    /* 移动端菜单 */
    .main-nav {
        display: none !important;
        position: fixed;
        top: 48px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100vh - 68px);
        background: #fff;
        padding: 0;
        margin: 0;
        flex: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
        border-top: 1px solid #eee;
    }

    .main-nav.mobile-open {
        display: block !important;
    }

    .main-nav ul {
        display: block !important;
        flex-direction: column;
        gap: 0;
        padding: 0 24px;
        margin: 0;
        align-items: stretch;
        list-style: none;
        width: 100%;
    }

    .main-nav ul li {
        display: block !important;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        list-style: none;
        position: relative;
    }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    /* 一级菜单链接 */
    .main-nav .nav-link {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 16px 0;
        font-size: 16px;
        line-height: 1.5;
        color: #24242a;
        text-decoration: none;
    }

    /* 有下拉菜单的父级 */
    .main-nav .has-dropdown {
        position: static;
    }

    /* 箭头样式 - 移动端增大点击区域 */
    .main-nav .dropdown-arrow {
        font-size: 14px;
        color: #999;
        transition: transform 0.2s ease;
        padding: 8px 12px;
        margin: -8px -12px -8px 0;
        cursor: pointer;
        transform: rotate(90deg) !important;
        /* 初始向右 */
        opacity: 1;
    }

    .main-nav .has-dropdown.open .dropdown-arrow {
        transform: rotate(-90deg) !important;
        /* 展开时向下 */
        color: var(--color-primary-dark);
    }

    /* 禁用PC端的hover效果 */
    .main-nav .has-dropdown:hover .dropdown-arrow {
        transform: rotate(90deg) !important;
    }

    .main-nav .has-dropdown.open:hover .dropdown-arrow {
        transform: rotate(-90deg) !important;
    }

    /* 二级菜单 - 默认隐藏 */
    .main-nav .dropdown-menu {
        position: static !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: none !important;
        transform: none !important;
        box-shadow: none !important;
        padding: 0;
        background: #f5f5f5;
        border-radius: 8px;
        margin: 0 0 12px 0;
        min-width: auto;
        left: auto !important;
        top: auto !important;
    }

    /* 二级菜单展开 */
    .main-nav .has-dropdown.open .dropdown-menu {
        display: block !important;
        padding: 8px 0;
    }

    .main-nav .dropdown-menu .dropdown-item {
        display: block;
        padding: 12px 16px;
        font-size: 15px;
        color: #666;
        border-radius: 0;
    }

    .main-nav .dropdown-menu .dropdown-item:hover {
        background: #eee;
        color: var(--color-primary-dark);
    }

    /* 移动端三级菜单 - 默认隐藏（覆盖PC端hover行为）*/
    .main-nav .submenu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #eee;
        border-radius: 6px;
        margin: 8px 0 0 0;
        padding: 0;
        min-width: auto;
    }

    /* 移动端三级菜单展开（通过JS添加.open类）*/
    .main-nav .dropdown-item.has-submenu.open .submenu {
        display: block;
        padding: 8px 0;
    }

    .main-nav .submenu .submenu-item {
        padding: 10px 16px;
        font-size: 14px;
        color: #666;
    }

    .main-nav .submenu .submenu-item:hover {
        background: #ddd;
    }

    /* 移动端二级菜单箭头旋转 */
    .main-nav .submenu-arrow {
        transition: transform 0.2s ease;
    }

    .main-nav .dropdown-item.has-submenu.open .submenu-arrow {
        transform: rotate(90deg);
    }

    body.menu-open {
        overflow: hidden;
    }

    /* header始终在最上层 */
    .site-header {
        z-index: 1001;
    }
}


/* Buttons - 精确匹配原始页面 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.15s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: rgb(9, 48, 145, 0.85);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: rgb(18, 18, 24);
    border: 1px solid rgb(18, 18, 24);
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}


/* AI 渐变按钮 */
.btn-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    height: 32px;
    border-radius: 9px;
    background: transparent;
}

.ai-text {
    color: rgb(36, 36, 42);
}

.ai-highlight {
    background-image: linear-gradient(278deg, rgb(144, 0, 255) 0%, rgb(0, 183, 255) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== Workday Hero Section ========== */
.workday-hero {
    padding: 140px 0 60px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.workday-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1300px;
}

.workday-hero-left {
    flex: 0 0 40%;
    max-width: none;
    padding-top: 0;
}

.workday-hero-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.35;
    color: #121218;
    margin: 0 0 20px;
    letter-spacing: 1px;
}

/* 渐变文字效果 - 蓝色主题 */
.gradient-text {
    background: linear-gradient(135deg,
            var(--color-primary) 0%,
            rgb(23, 183, 255) 50%,
            rgb(0, 183, 255) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workday-hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #61646b;
    margin: 0 0 32px;
}

.workday-hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline-dark {
    background: transparent;
    color: #121218;
    border: 2px solid #03A9F4;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-outline-dark:hover {
    background: rgba(0, 0, 0, 0.05);
}

.workday-link {
    color: #121218;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.workday-link:hover {
    color: #61646b;
}

.workday-hero-right {
    flex: 1;
    max-width: 60%;
    min-width: 500px;
}

/* ============================================
   轮播组件 - 支持两种模式
   切换方式：控制台执行 window.carouselController.setMode(3) 或 setMode(5)
   ============================================ */
.workday-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    will-change: transform, opacity;
}

/* 位置类 - 与原页面一致 */
.carousel-slide.slide-far-left {
    width: 47%;
    height: 90%;
    z-index: 1;
    transform: translateX(-54%) scale(0.8);
    opacity: 0.4;
}

.carousel-slide.slide-near-left {
    width: 51%;
    height: 95%;
    z-index: 5;
    transform: translateX(-28%) scale(0.9);
    opacity: 0.6;
}

.carousel-slide.slide-active {
    width: 100%;
    height: 100%;
    z-index: 10;
    transform: translateX(0) scale(1);
    opacity: 1;
    border: 2px solid var(--color-primary);
    cursor: default;
}

.carousel-slide.slide-near-right {
    width: 51%;
    height: 95%;
    z-index: 5;
    transform: translateX(28%) scale(0.9);
    opacity: 0.6;
}

.carousel-slide.slide-far-right {
    width: 47%;
    height: 90%;
    z-index: 1;
    transform: translateX(54%) scale(0.8);
    opacity: 0.4;
}

.carousel-slide.slide-hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7);
    z-index: 0;
}

/* === 3卡片模式CSS === */
.carousel-slide.left {
    width: 85%;
    height: 85%;
    transform: translateX(-30%) scale(0.9);
    z-index: 5;
    opacity: 0.7;
}

.carousel-slide.right {
    width: 85%;
    height: 85%;
    transform: translateX(30%) scale(0.9);
    z-index: 5;
    opacity: 0.7;
}

.carousel-slide.active {
    width: 85%;
    height: 100%;
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 10;
    border: 2px solid var(--color-primary);
    cursor: default;
}

.carousel-slide.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7);
    z-index: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* 图片覆盖层 - caption */
.caption-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    /* right: 0; */
    padding: 18px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #fff;
    display: flex;
    /* align-items: flex-end; */
    /* justify-content: space-between; */
    gap: 16px;
    opacity: 1;
    transition: opacity 0.3s ease;

    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    max-width: 500px;
}

.carousel-slide.slide-active .caption-overlay {
    opacity: 1;
}

.caption-content {
    flex: 1;
}

.caption-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
}

.caption-text {
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.arrow-button {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.arrow-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.arrow-button svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

.workday-carousel[data-show-controls="false"] video::-webkit-media-controls {
    display: none !important;
}

.workday-carousel[data-show-controls="false"] video {
    pointer-events: none;
}

/* 分页点 - 进度条式 */
.carousel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0 0;
}

.pagination-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.pagination-dot {
    width: 48px;
    height: 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.12);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.pagination-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--color-primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.pagination-dot.active::after {
    animation: paginationProgress 5s linear forwards;
}

.workday-carousel.paused .pagination-dot.active::after {
    animation-play-state: paused;
}

@keyframes paginationProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.pagination-pause-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    padding: 0;
    transition: background 0.2s ease;
}

.pagination-pause-btn:hover {
    background: rgba(0, 0, 0, 0.2);
}

.pagination-pause-btn svg {
    fill: currentColor;
}

.pagination-pause-btn .play-icon {
    display: none;
}

.workday-carousel.paused .pagination-pause-btn .pause-icon {
    display: none;
}

.workday-carousel.paused .pagination-pause-btn .play-icon {
    display: block;
}

/* Products Section */
.products-section {
    padding: 30px 0;
    background: transparent;
}

.products-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 24px;
}

.products-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text-main);
    margin: 0 0 16px;
}

.products-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    margin: 0;
}

.products-grid {
    display: flex;
    gap: 12px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    flex: 1;
    min-width: 0;
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /*border: 1px solid rgba(0, 0, 0, 0.08);*/
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-card.expanded {
    flex: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* 卡片顶部渐变遮罩 */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.product-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.product-card .card-overlay {
    display: none;
}

.product-card .card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px;
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.product-card .card-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
}

.product-card .card-desc {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card .card-links {
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.product-card .card-links li {
    margin-bottom: 8px;
}

.product-card .card-links a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-card .card-links a:hover {
    opacity: 0.8;
}

.product-card .expand-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.product-card:not(.expanded):hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.product-card:not(.expanded) {
    opacity: 0.9;
}

/* 展开状态 - 添加深色背景 */
.product-card.expanded::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.product-card.expanded .expand-btn {
    opacity: 0;
    visibility: hidden;
}

.product-card.expanded .card-desc,
.product-card.expanded .card-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Workday Hero响应式 */
@media (max-width: 992px) {
    .workday-hero {
        padding: 100px 0 40px;
    }

    .workday-hero-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .workday-hero-left {
        flex: none;
        max-width: 100%;
        text-align: center;
        padding-top: 0;
    }

    .workday-hero-title {
        font-size: 32px;
    }

    .workday-hero-subtitle {
        font-size: 16px;
    }

    .workday-hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .workday-hero-right {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }

    /* 轮播移动端适配 */
    .carousel-slides {
        height: 240px;
    }

    .carousel-slide.slide-far-left,
    .carousel-slide.slide-far-right {
        display: none;
    }

    .carousel-slide.slide-near-left {
        width: 60%;
        transform: translateX(-20%) scale(0.85);
        opacity: 0.5;
    }

    .carousel-slide.slide-near-right {
        width: 60%;
        transform: translateX(20%) scale(0.85);
        opacity: 0.5;
    }

    .carousel-slide.slide-active {
        width: 85%;
    }

    .caption-overlay {
        padding: 16px;
    }

    .caption-title {
        font-size: 14px;
    }

    .caption-text {
        font-size: 12px;
    }

    .arrow-button {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .pagination-dot {
        width: 36px;
        height: 6px;
    }

    /* Products移动端适配 */
    .products-section {
        padding: 30px 0;
    }

    .products-header {
        margin-bottom: 30px;
    }

    .products-title {
        font-size: 28px;
    }

    .products-subtitle {
        font-size: 15px;
    }

    .products-grid {
        flex-direction: column;
        gap: 16px;
        padding: 0 20px;
    }

    .product-card {
        height: 280px;
    }

    .product-card .card-content {
        padding: 20px;
    }

    .product-card .card-title {
        font-size: 24px;
    }

    .product-card .card-desc {
        font-size: 14px;
    }

    /* 移动端默认展示内容 */
    .product-card .card-desc,
    .product-card .card-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* 更小屏幕适配 */
@media (max-width: 576px) {
    .workday-hero {
        padding: 90px 0 30px;
    }

    .workday-hero-title {
        font-size: 26px;
    }

    .workday-hero-subtitle {
        font-size: 14px;
    }

    .workday-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-outline-dark {
        width: 100%;
        max-width: 280px;
    }

    .workday-link {
        font-size: 14px;
    }

    .carousel-slides {
        height: 200px;
    }

    .carousel-slide.slide-active {
        width: 90%;
    }

    .carousel-slide.slide-near-left,
    .carousel-slide.slide-near-right {
        display: none;
    }

    .pagination-dot {
        width: 28px;
        height: 5px;
    }

    .products-title {
        font-size: 24px;
    }

    /* Products Grid - 移动端垂直堆叠 */
    .products-grid {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }

    .product-card,
    .product-card.expanded {
        height: 220px;
        flex: none !important;
        width: 100%;
    }

    .product-card .card-title {
        font-size: 20px;
    }

    .product-card .card-content {
        padding: 20px;
    }

    /* 移动端默认显示描述和链接 */
    .product-card .card-desc {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        font-size: 13px;
        margin-bottom: 12px;
    }

    .product-card .card-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .product-card .expand-btn {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    padding-top: 60px;
    padding-bottom: 80px;
    background: transparent;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: rgb(18, 18, 24);
}

.hero-title .highlight {
    color: var(--color-primary);
    background: none;
    -webkit-text-fill-color: var(--color-primary);
}

.hero-subtitle {
    font-size: 16px;
    color: rgb(97, 100, 107);
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-actions .btn {
    height: 44px;
    padding: 0 28px;
    font-size: 15px;
}

/* Hero Media */
.hero-media {
    width: 100%;
    max-width: 1000px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: rgba(0, 0, 0, 0);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Logo Marquee */
.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: scroll 40s linear infinite;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.logo-track img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0.5;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}

.logo-track img:hover {
    opacity: 0.9;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* 暂停动画在hover时 */
.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

/* Footer */
.site-footer {
    /*background-color: var(--color-bg-light);*/
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 80px 0;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-brand img {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

.footer-desc {
    font-size: 14px;
    color: var(--color-text-muted);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
    padding-left: 70px;
}

.footer-column h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 16px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 14px;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--color-text-main);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--color-text-muted);
}

.footer-bottom p span {
    margin: 0 10px;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 32px;
        padding-left: 0;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 16px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 0;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        gap: 32px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
    }

    .footer-column h6 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer-column a {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 0;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-container {
        gap: 32px;
        padding-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
    }
}

/* Core Features Section - 走马灯轮播 */
.core-features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.features-stack-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
}

.features-stack {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 500px;
    /* 初始状态 - 等待滚动动画 */
    opacity: 0;
    transform: translateY(100px) scale(0.8) rotateX(10deg);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
    perspective: 1200px;
}

.features-stack.visible {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
}

.feature-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 800px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 2px 40px rgba(16, 16, 16, 0.08);
    overflow: hidden;
    transition: filter 0.5s ease, opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* 当前卡片 */
.feature-card.active {
    filter: none;
    -webkit-filter: none;
    opacity: 1;
    z-index: 3;
    transform: translateX(-50%) scale(1);
}

/* 左侧卡片 - 部分可见 */
.feature-card.prev {
    filter: blur(6px);
    -webkit-filter: blur(6px);
    opacity: 0.5;
    z-index: 2;
    transform: translateX(-130%) scale(0.9);
}

/* 右侧卡片 - 部分可见 */
.feature-card.next {
    filter: blur(6px);
    -webkit-filter: blur(6px);
    opacity: 0.5;
    z-index: 2;
    transform: translateX(30%) scale(0.9);
}

/* 隐藏的卡片 */
.feature-card.hidden {
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transform: translateX(-50%) scale(0.8);
}

/* 蓝色模糊背景 */
.card-blur-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(30px);
    -webkit-filter: blur(30px);
    top: -50px;
    left: -50px;
    z-index: 0;
    pointer-events: none;
}

.feature-card[data-card="0"] .card-blur-bg {
    background-color: rgba(0, 102, 255, 0.05);
}

.feature-card[data-card="1"] .card-blur-bg {
    background-color: rgba(78, 108, 138, 0.1);
}

.feature-card[data-card="2"] .card-blur-bg {
    background-color: rgba(78, 108, 138, 0.1);
}

.card-inner {
    position: relative;
    z-index: 1;
    background: var(--color-white);
    border-radius: 10px;
    padding: 26px;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.feature-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    grid-column: 1;
    grid-row: 1;
}

.feature-image {
    grid-column: 2;
    grid-row: 1 / 3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    overflow: visible;
    min-height: 300px;
}

.feature-list {
    grid-column: 1;
    grid-row: 2;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    width: fit-content;
}

.feature-badge.blue {
    background-color: rgb(204, 240, 255);
    color: rgb(13, 149, 253);
}

.feature-badge.green {
    background-color: rgb(211, 248, 216);
    color: rgb(4, 190, 53);
}

.feature-badge.purple {
    background-color: rgb(248, 206, 253);
    color: rgb(198, 40, 246);
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.6em;
    color: var(--color-text-main);
}

.feature-desc {
    font-size: 18px;
    line-height: 1.8em;
    color: var(--color-text-main);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--color-text-muted);
}

.feature-list .dot {
    flex-shrink: 0;
}

/* .feature-image 定义已合并到上方 1899-1908 行 */

.feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.feature-image .img-main {
    position: relative;
    z-index: 2;
    opacity: 1;
    transform: perspective(1200px) rotateX(0deg);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 图片3D翻转动画 - 只在有堆叠图时翻转 */
.feature-image:has(.img-stack) .img-main {
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-image:has(.img-stack) .img-main {
    opacity: 0;
    transform: perspective(1200px) rotateX(90deg);
}

/* 单图片时保持显示，加缩放效果 */
.feature-image:not(:has(.img-stack)) .img-main {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image:not(:has(.img-stack)) .img-main {
    transform: scale(1.02);
}

/* 图片堆叠效果 */
.feature-image .img-stack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    border-radius: 10px;
    opacity: 0;
    z-index: 1;
    transform: translateX(-50%) perspective(1200px) rotateX(90deg);
    left: 50%;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-image .img-stack {
    opacity: 1;
    transform: translateX(-50%) perspective(1200px) rotateX(0deg);
}

/* 左右切换区域 - 大面积可点击 */
.stack-nav-left,
.stack-nav-right {
    position: absolute;
    top: -50px;
    bottom: -50px;
    width: 445px;
    z-index: 10;
    cursor: pointer;
    background: transparent;
}

.stack-nav-left {
    left: -270px;
}

.stack-nav-right {
    right: -270px;
}

/* 图片自动轮播动画 */
@keyframes imageRotate {

    0%,
    45% {
        opacity: 1;
        transform: perspective(1200px) rotateX(0deg);
    }

    50%,
    95% {
        opacity: 0;
        transform: perspective(1200px) rotateX(90deg);
    }

    100% {
        opacity: 1;
        transform: perspective(1200px) rotateX(0deg);
    }
}

@keyframes imageRotateStack {

    0%,
    45% {
        opacity: 0;
        transform: translateX(-50%) perspective(1200px) rotateX(-90deg);
    }

    50%,
    95% {
        opacity: 1;
        transform: translateX(-50%) perspective(1200px) rotateX(0deg);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) perspective(1200px) rotateX(-90deg);
    }
}

/* 有堆叠图片时启用自动轮播 */
.feature-image:has(.img-stack) .img-main {
    animation: imageRotate 6s ease-in-out infinite;
}

.feature-image:has(.img-stack) .img-stack {
    animation: imageRotateStack 6s ease-in-out infinite;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background: transparent;
}

.advantages-section .container {
    max-width: 1200px;
}

/* 标题区域 */
.advantages-header {
    text-align: center;
    margin-bottom: 40px;
}

.advantages-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 16px;
}

.advantages-title .highlight {
    color: var(--color-primary);
}

.advantages-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
}

.advantages-tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.tabs-header {
    width: 85%;
    display: inline-flex;
    justify-content: center;
    gap: 4px;
    padding: 6px;
    background-color: rgb(247, 247, 248);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgb(212, 212, 212);
    border-radius: 10px;
    margin: 0 auto 32px;
}

.tab-btn {
    width: 33.3%;
    padding: 5px 20px;
    border: none;
    background: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgb(36, 36, 42);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background-color: var(--color-primary);
    color: rgb(242, 249, 254);
    box-shadow: 0 4px 33px rgba(0, 0, 0, 0.05);
}

.tab-btn:hover:not(.active) {
    background-color: #e5e5e5;
}

.tabs-content {
    background: transparent;
    border-radius: 10px;
    position: relative;
    width: 100%;
    max-width: 1000px;
}

.tab-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 32px 0;
    background: transparent;
    border-radius: 10px;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-panel.active {
    display: grid;
    opacity: 1;
    transform: scale(1);
    animation: tabFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.panel-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gradient-label {
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(270deg, rgb(0, 71, 250) 0%, rgb(23, 183, 255) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.panel-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-text-main);
}

.panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3em;
    color: rgb(175, 175, 175);
}

.panel-list .check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%230066FF'/%3E%3Cpath d='M9 12.5 L11 14.5 L15.5 10' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.panel-right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
}

/* Industry Right List Styles */
.industry-right-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 480px;
    margin-top: -40px;
}

.industry-right-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 12px;
    padding: 15px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.industry-right-item:nth-child(1) {
    z-index: 3;
}

.industry-right-item:nth-child(2) {
    z-index: 2;
}

.industry-right-item:nth-child(3) {
    z-index: 1;
}

.industry-right-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    /* Softer premium shadow */
    border-color: rgba(0, 102, 255, 0.2);
    z-index: 100;
}

.industry-right-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-main);
    transition: color 0.3s ease;
}

.industry-right-item:hover .industry-right-text {
    color: var(--color-primary);
}

/* Automatic Floating Animation */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.industry-right-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    animation: floatY 3s ease-in-out infinite;
    /* Continuous animation */
}

/* Stagger animation for visual interest */
.industry-right-item:nth-child(1) .industry-right-img {
    animation-delay: 0s;
}

.industry-right-item:nth-child(2) .industry-right-img {
    animation-delay: 1.5s;
}

.industry-right-item:nth-child(3) .industry-right-img {
    animation-delay: 0.7s;
}

.industry-right-item:hover .industry-right-img {
    animation-play-state: running;
}

/* Chat Demo Styles */
.chat-demo {
    background: var(--color-white);
    border: 1px solid rgba(3, 16, 41, 0.08);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    font-size: 14px;
}

.chat-bubble {
    padding: 12px;
    border-radius: 16px;
    max-width: 90%;
}

.ai-bubble {
    background-color: var(--color-bg-light);
    border-top-left-radius: 0;
    align-self: flex-start;
}

.user-bubble {
    background-color: var(--color-primary);
    color: white;
    border-top-right-radius: 0;
    align-self: flex-end;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.ai-badge {
    background: linear-gradient(146deg, rgb(27, 224, 250) 1.35%, rgb(27, 120, 250) 45.84%, rgb(131, 10, 201) 100%);
    color: white;
    padding: 2px 6px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
}

.chat-name {
    font-size: 13px;
    color: var(--color-text-main);
    opacity: 0.75;
}

.chat-time {
    font-size: 13px;
    color: var(--color-text-muted);
    opacity: 0.75;
}

.chat-dot {
    font-size: 13px;
    color: var(--color-text-main);
    opacity: 0.75;
}

.chat-input {
    background: var(--color-bg-light);
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--color-text-muted);
    font-size: 13px;
    margin-top: 4px;
}

.chat-bubble p {
    font-size: 13px;
    line-height: 1.4em;
    margin: 0;
}

/* Standard Showcase (Scenario/Industry) */
.industry-showcase {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-top: -40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    animation: floatY 4s ease-in-out infinite;
    cursor: pointer;
    position: relative;
}

/* Intelligent/Integration Tab Special Style */
.integration-showcase {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-top: -40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    /* 白色背景 */
    background: #ffffff;
}

/* 中心柔和光晕 */
.integration-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 230, 255, 0.6) 0%, rgba(210, 235, 255, 0.35) 20%, rgba(220, 240, 255, 0.15) 40%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* 动态扩散波纹 */
.integration-showcase .ripple-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    transform: translate(-50%, -50%);
    animation: rippleExpand 5s ease-out infinite;
    pointer-events: none;
    opacity: 0;
}

/* 8个波纹，间隔0.6秒 */
.integration-showcase .ripple-layer:nth-child(1) {
    animation-delay: 0s;
}

.integration-showcase .ripple-layer:nth-child(2) {
    animation-delay: 0.6s;
}

.integration-showcase .ripple-layer:nth-child(3) {
    animation-delay: 1.2s;
}

.integration-showcase .ripple-layer:nth-child(4) {
    animation-delay: 1.8s;
}

.integration-showcase .ripple-layer:nth-child(5) {
    animation-delay: 2.4s;
}

.integration-showcase .ripple-layer:nth-child(6) {
    animation-delay: 3s;
}

.integration-showcase .ripple-layer:nth-child(7) {
    animation-delay: 3.6s;
}

.integration-showcase .ripple-layer:nth-child(8) {
    animation-delay: 4.2s;
}

@keyframes rippleExpand {
    0% {
        width: 150px;
        height: 150px;
        opacity: 0;
        border-color: rgba(100, 180, 255, 0);
    }

    10% {
        opacity: 0.5;
        border-color: rgba(100, 180, 255, 0.4);
    }

    100% {
        width: 480px;
        height: 480px;
        opacity: 0;
        border-color: rgba(100, 180, 255, 0);
    }
}

/* Specific image styling for Integration to float nicely */
.integration-showcase img {
    position: relative;
    z-index: 2;
    max-width: 90%;
    max-height: 280px;
    height: auto;
    object-fit: contain;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Shine Effect */
.industry-showcase::after,
.integration-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    transition: none;
}

.industry-showcase:hover::after,
.integration-showcase:hover::after {
    left: 200%;
    transition: all 0.8s ease-in-out;
}

.industry-showcase img,
.integration-showcase img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.industry-showcase:hover img,
.integration-showcase:hover img {
    transform: scale(1.05);
    /* Gentle zoom on hover */
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.02) 0%, rgba(0, 183, 255, 0.05) 100%);
    text-align: center;
}

.demo-content {
    max-width: 800px;
    margin: 0 auto;
}

.demo-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 16px;
}

.demo-title .highlight {
    color: var(--color-primary);
}

.demo-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.demo-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.demo-video {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
}

.demo-video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Enterprise Count Section */
.enterprise-section {
    padding: 80px 0 60px;
    background: rgba(255, 255, 255, 0.25);
}

.enterprise-header {
    text-align: center;
    margin-bottom: 40px;
}

.enterprise-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-text-main);
}

.enterprise-title .highlight {
    color: var(--color-primary);
}

.enterprise-logos {
    overflow: hidden;
}

.enterprise-logos .logo-marquee {
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 12.5%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 12.5%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 0) 100%);
}

/* ================== */
/* Responsive Styles */
/* ================== */

/* Large devices (desktops, 992px and up) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .hero-title {
        font-size: 44px;
    }

    .feature-card {
        max-width: 95%;
    }
}

/* Medium devices (tablets, 768px - 992px) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Header */
    .site-header {
        width: calc(100% - 32px);
    }

    /* Hero */
    .hero-section {
        padding: 140px 0 60px;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-media {
        max-width: 100%;
    }

    /* Features Stack */
    .features-stack-wrapper {
        min-height: 500px;
    }

    .features-stack {
        height: 480px;
    }

    .feature-content {
        grid-template-columns: 1fr;
    }

    .feature-header {
        grid-column: 1;
        grid-row: 1;
    }

    .feature-image {
        grid-column: 1;
        grid-row: 2;
        width: auto;
    }

    .feature-list {
        grid-column: 1;
        grid-row: 3;
    }

    .card-inner {
        padding: 24px;
    }

    /* Advantages */
    .tab-panel {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tabs-header {
        flex-wrap: wrap;
        gap: 6px;
        width: 100%;
        padding: 4px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 13px;
        width: auto;
        flex: 1;
        min-width: 80px;
        text-align: center;
    }

    .tabs-content {
        overflow: visible;
    }

    .tab-panel {
        padding: 16px 0;
        overflow: visible;
    }

    .panel-right {
        overflow: visible;
    }

    .industry-right-list {
        position: relative;
        height: auto;
        min-height: 200px;
    }

    .industry-right-item {
        position: relative !important;
        transform: none !important;
        opacity: 1 !important;
        margin-bottom: 12px;
    }

    .demo-title,
    .advantages-title,
    .enterprise-title {
        font-size: 32px;
    }

    /* Enterprise logos */
    .enterprise-section {
        padding: 60px 0;
    }

    .logo-marquee {
        gap: 24px;
    }
}

/* Small devices (landscape phones, 576px - 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Header */
    .site-header {
        top: 10px;
        height: 48px;
    }

    .logo img {
        height: 28px;
    }

    /* 文章详情页自适应 (view_article_self.htm) */
    .sidebar-l {
        margin-right: 0 !important;
    }

    /* 强制栅格堆叠 */
    .x9,
    .x3,
    .x10,
    .x2 {
        width: 100% !important;
        float: none !important;
    }

    /* 文章列表卡片自适应 (lists_article_self.htm) */
    .row.scene-row .col {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
    }

    .col-div {
        padding: 16px 12px !important;
    }

    /* Hero */
    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-video {
        border-radius: 12px;
    }

    /* Features Stack */
    .core-features {
        padding: 40px 0;
    }

    .features-stack-wrapper {
        min-height: 450px;
    }

    .features-stack {
        height: 430px;
        /* 移动端强制显示，不依赖JS动画 */
        opacity: 1 !important;
        transform: translateY(0) scale(1) rotateX(0deg) !important;
    }

    .feature-title {
        font-size: 22px;
        line-height: 1.4em;
    }

    .feature-desc {
        font-size: 14px;
    }

    .feature-list li {
        font-size: 13px;
    }

    /* Fix: Mobile card layout - single column */
    .feature-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-image {
        grid-column: 1;
        grid-row: auto;
        max-height: 180px;
        overflow: hidden;
    }

    .feature-list {
        grid-column: 1;
        grid-row: auto;
    }

    .feature-card.prev,
    .feature-card.next {
        display: none;
    }

    /* Advantages */
    .advantages-section {
        padding: 40px 0;
    }

    .advantages-title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .advantages-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .advantages-header {
        margin-bottom: 24px;
    }

    .panel-title {
        font-size: 24px;
    }

    .panel-desc {
        font-size: 14px;
    }

    /* Panel Left/Right 移动端堆叠 */
    .panel-left,
    .panel-right {
        width: 100%;
        overflow: visible;
    }

    .panel-left {
        order: 1;
    }

    .panel-right {
        order: 2;
        margin-top: 24px;
    }

    .industry-right-list {
        margin-top: 0;
        max-width: 100%;
    }

    .industry-right-item {
        padding: 12px 20px;
    }

    .industry-right-img {
        height: 50px;
    }

    .panel-list li {
        font-size: 14px;
    }

    .panel-image {
        height: 200px;
    }

    /* Demo */
    .demo-section {
        padding: 50px 0;
    }

    .demo-title {
        font-size: 28px;
    }

    .demo-subtitle {
        font-size: 14px;
    }

    .demo-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .chat-demo {
        max-width: 100%;
    }

    /* Enterprise */
    .enterprise-section {
        padding: 40px 0;
    }

    .enterprise-title {
        font-size: 24px;
    }

    /* Background blobs */
    .bg-blob-1 {
        width: 400px;
        height: 350px;
    }

    .bg-blob-2 {
        width: 300px;
        height: 280px;
        right: -50px;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 576px) {

    /* Hero */
    .hero-title {
        font-size: 28px;
    }

    /* Features */
    .features-stack-wrapper {
        min-height: 400px;
    }

    .features-stack {
        height: 380px;
    }

    .feature-card {
        max-width: 100%;
    }

    .card-inner {
        padding: 16px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-badge {
        font-size: 12px;
        padding: 4px 10px;
    }

    /* Titles */
    .advantages-title,
    .demo-title,
    .enterprise-title {
        font-size: 24px;
    }

    .blog-title,
    .faq-title,
    .contact-title {
        font-size: 24px;
    }

    /* Tabs */
    .tabs-header {
        gap: 6px;
    }

    .tab-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
}

/* ================== */
/* Blog Section */
/* ================== */
.blog-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: transparent;
}

.blog-header-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
}

.blog-header {
    text-align: center;
    margin-bottom: 24px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: rgb(18, 18, 24);
    background: transparent;
    border: 1px solid rgb(18, 18, 24);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background-color: rgb(18, 18, 24);
    color: white;
}

.blog-label {
    font-size: 16px;
    letter-spacing: 1px;
    background-image: linear-gradient(270deg, rgb(9, 48, 145) 0%, rgb(23, 183, 255) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    color: rgb(18, 18, 24);
}

.blog-title .highlight {
    color: var(--color-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    padding: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-card:hover {
    background-color: var(--color-primary);
}

.blog-card:hover .blog-card-title,
.blog-card:hover .blog-desc,
.blog-card:hover .blog-date,
.blog-card:hover .blog-read,
.blog-card:hover .blog-dot {
    color: white;
}

.blog-image {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 8px;
}

.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.02);
}

.blog-content {
    padding: 16px 0 0;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.blog-date,
.blog-read {
    font-size: 13px;
    color: rgb(148, 151, 158);
}

.blog-dot {
    color: rgb(148, 151, 158);
}

.blog-card-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: rgb(18, 18, 24);
    margin-bottom: 8px;
}

.blog-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: rgb(97, 100, 107);
}

/* ================== */
/* FAQ Section */
/* ================== */
.faq-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.2);
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    color: rgb(18, 18, 24);
    margin-bottom: 12px;
}

.faq-title .highlight {
    color: var(--color-primary);
}

.faq-subtitle {
    font-size: 16px;
    color: rgb(97, 100, 107);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid rgb(230, 231, 233);
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.15s, border-color 0.15s;
}

.faq-item:hover,
.faq-item.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.faq-item:hover .faq-question,
.faq-item:hover .faq-icon,
.faq-item.active .faq-question,
.faq-item.active .faq-icon {
    color: white;
}

.faq-item:hover .faq-answer,
.faq-item.active .faq-answer {
    color: rgba(255, 255, 255, 0.9);
}

.caption-text p {
    margin: 0;
    line-height: inherit;
    color: inherit;
}

.faq-question-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.faq-question {
    font-size: 16px;
    font-weight: 500;
    color: rgb(36, 36, 42);
    margin: 0;
    transition: color 0.15s;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: rgb(97, 100, 107);
    transition: transform 0.2s, color 0.15s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-out;
    padding: 0 24px;
    font-size: 15px;
    line-height: 1.6;
    color: rgb(97, 100, 107);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    margin: 0;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

/* Blog and FAQ Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .blog-title,
    .faq-title {
        font-size: 32px;
    }

    .blog-header-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-header-row {
        margin-bottom: 16px;
    }

    .blog-header {
        margin-bottom: 0;
    }

    .blog-title,
    .faq-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .blog-section,
    .faq-section {
        padding: 40px 0;
    }

    .faq-list {
        padding: 0;
        gap: 8px;
    }

    .faq-question-row {
        padding: 14px 16px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px;
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 16px;
    }

    .faq-answer p {
        padding: 0;
    }

    .blog-card-title {
        font-size: 18px;
    }

    .blog-card-desc {
        font-size: 14px;
    }
}

@media (max-width: 576px) {

    .blog-title,
    .faq-title {
        font-size: 24px;
    }

    .blog-section,
    .faq-section {
        padding: 40px 0;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-icon {
        font-size: 20px;
    }
}

/* ================== */
/* Contact Section */
/* ================== */
.contact-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background-color: transparent;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* 联系我们标题居中 */
.contact-header-top {
    text-align: center;
    margin-bottom: 48px;
}

.contact-title-main {
    font-size: 40px;
    font-weight: 600;
    color: rgb(18, 18, 24);
    margin-bottom: 12px;
}

.contact-title-main .highlight {
    color: var(--color-primary);
}

.contact-subtitle-main {
    font-size: 16px;
    color: rgb(97, 100, 107);
    margin: 0;
}

/* 总部信息卡片 */
.contact-location-card {
    padding: 0;
}

.contact-location {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: none;
    background-image: linear-gradient(to right, rgba(0, 102, 255, 0.12), transparent);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: bottom;
}

/* 总部特殊样式 */
.contact-location:first-child {
    background-color: rgba(0, 102, 255, 0.03);
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    background-image: none;
}

/* 分公司标题 - 普通样式 */
.contact-location .location-title {
    font-size: 14px;
    font-weight: 600;
    color: rgb(54, 54, 60);
    margin: 0 0 5px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-location .location-title::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid var(--color-primary);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* 总部标题 - 特殊样式 */
.contact-location:first-child .location-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 8px 0;
}

.contact-location:first-child .location-title::before {
    display: none;
}

.location-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 8px 0;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 2px;
    font-size: 13px;
    line-height: 1.5;
}

.location-item:last-child {
    margin-bottom: 0;
}

.location-label {
    color: rgb(130, 130, 140);
    white-space: nowrap;
}

.location-value {
    color: rgb(54, 54, 60);
}

/* 联系人列表 */
.contact-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: rgb(97, 100, 107);
}

.person-city {
    min-width: 48px;
    text-align: justify;
    text-align-last: justify;
}

.person-dot {
    color: rgb(97, 100, 107);
}

.person-name {
    color: rgb(97, 100, 107);
}

.person-phone {
    color: rgb(36, 36, 42);
    font-weight: 500;
    letter-spacing: 1px;
}

.contact-title {
    font-size: 40px;
    font-weight: 600;
    color: rgb(18, 18, 24);
    margin-bottom: 12px;
}

.contact-title .highlight {
    color: var(--color-primary);
}

.contact-subtitle {
    font-size: 18px;
    color: rgb(102, 102, 102);
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.contact-item svg {
    flex-shrink: 0;
    color: rgb(97, 100, 107);
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--color-primary);
}

.contact-form-wrapper {
    background-color: #FFF;
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.1), 0 0px 5px 0 rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 500;
    color: rgb(136, 136, 136);
}

.form-group input {
    padding: 12px 16px;
    font-size: 14px;
    color: rgb(0, 0, 0);
    background-color: rgba(187, 187, 187, 0.15);
    border: 1px solid rgba(136, 136, 136, 0.1);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input::placeholder {
    color: rgb(153, 153, 153);
}

.form-group input:focus {
    border-color: var(--color-primary);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

/* Contact Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-header {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .contact-item {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-item {
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .form-group input {
        padding: 10px 14px;
    }
}

/* ================== */
/* 背景渐变光晕 */
/* ================== */
.bg-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    border-radius: 100%;
    filter: blur(100px);
    -webkit-filter: blur(100px);
    will-change: transform;
    opacity: 1;
    transform: translateZ(0);
}

.bg-blob-1 {
    width: 600px;
    height: 500px;
    background-color: rgba(0, 183, 255, 0.2);
    bottom: -150px;
    left: -200px;
}

.bg-blob-2 {
    width: 450px;
    height: 400px;
    background-color: rgba(0, 255, 255, 0.15);
    top: 30px;
    right: -80px;
}

/* ========== 右侧悬浮工具栏 ========== */
.floating-sidebar {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    animation: floatingSidebarIn 0.6s ease-out forwards;
}

@keyframes floatingSidebarIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.floating-glow {
    position: absolute;
    width: 100%;
    height: 60px;
    top: -10px;
    left: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 102, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(12px);
    animation: glowFloat 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.9;
    }

    50% {
        transform: translateY(130px);
        opacity: 1;
    }
}

.floating-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    border-radius: 118px;
    padding: 20px 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.floating-item {
    position: relative;
    height: 45px;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    transition: transform 0.2s;
}

.floating-btn:hover {
    transform: scale(1.15);
}

.floating-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* hover弹出左侧提示框 */
.floating-tip {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    font-size: 13px;
    color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.floating-tip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
}

.floating-item:hover .floating-tip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.floating-tip strong {
    color: var(--color-primary-dark);
    font-weight: 600;
}

/* ========== 悬浮展开面板 ========== */
.floating-panel {
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

/* 连接桥 - 防止闪动 */
.floating-panel::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    width: 20px;
    height: 100%;
}

.floating-item:hover .floating-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
    width: max-content;
}

/* 电话面板 */

.floating-panel.panel-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
}

.floating-panel .panel-icon {
    font-size: 20px;
    line-height: 1;
}

.floating-panel .panel-number {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
}

/* 二维码面板 */
.floating-panel.panel-qrcode {
    /*padding: 16px;*/
    border-radius: 12px;
}

.floating-panel.panel-qrcode img {
    display: block;
    width: 150px;
    height: 150px;
    object-fit: contain;
    background: #f8f9fa;
}

/* 文字面板 */
.floating-panel.panel-text {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 22px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

/* 联系我们弹窗 */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.contact-modal .modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #e5e7eb;
    color: #111827;
}

.contact-modal h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #111827;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.contact-form .submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2563eb 0%, var(--color-primary) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* 移动端悬浮栏隐藏 */
@media (max-width: 768px) {
    .floating-sidebar {
        display: none;
    }
}

/* ========== 契约锁动态风格列表页 ========== */

/* ========== 契约锁动态风格 - 严格对照参考源码 ========== */

/* 外层包裹容器 - 契约锁源码 */
.we-wrap {
    width: 100%;
}

.we-wrap .title-tip-primary {
    max-width: 774px;
}

@media (max-width: 991.98px) {
    .we-wrap .title-tip-primary {
        max-width: 480px;
    }
}

/* ========== 动态列表容器 - 严格参照契约锁源码 ========== */
.dynamic-container {
    padding: 56px 0;
}

@media (max-width: 991.98px) {
    .dynamic-container {
        padding: 32px 0;
    }
}

.dynamic-container.container-center {
    text-align: center;
}

.dynamic-container .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 主标题 - 契约锁样式 */
.title-primary {
    margin-bottom: 8px;
    font-size: 40px;
    font-weight: 600;
    line-height: 38px;
    color: #000;
}

.title-small {
    color: #94979e;
    font-size: 18px;
    margin-top: 30px;
}

@media (max-width: 991.98px) {
    .title-primary {
        margin-bottom: 0;
        font-size: 20px;
    }
}

/* ========== 分类Tab导航 - 契约锁圆角胶囊风格 ========== */
.dynamic-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 24px 0 48px;
    list-style: none;
    padding: 0;
}

@media (max-width: 991.98px) {
    .dynamic-nav {
        margin: 20px 0 24px;
    }
}

.dynamic-nav li {
    position: relative;
    display: inline-block;
    padding: 8px 40px;
    font-size: 14px;
    color: #4c596e;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    background-color: #f4f6f9;
    border-radius: 40px;
}

@media (max-width: 991.98px) {
    .dynamic-nav li {
        padding: 6px 20px;
        font-size: 12px;
    }
}

.dynamic-nav li:not(:last-child) {
    margin-right: 24px;
}

@media (max-width: 991.98px) {
    .dynamic-nav li:not(:last-child) {
        margin-right: 16px;
    }
}

/* tran3 过渡类 */
.dynamic-nav li.tran3 {
    transition: all 0.45s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.dynamic-nav li a {
    color: inherit;
    text-decoration: none;
}

.dynamic-nav li:hover {
    color: var(--color-primary);
    background-color: #ecf3ff;
}

/* 激活状态 - 蓝色高亮 */
.dynamic-nav li.active {
    color: var(--color-primary);
    background-color: #ecf3ff;
}

/* ========== 过渡动画类 - 契约锁源码 ========== */
.transition-active {
    transform-origin: center center;
    transition: opacity 0.45s ease 0s, transform 0.45s ease 0s;
    flex-shrink: 0;
}

.transition {
    transform-origin: center center;
    transition: opacity 0.45s ease 0s, transform 0.45s ease 0s;
    flex-shrink: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    margin: 0;
    pointer-events: none;
    display: block;
    transform: translate3d(0, 10px, 0);
}

/* ========== d-none/d-lg-block 响应式类 ========== */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }

    .d-lg-none {
        display: none !important;
    }
}

/* ========== 三列卡片网格 - 契约锁源码 ========== */
.row.scene-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 40px;
}

@media (max-width: 991.98px) {
    .row.scene-row {
        margin: 0 0 32px !important;
    }
}

.row.scene-row.row-cols-1 {
    flex-direction: column;
}

@media (min-width: 992px) {
    .row.scene-row.row-cols-lg-3 {
        flex-direction: row;
    }

    .row.scene-row.row-cols-lg-3>.col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.row.scene-row .col {
    padding: 0;
    text-align: left;
    cursor: pointer;
    margin-bottom: 25px;
}

@media (max-width: 991.98px) {
    .row.scene-row .col {
        padding: 0 !important;
    }

    .row.scene-row .col:last-child .col-div {
        margin-bottom: 0 !important;
    }
}

.row.scene-row .col:not(:last-child) {
    border-right: 1px solid #f2f3f4;
}

@media (max-width: 991.98px) {
    .row.scene-row .col:not(:last-child) {
        border: none;
    }
}

.row.scene-row .col a,
.row.scene-row .col a.my-nuxt-link--inner {
    display: block;
    text-decoration: none;
}

/* ========== 卡片容器 - 契约锁源码样式 ========== */
.col-div {
    padding: 56px 40px 72px;
    font-size: 12px;
    line-height: 24px;
    color: #7f8997;
    cursor: pointer;
    border-bottom: 2px solid #fff;
    transition: all 0.3s;
}

@media (max-width: 991.98px) {
    .col-div {
        padding: 32px 30px 40px;
        background: #fff;
        box-shadow: 2px 6px 33px -2px rgba(0, 65, 170, 0.08);
    }
}

.col-div:hover {
    background: #fff;
    border-bottom: 2px solid var(--color-primary);
    box-shadow: 3px 7px 40px -3px rgba(0, 65, 170, 0.08);
}

@media (max-width: 991.98px) {
    .col-div:hover {
        border-bottom: none;
    }
}

/* ========== 图片容器 - 契约锁源码 ========== */
.dynamic-item-img {
    height: 200px;
    margin-bottom: 42px;
    overflow: hidden;
    border-radius: 10px;
}

@media (max-width: 991.98px) {
    .dynamic-item-img {
        margin: 15px 0 25px 0;
    }
}

.dynamic-item-img img {
    width: 100%;
    transition: all 0.3s;
}

.col-div:hover .dynamic-item-img img {
    transform: scale(1.1);
}

/* ========== 标题 - 契约锁源码 ========== */
.col-div p.ellipsis {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #001330;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s;
}

@media (max-width: 991.98px) {
    .col-div p.ellipsis {
        margin-bottom: 12px;
        font-size: 14px;
    }
}

.col-div:hover p.ellipsis {
    color: var(--color-primary);
}

/* ========== 描述 - 契约锁源码 ========== */
.col-div .tip {
    height: 48px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 12px;
    line-height: 24px;
    color: #7f8997;
    background: none;
    border: none;
    box-shadow: none;
}

/* 空状态 */
.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 0;
    font-size: 16px;
    color: #999;
    background: #fff;
    border-radius: 12px;
}

/* 分页样式 */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.news-pagination a,
.news-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    font-size: 14px;
    color: #666;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.25s;
}

.news-pagination a:hover {
    color: #1a3d6e;
    border-color: #1a3d6e;
}

.news-pagination .active,
.news-pagination span.current {
    color: #fff;
    background: linear-gradient(90deg, #104db0, #26a445);
    border-color: transparent;
}

/* ========== 底部按钮组样式 - 契约锁源码 ========== */
.button-group {
    margin-top: 32px;
}

.button-group.d-inline-flex {
    display: inline-flex;
    align-items: center;
}

.button-group .btn,
.button-group .button-demo {
    margin-left: 16px;
}

@media (max-width: 767.98px) {

    .button-group .btn,
    .button-group .button-demo {
        margin-left: 12px;
    }
}

.button-try {
    display: inline-block;
}

.button-try .btn-try {
    float: none;
    margin: 0;
}

/* 按钮基础样式 - 契约锁源码 */
.btn.btn-size-regular {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

@media (max-width: 991.98px) {
    .btn.btn-size-regular {
        width: 88px;
        height: 32px;
        font-size: 12px;
        line-height: 32px;
        border-radius: 8px;
    }
}

/* 渐变彩色按钮 */
.btn.btn-theme-colorful {
    color: #fff;
}

.btn.btn-theme-colorful a {
    color: #fff !important;
    text-decoration: none;
}

.btn.btn-theme-colorful:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 77, 176, 0.3);
}

/* 白色边框按钮 */
.btn.btn-theme-plain {
    background: #fff !important;
    color: #333;
    border: 1px solid #ddd;
}

.btn.btn-theme-plain a {
    color: #333;
    text-decoration: none;
}

.btn.btn-theme-plain:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn.btn-theme-plain:hover a {
    color: var(--color-primary);
}

.btn.btn-with-shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn.btn-shape-square {
    border-radius: 8px;
}

/* 响应式 */
@media (max-width: 992px) {

    .row.scene-row,
    .row.scene-row.row-cols-lg-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dynamic-container {
        padding: 30px 0 60px;
    }

    .title-primary {
        font-size: 28px;
    }

    .dynamic-nav {
        flex-wrap: wrap;
    }

    .dynamic-nav li {
        padding: 12px 24px;
        font-size: 14px;
    }

    .row.scene-row,
    .row.scene-row.row-cols-lg-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .col-div p.ellipsis {
        font-size: 16px;
        margin: 16px 16px 10px;
        min-height: auto;
    }

    .col-div .tip {
        margin: 0 16px 20px;
        min-height: auto;
    }

    .button-group.d-inline-flex {
        flex-direction: column;
        gap: 12px;
    }

    .btn.btn-size-regular {
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================================
   style2.css 合并样式 - 文章/产品页面样式
   ============================================================ */

/* 中文字体定义 */
@font-face {
    font-family: 'Conv_DINCondensedC';
    src: url('../fonts/DINCondensedC.eot');
    src: local('☺'), url('../../../template/pc/skin/font/DINCondensedC.woff') format('woff'), url('../../../template/pc/skin/font/DINCondensedC.ttf') format('truetype'), url('../font/DINCondensedC.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* 文本选中样式 */
::-webkit-selection {
    color: #fff;
    background: rgb(0 102 255);
}

::-moz-selection {
    color: #fff;
    background: rgb(0 102 255);
}

::selection {
    color: #fff;
    background: rgb(0 102 255);
}

/* 标签样式 */
.tag {
    display: inline-block;
    transition: .5s
}

.tag.padding {
    padding: 5px 12px
}

.tags {
    color: rgb(0 102 255) !important;
    border: 1px solid rgb(0 102 255) !important;
    background-color: unset;
}

/* 英文字体 */
.Conv_DINCondensedC {
    font-family: "Conv_DINCondensedC";
}

.mb5 {
    margin-bottom: 5px;
}

/* 行距类 */
.blank {
    height: 10px;
    line-height: 10px;
    clear: both;
    font-size: 0
}

.blank-small {
    height: 20px;
    line-height: 20px;
    clear: both;
    font-size: 0
}

.blank-middle {
    height: 30px;
    line-height: 30px;
    clear: both;
    font-size: 0
}

.blank-big {
    height: 50px;
    line-height: 50px;
    clear: both;
    font-size: 0
}

.blank-large {
    height: 80px;
    line-height: 80px;
    clear: both;
    font-size: 0
}

/* 侧边栅 */
.sidebar-l {
    margin-right: 20px
}

.sidebar-r {
    margin-left: 0px;
}

.line-large {
    margin-left: -15px;
    margin-right: -15px
}

.line-large .x1,
.line-large .x2,
.line-large .x3,
.line-large .x4,
.line-large .x5,
.line-large .x6,
.line-large .x7,
.line-large .x8,
.line-large .x9,
.line-large .x10,
.line-large .x11,
.line-large .x12,
.line-large .xl1,
.line-large .xl2,
.line-large .xl3,
.line-large .xl4,
.line-large .xl5,
.line-large .xl6,
.line-large .xl7,
.line-large .xl8,
.line-large .xl9,
.line-large .xl10,
.line-large .xl11,
.line-large .xl12,
.line-large .xs1,
.line-large .xs2,
.line-large .xs3,
.line-large .xs4,
.line-large .xs5,
.line-large .xs6,
.line-large .xs7,
.line-large .xs8,
.line-large .xs9,
.line-large .xs10,
.line-large .xs11,
.line-large .xs12,
.line-large .xm1,
.line-large .xm2,
.line-large .xm3,
.line-large .xm4,
.line-large .xm5,
.line-large .xm6,
.line-large .xm7,
.line-large .xm8,
.line-large .xm9,
.line-large .xm10,
.line-large .xm11,
.line-large .xm12,
.line-large .xb1,
.line-large .xb2,
.line-large .xb3,
.line-large .xb4,
.line-large .xb5,
.line-large .xb6,
.line-large .xb7,
.line-large .xb8,
.line-large .xb9,
.line-large .xb10,
.line-large .xb11,
.line-large .xb12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

/* owl-carousel轮播插件 */
.owl-carousel .owl-dots {
    position: absolute;
    top: 50%;
    padding: 0;
    text-align: left;
    width: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    position: relative;
    vertical-align: middle
}

.owl-carousel .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    border-radius: 50%;
    background: #d3d3d3;
    display: inline-block;
    text-align: center;
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s
}

.owl-carousel .owl-dots .owl-dot.active span {
    width: 16px;
    height: 8px;
    background: #000;
    border-radius: 20px
}

.owl-carousel .owl-nav i {
    font-size: 23px;
    color: #fff
}

.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    background: #000;
    width: 42px;
    height: 42px;
    line-height: 42px;
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    position: absolute;
    text-align: center;
    border-radius: 50%;
    opacity: 0
}

.owl-carousel .owl-nav .owl-prev {
    background: #000;
    left: 20px;
    right: auto
}

.owl-carousel .owl-nav .owl-prev i {
    position: absolute;
    left: 8px;
}

.owl-carousel .owl-nav .owl-next {
    right: 20px
}

.owl-carousel .owl-nav .owl-next i {
    position: absolute;
    right: 8px
}

/* 首页轮播 */
.slides-arrow:hover .owl-nav .owl-next,
.slides-arrow:hover .owl-nav .owl-prev {
    opacity: .3
}

.slides-arrow.dot-center .owl-dots {
    position: relative;
    top: -30px;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    width: 100%
}

/* 常用TAB */
.tab-normal .tab-head {
    border-radius: 0;
    font-size: 0;
    -webkit-text-size-adjust: none;
    width: 100%;
}

.tab-normal .tab .tab-nav li {
    display: inline-block;
    width: auto;
    text-align: center
}

.tab-normal .tab .tab-nav li a {
    background: #fff;
    color: #6e6e6e;
    border-radius: 30px;
    padding: 0px 20px;
    height: 42px;
    line-height: 42px;
    margin: 0 10px;
    display: block;
    border: 0;
    font-size: 16px;
}

.tab-normal .tab .tab-nav .active a {
    background: linear-gradient(-45deg, #FFD100, rgb(0 102 255));
    cursor: default;
    color: #fff;
    border-bottom: 0px solid #FD3C6B;
}

.tab-normal .tab .tab-nav .active {
    background: none
}

.tab-normal .tab .tab-nav .active a:hover {
    color: #FFF
}

.tab-normal .tab .tab-nav li a:focus {
    outline: none;
}

.tab-normal .tab .tab-nav li a:hover {
    background: linear-gradient(-45deg, #FFD100, rgb(0 102 255));
    color: #fff
}

.tab-normal .tab .tab-body {
    padding: 0;
    border-radius: 0;
    border-top: 0px solid #ff0000
}

/* 首页产品 */
.carousel-pro .media {
    position: relative;
    border-radius: 8px;
    -webkit-transition: .5s;
    transition: .5s;
}

.carousel-pro .media:hover {
    -webkit-transition: .5s;
    transition: .5s;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, .05);
}

.carousel-pro .button {
    background-color: #FFD100;
    transition: all .5s ease;
    box-shadow: 0 3px 8px 0px rgba(39, 39, 39, 0.26);
}

.carousel-pro .media:hover .button {
    color: #FFF;
    background-color: rgb(0 102 255);
    transition: all .5s ease;
}

.carousel-pro .media-body {
    padding: 10px 0 0 0
}

.carousel-pro .media-body .price-title {
    margin-top: 5px;
    font-size: 16px;
    font-weight: 400;
    color: #5a5a5a;
    height: 48px;
    line-height: 24px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    word-break: break-all;
    -webkit-line-clamp: 2;
}

.carousel-pro.dot-center .owl-dots {
    position: relative;
    top: 30px;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    width: 100%
}

/* 首页关于我们 */
.home-about {
    background-repeat: no-repeat;
    background-position: center 50%;
    background-size: cover
}

.home-about .padding-large {
    padding: 40px 50px
}

.home-about h3 {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    word-break: break-all
}

.home-about h3:before {
    content: '';
    display: block;
    position: absolute;
    background: #FFD100;
    width: 30px;
    height: 3px;
    bottom: -15px;
    left: 0;
}

.home-about .img-responsive {
    border-radius: 0 8px 8px 0;
}

/* 首页解决方案 */
.solution .media-img {
    position: relative;
    border-radius: 8px;
}

.solution .media-img .mask {
    opacity: 0;
    z-index: 3;
    background: url(../../../template/pc/skin/images/solution-hover.png) no-repeat center center;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 8px;
    transition: 0.3s;
}

.solution .media-img .mask .subtitle {
    padding: 25px
}

.solution .media-img .mask .more {
    position: absolute;
    bottom: 25px;
    right: 25px
}

.solution .media-img:hover .mask {
    z-index: 5;
    transition: 0.3s;
    opacity: 1;
    transform: scale(1.1);
}

.solution .media-img .linear-link {
    z-index: 1;
    opacity: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .2) 65%, rgba(0, 0, 0, .8) 100%);
    width: 100%;
    height: 28%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s;
    border-radius: 0 0 8px 8px;
}

.solution .media-img .linear-link .subtitle {
    padding: 0 25px;
    z-index: 3;
    width: 100%;
    bottom: 25px;
    left: 0;
    position: absolute;
    transition: 0.3s;
}

/* 首页新闻 */
.home-news-l {
    margin-right: 10px
}

.home-news-r {
    margin-left: 10px
}

.home-news-h .media-img {
    position: relative;
}

.home-news-h .media-img .post-title {
    background: #fff;
    bottom: -30px;
    left: 30px;
    width: 65%;
    padding: 20px;
    position: absolute;
    color: #333;
    transition: 0.5s;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.06)
}

.home-news-h .media-img:hover .post-title {
    bottom: 30px;
}

.home-news-h .media-img .post-title h2 a {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    display: block;
}

.home-news-h .button {
    margin-top: 1rem;
    width: 48px;
    line-height: 28px;
    font-size: 18px;
    background: #FFD100;
    color: #fff
}

.home-news-h .media-img:hover .button {
    background: rgb(0 102 255);
    color: #fff;
}

.home-news-c:hover {
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.03);
}

.home-news-c .x3 .img-responsive {
    border-radius: 8px 0 0 8px;
}

.home-news-c .news-time {
    margin: 20px 15px 0 0px;
    border-right: 2px solid #eee;
    padding: 0
}

.home-news-c .news-time .text-large {
    font-size: 42px;
    line-height: 48px;
}

.home-news-c .news-title {
    margin-top: 20px;
    margin-left: 15px
}

.home-news-c .news-title h2 a {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-news-c:hover .news-title h2 a {
    color: rgb(0 102 255)
}

/* 路径 */
.nav-bread {
    padding: 0;
    height: 70px;
    line-height: 70px;
    font-size: 0
}

.nav-bread h2 {
    font-size: 24px;
    font-weight: 600
}

.nav-bread i {
    color: #888888;
}

.nav-bread a {
    color: #888888;
    font-size: 14px;
    display: inline-block;
}

.nav-bread a:hover {
    color: rgb(0 102 255)
}

.nav-bread a:after {
    content: "";
    padding: 0 10px;
    background: url(../../../template/pc/skin/images/nav-bread.png) no-repeat center 50%;
}

.nav-bread a:last-child:after {
    content: "";
    background: none;
}

/* 上下篇 */
.prenext-pro a.button {
    height: 70px;
    line-height: 70px;
    padding: 0 25px
}

.prenext-pro a.button:hover {
    background: rgb(0 102 255);
    color: #fff
}

.prenext-pro a.border {
    border: 1px solid #eee
}

/* 分页 */
.pagination li {
    margin: 0 5px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
}

.pagination li a {
    border-radius: 4px;
    color: #6e6e6e;
    background: #fff;
    padding: 12px 16px;
    border: 1px solid #DCDCDC;
}

.pagination li.active a,
.pagination li a:hover {
    background: rgb(0 102 255);
    color: #fff;
    border: 1px solid rgb(0 102 255);
}

/* 标题样式-居中 */
.title-c {
    position: relative;
}

.title-c h3 {
    position: relative;
    font-size: 30px;
    text-transform: uppercase;
    margin: 0 auto 50px auto;
    font-weight: 600
}

.title-c h3:before {
    background: #FFD100;
    content: '';
    display: block;
    position: absolute;
    width: 30px;
    height: 3px;
    bottom: -15px;
    left: 50%;
    margin-left: -15px;
}

/* 标题样式-左 */
.title-l h2 {
    line-height: 28px;
    height: 28px;
    color: #333;
    position: relative;
    font-size: 16px;
    letter-spacing: 0;
    padding-left: 20px;
    margin-bottom: 10px;
}

.title-l h2:before {
    content: '';
    display: block;
    position: absolute;
    width: 5px;
    height: 20px;
    top: 4px;
    background: rgb(0 102 255);
    left: 0
}

/* 下拉分类 */
.nav-tree {
    font-size: 0;
    height: 70px;
    line-height: 70px
}

.nav-tree li {
    position: relative;
    display: inline-block;
}

.nav-tree li a {
    color: #6E6E6E;
    display: block;
    padding: 0 30px;
    font-size: 16px;
    background: #fff;
}

.nav-tree li a.active,
.nav-tree li a.cur {
    background: linear-gradient(-45deg, #FFD100, rgb(0 102 255));
    color: #fff
}

.nav-tree li.focusa a {
    background: linear-gradient(-45deg, #FFD100, rgb(0 102 255));
    color: #fff;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0;
}

.nav-tree li ul:after {
    position: absolute;
    top: -8px;
    left: 50%;
    margin-left: -8px;
    display: inline-block;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    border-left: 8px solid transparent;
    content: '';
}

.nav-tree li ul {
    top: 70px;
    left: 0;
    background: #fff;
    padding: 10px 0;
    z-index: 99;
    position: absolute;
    width: 100%;
    display: none;
    border-radius: 0px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.03);
}

.nav-tree li ul li {
    display: block;
    width: 100%;
    text-align: left;
}

.nav-tree li ul li.children a {
    font-size: 14px;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    display: block;
    color: #6e6e6e;
    line-height: 34px;
    height: 34px
}

.nav-tree li ul li.children a.active,
.nav-tree li ul li.children a:hover {
    color: rgb(0 102 255)
}

/* 属性筛选 */
.filter-box .padding-big {
    padding: 15px 25px
}

.filter-box dl {
    margin: 15px 0;
    display: flex;
}

.filter-box dl dt {
    width: 8%;
    display: block;
    flex: none;
    line-height: 24px;
    font-weight: normal
}

.filter-box dl dd {
    display: block;
    float: left;
    position: relative;
}

.filter-nav ul li {
    margin: 0;
    display: block;
    float: left;
    width: auto;
    line-height: 24px;
}

.filter-nav ul li a {
    margin: 0 10px 0 0;
    padding: 2px 10px;
    cursor: pointer;
    display: block;
    color: #6E6E6E;
    transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.filter-nav ul li a:hover {
    color: rgb(0 102 255);
}

.filter-nav ul li a.active {
    color: #fff;
    background: rgb(0 102 255)
}

.filter-nav ul li b {
    font-weight: normal;
}

/* 横向不带ICO导航 */
.nav-x {
    background: #fff;
    width: 100%;
    position: relative;
}

.nav-x .menu-toggle h3 {
    display: none
}

.nav-x ul {
    font-size: 0;
    -webkit-text-size-adjust: none;
    text-align: center
}

.nav-x li {
    display: inline-block
}

.nav-x li i {
    margin: 0px auto 5px auto;
    font-size: 24px;
    display: block;
}

.nav-x li a {
    font-size: 16px;
    padding: 0;
    height: 70px;
    line-height: 70px;
    color: #6e6e6e;
    text-align: center;
    display: block;
}

.nav-x li a:hover {
    color: rgb(0 102 255)
}

.nav-x li a.active {
    background: linear-gradient(-45deg, #FFD100, rgb(0 102 255));
    color: #fff
}

.col-2 {
    width: 10%
}

/* 新闻列表 */
.list-news {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 8px;
}

.list-news .media-img img {
    border-radius: 8px 0 0 8px;
}

.list-news .time {
    margin-right: -20px;
    padding: 15px 0 10px 0;
    border-right: 1px solid #eee;
}

.list-news .time .text-large {
    font-size: 52px;
    line-height: 54px;
}

.list-news .news {
    margin-left: 50px;
    margin-right: 30px
}

.list-news .news h2 a {
    display: block;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px
}

.list-news .button {
    width: 70px;
    line-height: 56px;
    font-size: 24px;
    border: 1px solid #ebebeb;
    border-radius: 8px;
}

.list-news .button i {
    font-size: 22px;
}

.list-news:hover .button {
    background: rgb(0 102 255);
    color: #fff;
    border: 1px solid rgb(0 102 255)
}

.list-news:hover h2 a {
    color: rgb(0 102 255)
}

/* 纯文字列表 */
.list-post-text li {
    padding: 5px 0;
}

.list-post-text li a {
    display: block;
}

.list-post-text li.dot a {
    padding-left: 15px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-post-text li.dot:hover a:before {
    background: rgb(0 102 255);
}

.list-post-text li.dot a:before {
    content: '';
    position: absolute;
    left: -2px;
    background: #ccc;
    width: 6px;
    height: 6px;
    top: 9px;
    border-radius: 50%
}

/* 下载列表 */
.normal-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFF;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.normal-list li a {
    flex: 1;
    min-width: 0;
    display: block;
    font-size: 16px;
    line-height: 24px;
    padding: 25px 20px 25px 50px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.normal-list li span {
    flex-shrink: 0;
    color: #888888;
    padding: 25px 30px 25px 10px;
    font-size: 14px;
}

.normal-list li:hover {
    background: rgb(0 102 255);
    color: #FFF;
    transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.normal-list li:hover a,
.normal-list li:hover span {
    color: #FFF
}

.normal-list li.dot:hover a:before {
    background: #fff;
}

.normal-list li.dot a {
    position: relative
}

.normal-list li.dot a:before {
    content: '';
    position: absolute;
    left: 30px;
    background: #ececec;
    width: 7px;
    height: 7px;
    top: 35px;
    border-radius: 50%
}

/* 视频列表 */
.video-list .media {
    -webkit-transition: .5s;
    transition: .5s;
}

.video-list .media:hover {
    box-shadow: 0 30px 50px rgba(229, 229, 229, .8)
}

.video-list .media-img {
    position: relative;
    overflow: hidden
}

.video-list .media-body .padding-big {
    padding: 20px
}

.video-list .media-body h2 {
    margin: 0 0 20px 0;
    overflow: hidden
}

.video-list .media a.play {
    opacity: .6;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -24px;
    margin-top: -24px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: rgba(0, 0, 0, .6);
    z-index: 2;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.video-list .media a.play i {
    font-size: 24px;
}

.video-list .media-img .img-responsive {
    border-radius: 8px 8px 0 0;
}

.video-list .media .playtime {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 0 8px;
    height: 20px;
    line-height: 18px;
    background: rgba(0, 0, 0, .5);
    z-index: 2;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.video-list .media:hover a.collect,
.video-list .media:hover a.play {
    opacity: 1;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

/* 横向左图右字列表 */
.list-post-x .media {
    margin-bottom: 20px
}

.list-post-x .media.border {
    border: 0;
    border-bottom: 1px solid #ECEFF5;
    padding-bottom: 20px
}

.list-post-x .media img {
    transition: all .3s ease-out
}

.list-post-x .media .thumb-md {
    position: relative;
    max-width: 100px;
    overflow: hidden
}

.list-post-x .media .thumb-md .playtime {
    position: absolute;
    bottom: 5px;
    right: 5px;
    padding: 0 5px;
    height: 20px;
    line-height: 18px;
    background: rgba(0, 0, 0, .6);
    z-index: 3;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.list-post-x .media .thumb-md .playicon {
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 20px;
    height: 20px;
    line-height: 18px
}

.list-post-x .media:hover img {
    transition: all .3s ease-out;
    transform: scale(1.1)
}

.list-post-x .media.media-x .float-left {
    margin-right: 15px
}

.list-post-x .media.media-x .float-right {
    margin-left: 15px
}

.list-post-x .media.media-x .media-body {
    text-align: left;
    padding: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: baseline;
}

.list-post-x .media.media-x .media-body h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.list-post-x .media a:hover {
    color: #434C5A
}

.list-post-x .media-body p {
    color: #888888;
    line-height: 22px
}

.list-post-x .media:last-child {
    margin-bottom: 0
}

/* 文章内容样式 */
.article {
    overflow: hidden
}

.article .padding-large {
    padding: 20px 22px;
}

.article .post h1 {
    font-size: 26px;
    font-weight: 700;
    color: #141414;
    line-height: 1.5;
}

.article .post h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0
}

.article .post h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0
}

.article .post .meta {
    margin-top: 15px;
}

.article .post .meta span {
    color: #a4a4a4;
}

.article .post hr {
    margin: 10px 0;
    height: 1.5px
}

.article .post strong {
    font-size: 16px;
    margin: 10px 0
}

.article .post table {
    margin: 20px 0
}

.article .post table th {
    background: #daf0fd;
    color: #fff;
    border: 1px solid #fff
}

.article .post table tr.ue-table-interlace-color-single {
    background: #daf0fd
}

.article .post p {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 20px;
}

.article .post img {
    max-width: 100%;
    height: auto !important;
}

.article .post a {
    text-decoration: none;
}

.article .post a:hover {
    color: rgb(0 102 255);
    border-bottom: 0 solid rgb(0 102 255)
}

.article .post .text-right {
    text-align: right
}

.article .post ul li {
    padding: 0 0 5px 20px;
    position: relative;
    font-size: 16px
}

.article .post ul li p {
    line-height: 24px
}

.article .post ul li:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    background: #888888;
    width: 7px;
    height: 7px;
    border-radius: 50%
}

.article .post ol {
    padding: 10px 0 0 0
}

.article .post ol.list-paddingleft-2 {
    position: relative
}

.article .post ol li {
    padding: 0;
    position: relative
}

.article .post ol li p {
    line-height: 26px;
    font-size: 16px;
    color: #888888
}

.article .post .info {
    padding: 15px;
    background-image: linear-gradient(180deg, rgba(247, 232, 255, .54), rgba(191, 223, 255, .35));
    border-radius: 9px;
}

.article .post .info .info-h {
    color: #6e4bfa;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}

.article .post .info .info-c {
    font-size: 16px;
}

.article .post .info .info-f {
    font-size: 13px;
    color: #848691;
    margin-top: 10px;
}

/* 产品列表 */
.product-list .media {
    border-radius: 8px;
    -webkit-transition: .3s;
    transition: .3s;
}

.product-list .media:hover {
    -webkit-transition: .3s;
    transition: .3s;
    box-shadow: 0 5px 20px 5px rgba(0, 0, 0, .05);
}

.product-list .media-body {
    padding: 10px 0 0 0
}

.product-list .media-body h2 a {
    margin-top: 5px;
    font-size: 16px;
    font-weight: 400;
    color: #5a5a5a;
    height: 48px;
    line-height: 24px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    word-break: break-all;
    -webkit-line-clamp: 2;
}

.product-list .media:hover .media-body h2 a {
    color: rgb(0 102 255);
}

.price-info ul li.v2-1 {
    width: 50%
}

.price-info ul li.v2-2 {
    width: 50%;
}

/* 产品详情页样式 */
.z-price {
    display: flex;
    align-items: flex-end;
}

.crossed-price {
    margin-left: 10px;
    line-height: 30px;
    color: #999;
}

.product-description {
    padding: 30px 10px;
    background: #fff;
    border-radius: 8px;
}

.product-description .padding-large {
    padding: 10px 0 0 30px
}

.product-description .padding-large-top {
    padding: 0
}

.product-description p {
    line-height: 24px
}

.product-description .zoomimg {
    width: 474px
}

/* 产品详情TAB */
.product-overview {
    padding: 0 10px;
    background: #fff;
}

.product-overview .tab {
    margin: 0 -10px;
}

.product-overview .tab-nav-container {
    display: flex;
    justify-content: space-between;
}

.product-overview .tab-nav-container .tab-nav {
    padding-left: 20px;
}

.product-overview .tab-head {
    border-radius: 0;
    font-size: 0;
    -webkit-text-size-adjust: none;
    width: 100%;
    border-bottom: 1px solid #EFEFEF
}

.product-overview .tab .tab-nav li {
    display: inline-block;
    margin-right: 25px;
}

.product-overview .tab .tab-nav li a {
    margin-bottom: -1px;
    color: #6E6E6E;
    padding: 12px 0;
    display: block;
    line-height: 24px;
    border: 0;
    border-radius: 0;
    font-size: 18px;
    text-align: center;
}

.product-overview .tab .tab-nav .active {
    border-radius: 0px;
}

.product-overview .tab .tab-nav .active a {
    cursor: default;
    color: rgb(0 102 255);
    background: #FFF;
    border-bottom: 3px solid rgb(0 102 255);
}

.product-overview .tab .tab-nav li a,
.product-overview .tab .tab-nav .active a:focus {
    outline: none;
}

.tab-nav-container.floating {
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transform: translateY(0) translateZ(0);
}

.tab-nav-placeholder.active {
    height: 60px;
}

.product-overview .tab .tab-body {
    padding: 0 10px;
    border-radius: 0;
    border-top: solid 0px #ebebeb;
}

/* 产品二维码 */
.qrcode_switch {
    display: flex;
    align-items: flex-end;
}

.qrcode_switch_dropdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 14px;
    height: 50px;
    position: relative;
    width: 160px;
    background-color: #ededed;
    cursor: pointer;
}

.qrcode_switch_dropdown a {
    color: #666;
    font-size: 14px;
}

.qrcode_switch_dropdown i.ey-tb-scan {
    font-size: 15px;
    margin-right: 4px;
}

.qrcode_switch_dropdown .qrcode {
    display: none;
    position: absolute;
    height: 160px;
    padding: 6px;
    right: 0;
    top: 100%;
    width: 160px;
    background-color: #fff;
    border: 1px solid #eee;
    z-index: 99;
}

.qrcode_switch_dropdown:hover .qrcode {
    display: block;
}

.qrcode_switch_dropdown .qrcode img {
    display: block;
    height: 100%;
    width: 100%;
}

/* 产品推荐 */
.product-recommend {
    padding: 30px 0;
}

.product-recommend .carousel-pro:hover .owl-nav .owl-prev,
.product-recommend .carousel-pro:hover .owl-nav .owl-next {
    opacity: .6;
}

/* 放大镜 */
#zoomimg {
    cursor: pointer;
    display: block
}

.pro-thumb .item img {
    border: 1px solid #ececec
}

.pro-thumb .item:hover img {
    border: 1px solid rgb(0 102 255)
}

.pro-thumb:hover .owl-nav .owl-prev,
.pro-thumb:hover .owl-nav .owl-next {
    opacity: .6;
}

/* 商品参数 */
.newattr-info {
    width: 100%;
}

.newattr-info .newattr-info-tab {
    width: 100%;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: hidden;
}

.newattr-info .newattr-info-tab .newattr-info-item {
    width: 50%;
    background: #fff;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px solid #f0f3f5;
    border-left: 1px solid #f0f3f5;
    position: relative;
}

.newattr-info .newattr-info-tab .newattr-info-item:nth-child(2n) {
    border-right: 1px solid #f0f3f5;
}

.newattr-info .newattr-info-tab .newattr-info-item:nth-last-child(2) {
    border-bottom: 1px solid #f0f3f5;
}

.newattr-info .newattr-info-tab .newattr-info-item:last-child {
    border-bottom: 1px solid #f0f3f5;
}

.newattr-info .newattr-info-tab .newattr-info-item .newattr-info-item-title {
    width: 160px;
    min-height: 60px;
    height: 100%;
    font-size: 14px;
    color: #11192d;
    letter-spacing: 0;
    line-height: 18px;
    padding: 0 24px;
    background: #f3f6f8;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
}

.newattr-info .newattr-info-tab .newattr-info-item .newattr-info-item-content {
    width: 240px;
    max-height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: 0 24px;
    font-size: 14px;
    color: #11192d;
    letter-spacing: 0;
    line-height: 20px;
    text-align: left;
}

/* 商品详情图片 */
.content img {
    max-width: 100% !important;
    height: auto !important;
}

/* 联系我们 */
.inside h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px
}

.inside .contact {
    padding: 0 0 50px 0;
}

.inside .contact hr {
    height: 1px;
    background: #F2F2F2
}

.inside .contact .media {
    margin: 0;
    padding: 0 0 30px 0;
}

.inside .contact .media span {
    width: 42px;
    height: 42px;
    line-height: 64px;
}

.inside .contact .media i {
    font-size: 36px;
}

.inside .contact .media .media-body {
    padding: 0 0 0 10px;
    margin-top: 0px;
}

.inside .contact .media .media-body a,
.inside .contact .media .media-body p {
    color: #333;
}

.inside .wx {
    border: 1px solid #eee;
    padding: 20px 30px;
}

/* 留言表单 */
.guestbook {
    padding: 50px 80px 50px 0
}

.guestbook h2 {
    font-size: 24px;
    font-weight: 600
}

.guestbook .padding {
    padding: 50px;
}

.guestbook .form-group {
    padding-bottom: 20px
}

.guestbook .input {
    font-size: 16px;
    padding: 0 15px;
    height: 50px;
    line-height: 50px;
    border: 0;
    width: 100%;
    display: block;
    -webkit-appearance: none;
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.0) inset;
}

.guestbook .textarea {
    padding: 12px;
    line-height: 24px;
    width: 100%;
    font-size: 16px;
    background: #fff;
    border: 0;
}

.guestbook .label {
    display: block;
    line-height: 24px;
}

.guestbook .label label {
    font-weight: 400;
}

.guestbook .field {
    font-size: 16px
}

.guestbook select {
    font-size: 16px;
    padding: 0 35px 0 15px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    border: 0;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #fff url(../../../template/pc/skin/images/select-down.png) no-repeat right 50%;
    color: #666;
}

/* 频道等页面banner */
.channel-banner {
    height: 350px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin: 0;
    padding: 0;
}

.channel-banner .banner-info {
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 0;
    right: 0;
    z-index: 3
}

.channel-banner .banner-info h1 {
    font-size: 40px;
    font-weight: 600;
    position: relative;
    margin-bottom: 30px
}

.channel-banner .banner-info h1:before {
    left: 50%;
    margin-left: -15px;
    bottom: -10px;
    width: 30px;
    height: 3px;
    background: rgb(0 102 255);
    content: '';
    display: block;
    position: absolute;
}

.channel-banner .banner-info p {
    font-size: 36px;
}

/* 底部样式 */
footer {
    padding: 70px 0 0 0;
}

footer h3 {
    font-weight: 700;
    color: #fff
}

footer ul li.item-1 {
    width: 15%
}

footer ul li.item-2 {
    width: 15%
}

footer ul li.item-3 {
    width: 15%
}

footer ul li.item-4 {
    width: 15%
}

footer ul li.item-5 {
    width: 30%
}

footer ul li.item-6 {
    width: 10%
}

footer ul li ul li a {
    line-height: 32px;
    color: #888
}

footer ul li ul li a:hover,
footer .contact .media .media-body a:hover {
    color: #fff;
}

footer .contact {
    padding-top: 3px
}

footer .contact .media {
    margin: 0 0 5px 0;
    padding: 0 0 10px 0;
}

footer .contact .media span {
    width: 24px;
    height: 24px;
}

footer .contact .media i {
    line-height: 24px;
}

footer .contact .media .media-body a,
footer .contact .media .media-body {
    padding: 0;
    color: #888;
    line-height: 24px;
}

footer .qr {
    margin-left: 20px;
    background: #484848;
}

footer .qr img {
    width: 100%
}

footer .copyright {
    padding: 20px 0 60px 0;
    color: #888;
    border-top: 1px solid #404040;
}

footer .copyright a {
    margin-left: 5px;
    color: #888
}

footer .tab-head {
    border-radius: 0;
    font-size: 0;
    -webkit-text-size-adjust: none;
    padding: 0;
    border-bottom: 1px solid #404040
}

footer .tab .tab-nav li {
    display: inline-block;
    width: auto;
    margin: 0 20px 0 0
}

footer .tab .tab-nav li a {
    color: #888;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
    display: block;
    line-height: 20px;
    border-radius: 0;
    font-size: 16px;
}

footer .tab .tab-nav .active {
    border-radius: 0px;
}

footer .tab .tab-nav .active a {
    margin-bottom: -1px;
    cursor: default;
    border-bottom: 1px solid #FFB133;
}

footer .tab .tab-nav li a,
footer .tab .tab-nav .active a:focus {
    outline: none;
}

footer .tab .tab-body {
    border-radius: 0;
    border-top: solid 0px #ebebeb;
    padding: 25px 0
}

footer .tab .tab-body .flink a {
    display: inline-block;
    margin-right: 15px;
    line-height: 24px
}

footer .tab .tab-body .flink a img {
    width: 110px;
    height: 58px;
}

/* AI搜索框 */
.ai_search {
    padding: 15px;
    background-image: linear-gradient(180deg, rgba(247, 232, 255, .54), rgba(191, 223, 255, .35));
    border-radius: 9px;
}

.ai_search .ai_search_head {
    color: #6e4bfa;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}

.ai_search .ai_search_box {
    font-size: 16px;
}

/* 无内容提示 */
.no-data {
    text-align: center;
    margin-bottom: 50px;
    padding: 100px 0;
    background: url(../../../template/pc/skin/images/no-data.png) no-repeat;
    background-position: center;
    background-size: 80px 80px;
}

.no-data span {
    display: block;
    margin-top: 120px;
    font-size: 16px;
    color: #9b9b9b;
}

/* style2响应式 */
@media screen and (max-width:1440px) {
    .container-layout {
        max-width: 98%;
    }
}

.bg-gray {
    background: #F7F7F7;
}

/* ========================================
   博客列表页样式
   ======================================== */
.blog-list-section {
    padding-top: 140px;
}

/* 图片占位符样式 */
.blog-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f4fd 0%, #d6ecf9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

/* 分页样式 */
.blog-list-section .pagelist {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.blog-list-section .pagelist a,
.blog-list-section .pagelist span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    color: #666;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.blog-list-section .pagelist a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.blog-list-section .pagelist .thisclass,
.blog-list-section .pagelist span.current {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

@media (max-width: 768px) {
    .blog-list-section {
        padding-top: 100px;
    }
}

/* 分页容器居中 */
.pagination-wrapper {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.pagination-wrapper a,
.pagination-wrapper span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    margin: 0 4px;
    font-size: 14px;
    color: #666;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.pagination-wrapper a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.pagination-wrapper .thisclass,
.pagination-wrapper span.current,
.pagination-wrapper b {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}