/* ==========================================================================
   基础样式
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   目录索引（不改变样式，仅用于梳理结构）
   1) 变量与全局基础样式
   2) 布局容器与通用排版
   3) Header / Nav
   4) Footer
   5) UI 组件（按钮、卡片、标签等）
   6) 公告栏
   7) 首页 Hero
   8) 技术特性 / 应用场景
   9) 数据统计
   10) 关于我们等内页
   11) 响应式适配
   ========================================================================== */

:root {
    /* 字体大小变量 */
    --font-size-xs: 0.72rem;
    --font-size-sm: 0.85rem;
    --font-size-base: 0.98rem;
    --font-size-md: 1.05rem;
    --font-size-lg: 1.15rem;
    --font-size-xl: 1.35rem;
    --font-size-2xl: 1.8rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3.4rem;

    /* 圆角变量 */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    /* 字体变量 */
    --font-family-base: "Plus Jakarta Sans", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;

    /* 颜色变量 */
    --primary-color: #0b5cff;
    --secondary-color: #10b3a3;
    --text-color: #0f172a;
    --text-muted: #5f6b7a;
    --bg-color: #ffffff;
    --bg-soft: #f5f7fb;
    --border-color: #e6ecf5;
    --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.12);

    /* 断点变量 */
    --breakpoint-sm: 480px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1200px;
}

/* 基本重置和全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-base);
    font-size: 16px; /* 明确设置基础字体大小 */
    line-height: 1.7;
    color: var(--text-color);
    background-color: #f7f9fc;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--text-color);
}

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

/* ==========================================================================
   布局组件
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 - 模仿JDChain排版 */
.header {
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-color);
    padding: 0.8rem 0;  /* 减少内边距使头部更紧凑 */
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);  /* 更轻的阴影 */
    border-bottom: 1px solid var(--border-color);
    position: relative;
    font-size: 16px; /* 确保头部基础字体大小统一 */
    backdrop-filter: blur(8px);
    z-index: 3000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;  /* 稍微增加最大宽度 */
}

.logo {
    display: flex;
    align-items: center;
    padding-top: 6px;
    gap: 0.8rem;  /* 减少logo和文字间距 */
}

.logo-img {
    height: 28px;  /* 稍微减小logo尺寸 */
    width: auto;
  
    object-fit: contain;
}

.logo-divider {
    color: #858484;
    font-size: 1.6rem;
    font-weight: 100;
    margin: 0 0.6rem;
    line-height: 0.2;
}

.logo h1 {
    font-size: 1.5rem;  /* 调整字体大小 */
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    color: #333;
}

.nav {
    display: flex;
    gap: 1.5rem;  /* 调整导航间距 */
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    margin-right: 0;
}

/* 导航操作按钮区域 */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 0;  /* 移除左边距，让登录按钮与其他导航项间距一致 */
}

/* 登录按钮样式 */
.login-btn {
    background: transparent; /* 透明背景 */
    color: #000000; /* 黑色文字 */
    border: 1px solid transparent; /* 透明边框 */
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.login-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.login-btn i {
    font-size: 0.875rem;
}

/* 选中状态 */
.login-btn.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

/* 选中动画效果 */
.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.login-btn:hover::before {
    left: 100%;
}

/* 移动端登录按钮 */
.mobile-nav-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.mobile-login-btn {
    background: transparent; /* 透明背景 */
    color: #000000; /* 黑色文字 */
    border: 1px solid transparent; /* 透明边框 */
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.mobile-login-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-login-btn i {
    font-size: 1rem;
}

/* 移动端选中状态 */
.mobile-login-btn.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

/* 移动端选中动画效果 */
.mobile-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-login-btn:hover::before {
    left: 100%;
}

.nav a {
    color: #1f2937;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    position: relative;
}

.nav a:hover {
    color: var(--primary-color);
    
}

.nav a.active {
    color: var(--text-color);
    font-weight: 600;
}

/* 如果需要添加特殊标签样式（类似参考图片中的红色标签） */
.nav a.special-tag {
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-weight: 500;
}

.nav a.special-tag:hover {
    background: #0a4fe0;
    color: white;
}

/* 下拉菜单样式 */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    color: #666;
    font-weight: 400;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    position: relative;
    cursor: pointer;
}

.dropdown-toggle:hover {
    color: #333;
    
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 500px;
    padding: 20px;
    display: none;
    z-index: 3100;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

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

.dropdown-section {
    flex: 1;
    padding: 0 12px;
}

.dropdown-section:first-child {
    border-right: 1px solid #e0e0e0;
    padding-left: 0;
}

.dropdown-section:last-child {
    padding-right: 0;
}

.dropdown-section h4 {
    font-size: 0.9rem;
    font-weight: 400;
    color: #242424;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--primary-color);
}

.dropdown-section a {
    display: block;
    color: #666;
    font-size: 0.85rem;
    padding: 6px 0;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.dropdown-section a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    transition: all 0.2s ease;
}

/* 页脚样式 */
.footer {
    background: #0f172a;
    color: #ffffff;
    margin-top: 4rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer .contact-section {
    background: #16213e;
    padding: 1rem 0;
    border-bottom: 1px solid #2a2a3e;
}

.footer .contact-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 0;
}

.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b0b0b0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
    transition: none;
}

.footer .contact-item:hover {
    transform: none;
}

.footer .contact-icon {
    font-size: 1rem;
}

.footer-top {
    background: #111827;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-main {
    padding: 2.6rem 0;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-logo h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.brand-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.brand-info p {
    margin: 0.2rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: #f7f7fa;
    border-radius: 10px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #f3f3f3;
    transform: translateY(-2px);
}

/* 为X图标的链接添加特殊样式 */
.social-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.social-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

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

.link-column h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    padding-bottom: 0.4rem;
    display: inline-block;
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-column li {
    margin-bottom: 0.8rem;
}

.link-column a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.link-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background: #0b1220;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    line-height: 1.4;
}

.footer-links-bottom {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   UI 组件
   ========================================================================== */

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn:hover {
    background: #0a4fe0;
    border-color: #0a4fe0;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(11, 92, 255, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* 卡片组件 */
.feature-card {
    background: #ffffff;
    padding: 2rem 2.2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 92, 255, 0.15);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2a44;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.feature-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* 标题组件 */
.section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #0f172a;
    position: relative;
    letter-spacing: 0.3px;
}

.section-title::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 3px;
    display: inline-block;
    margin-right: 8px;
    transform: translateY(-1px);
    background: linear-gradient(135deg, #0b5cff 0%, #10b3a3 100%);
    box-shadow: 0 3px 10px rgba(11, 92, 255, 0.28);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    background: linear-gradient(135deg, #0b5cff 0%, #10b3a3 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

/* 标签页组件 */
.app-tab {
    background: white;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #334155;
}

.app-tab:hover {
    border-color: rgba(11, 92, 255, 0.4);
    color: var(--primary-color);
}

.app-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* 联系信息组件 */
.contact-item {
    background: white;
    padding: 1.6rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #343434;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #888787;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* ==========================================================================
   公告栏样式
   ========================================================================== */

.announcement-section {
    background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.announcement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.announcement-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.announcement-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.announcement-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.announcement-title i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.announcement-more {
    color: var(--primary-color);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.announcement-more:hover {
    color: var(--secondary-color);
}

.announcement-list {
    position: relative;
    overflow: hidden;
}

.announcement-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.announcement-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(11, 92, 255, 0.16);
    border-color: var(--primary-color);
}

.announcement-item:last-child {
    margin-bottom: 0;
}


.announcement-type {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
}

.announcement-type.important {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.announcement-type.system {
    background: rgba(239, 68, 68, 0.1);
    color: #03a737;
}

.announcement-type.activity {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.announcement-type.maintenance {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.announcement-time {
    font-size: 0.8rem;
    color: #6c757d;
}

.announcement-content {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.announcement-title-text {
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.announcement-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    white-space: nowrap;
}

.announcement-type-badge.important {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.announcement-type-badge.system {
    background: rgba(0, 50, 12, 0.1);
    color: #02b426;
}

.announcement-type-badge.activity {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.announcement-type-badge.maintenance {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.announcement-type-badge i {
    font-size: 0.7rem;
}

.announcement-summary {
    color: #6c757d;
    font-size: 0.85rem;
}

.announcement-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.announcement-expand {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.announcement-expand i {
    transition: transform 0.3s ease;
}

.announcement-item.expanded .announcement-expand i {
    transform: rotate(180deg);
}

.announcement-time {
    font-size: 0.8rem;
    color: #6c757d;
    margin-left: auto;
}

/* 轮播样式（公告页使用） */
.announcement-carousel {
    position: relative;
}

.announcement-carousel .announcement-item {
    display: none;
}

.announcement-carousel .announcement-item.active {
    display: block;
}

.announcement-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.announcement-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.announcement-carousel-dot.active {
    background: var(--primary-color);
}

.announcement-carousel-dot:hover {
    background: #94a3b8;
}

/* 展开更多按钮 */
.announcement-more-container {
    text-align: center;
    margin-top: 2rem;
}

.announcement-more-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.announcement-more-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.announcement-more-btn i {
    transition: transform 0.3s ease;
}

.announcement-more-btn.expanded i {
    transform: rotate(180deg);
}

/* 加载状态 */
.announcement-loading {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

.announcement-loading i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 错误状态 */
.announcement-error {
    text-align: center;
    padding: 2rem;
    color: #dc2626;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* 空状态 */
.announcement-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
}

.announcement-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .announcement-section {
        padding: 1.5rem 0;
    }

    .announcement-container {
        padding: 0 15px;
    }

    .announcement-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .announcement-item {
        padding: 1rem;
    }

    .announcement-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .announcement-time {
        align-self: flex-end;
    }

    .announcement-more-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* 动画效果 */
.announcement-item {
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   页面特定样式
   ========================================================================== */

/* 主要介绍区域 */
.hero {
    background: radial-gradient(1200px 600px at 20% 10%, rgba(11, 92, 255, 0.08), transparent 60%),
        radial-gradient(900px 500px at 80% 20%, rgba(16, 179, 163, 0.08), transparent 55%),
        #ffffff;
    color: var(--text-color);
    padding: 5rem 0 4.5rem;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    top: 30px;
    background: radial-gradient(circle, rgba(11, 92, 255, 0.16) 0%, rgba(11, 92, 255, 0) 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    left: -90px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(16, 179, 163, 0.14) 0%, rgba(16, 179, 163, 0) 72%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    min-height: 560px;
}

.hero-text {
    text-align: center;
    order: 1;
}

.hero-visual {
    order: 2;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.8px;
    line-height: 1.2;
    font-family: "Space Grotesk", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    text-transform: none;
}

.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.55);
    margin-bottom: 0.6rem;
}

.hero-title-en {
    font-weight: 500;
    letter-spacing: 2.5px;
    margin-left: 6px;
    color: #1f2a44;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 400;
    color: var(--text-muted);
}

.hero-chips {
    display: none;
    flex-wrap: wrap;
    gap: 0.58rem;
    margin-top: 1.1rem;
    justify-content: center;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.70rem;
    color: #1f2a44;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
    line-height: 1.2;
    backdrop-filter: blur(3px);
}

.hero-chip-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    display: block;
}

/* Hero按钮样式 */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.2rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ffffff;
    color: var(--primary-color);
    border: 1px solid rgba(11, 92, 255, 0.35);
    border-radius: 8px;
    font-size: 0.8rem;
    letter-spacing: 0.4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 96px;
    text-align: center;
}

.hero-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(11, 92, 255, 0.18);
}

.hero-btn:active {
    transform: translateY(0);
}

.hero-buttons .hero-btn:first-child {
    background: #ffffff;
    border-color: rgba(11, 92, 255, 0.35);
    color: var(--primary-color);
    box-shadow: none;
}

.hero-buttons .hero-btn:first-child:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(11, 92, 255, 0.18);
    transform: translateY(-2px);
}

/* 小程序二维码弹窗样式 */
.miniprogram-qr-popup {
    display: none;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    padding: 20px;
    z-index: 1000;
    min-width: 180px;
    text-align: center;
    margin-left: 15px;
    border: 1px solid #e0e0e0;
}

.miniprogram-qr-popup::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #fff;
}

.miniprogram-qr-popup img {
    width: 140px;
    height: 140px;
    display: block;
    margin: 0 auto 12px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.miniprogram-qr-popup p {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.miniprogram-qr-popup.show {
    display: block;
    animation: fadeInRight 0.3s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* 为小程序按钮添加相对定位 */
.hero-btn.qr-trigger {
    position: relative;
}

/* 主页视觉区域 */
.hero-visual {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 18px;
    
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}



/* 技术特性区域 */
.features {
    padding: 4.5rem 0;
    background: var(--bg-soft);
}

/* 合规与资质 */
.compliance {
    padding: 3.5rem 0;
    background: #ffffff;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.compliance-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
}

.compliance-card h3 {
    font-size: 1.05rem;
    margin: 0.6rem 0 0.5rem;
    color: var(--text-color);
}

.compliance-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.compliance-badge {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary-color);
    border: 1px solid rgba(11, 92, 255, 0.35);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}

.compliance-meta {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: rgba(15, 23, 42, 0.6);
}

/* 产品矩阵 */
.product-matrix {
    padding: 3.5rem 0;
    background: #ffffff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.product-card {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.6rem;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    transform: translateZ(0);
    will-change: transform;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 92, 255, 0.25);
}

.product-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    background: linear-gradient(120deg, rgba(11, 92, 255, 0.08), rgba(16, 179, 163, 0.06));
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

/* 组内聚焦：非悬浮卡片轻微淡化 */
.product-grid:hover .product-card {
    opacity: 0.86;
}

.product-grid:hover .product-card:hover {
    opacity: 1;
}
.product-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.product-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 解决方案案例 */
.case-studies {
    padding: 3.5rem 0;
    background: var(--bg-soft);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.case-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
}

.case-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: #1f2a44;
    background: rgba(15, 23, 42, 0.06);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.6rem;
}

.case-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.case-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.case-meta {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: rgba(15, 23, 42, 0.6);
}

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

/* 移动端折叠列表样式 */
.features-accordion {
    display: none;
}

/* PC端显示网格布局 */
@media (min-width: 769px) {
    .features-grid {
        display: grid;
    }
    
    .features-accordion {
        display: none;
    }
}

.accordion-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background: #f5f5f5;
}

.accordion-icon {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.accordion-icon img {
    width: 36px;
    height: 36px;
    
}

.accordion-header h3 {
    flex: 1;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.accordion-toggle {
    font-size: 18px;
    color: #666;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.accordion-content.active {
    max-height: 200px;
}

.accordion-content ul {
    margin: 0;
    padding: 16px 20px 20px 76px;
    list-style: none;
}

.accordion-content li {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 8px;
    position: relative;
}

.accordion-content li:last-child {
    margin-bottom: 0;
}

.accordion-content li::before {
    content: "•";
    color: #4285f4;
    font-weight: bold;
    position: absolute;
    left: -12px;
}

/* 应用场景区域 */
.applications {
    padding: 20px 0;
    background: #f8f9fa;
    color: #333;
}

.applications .section-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.applications-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.applications-nav {
    display: flex;
    justify-content: flex-start;
    background: #f8f9fa;
    border-bottom: 2px solid #e0e0e0;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.app-tab {
    background: transparent;
    border: none;
    color: #666;
    padding: 18px 26px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 400;
    border-right: 1px solid #e0e0e0;
    border-radius: 0;
    position: relative;
}

.app-tab:hover {
    background: #f0f0f0;
    color: #333;
}

.app-tab.active {
    background: #4285f4;
    color: white;
}

.app-tab:last-child {
    border-right: none;
}

.applications-content {
    padding: 20px;
    min-height: 300px;
    background: #fff;
    border: none;
}

.app-card {
    display: none;
    animation: fadeIn 0.5s ease;
}

.app-card.active {
    display: flex;
    align-items: center;
    gap: 40px;
}

.app-card-content {
    flex: 0 0 66%;
    max-width: 500px;
    padding-left: 20px;
}

.app-card-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid #4285f4;
    padding-bottom: 10px;
    display: inline-block;
}

.app-card-content p {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    text-align: justify;
}

.learn-more {
    color: #4285f4;
    text-decoration: none;
    font-weight: 500;
    font-size: 11px;
    transition: all 0.3s ease;
    border: 1px solid #4285f4;
    padding: 6px 14px;
    border-radius: 4px;
    display: inline-block;
}

.learn-more:hover {
    background: #4285f4;
    color: white;
}

.app-card-image {
    flex: 0 0 56%;
    height: 220px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
}

.app-card-image img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 12px;
}

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

/* 数据统计展示区域 */
.data-stats {
    background: url('pic/sglshuju.png') center/cover no-repeat;
    padding: 3.5rem 0;

    position: relative;
    overflow: hidden;
}

.data-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.stats-title {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    margin: 0 auto 4rem auto;
    color: #0f172a;
    position: relative;
    z-index: 1;
    letter-spacing: 0.4px;
}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 4px;
    background: linear-gradient(135deg, #10b3a3 0%, #0b5cff 100%);
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: auto;
    height: auto;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.25));
}

.stat-icon svg {
    width: 36px;
    height: 36px;
}

.stat-content {
    color: #334155;
}

.stat-label {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    
    text-shadow:
        0 8px 18px rgba(8, 15, 31, 0.15),
        0 1px 0 rgba(0, 0, 0, 0.2),
        1px 0 0 rgba(0, 0, 0, 0.15),
        -1px 0 0 rgba(0, 0, 0, 0.15),
        0 -1px 0 rgba(0, 0, 0, 0.15);
}

/* 关于我们页面样式 */
.about-hero {
    background: url('pic/banner-about.png') center/cover no-repeat;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 40vh;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
}

.about-banner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.about-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-image {
    display: none;
}

.about-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.about-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

.about-content {
    padding: 2.5rem 0;
    background: #ffffff;
}

.about-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.about-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    border-left: 0;
    padding-left: 0;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

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

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-align: justify;
    text-indent: 2em;
}

.architecture-section {
    margin-top: 2rem;
}

.about-section {
    margin-bottom: 1rem;
    padding: 1.2rem;
    background: #f8f9fa;
    border-radius: 16px;
    border-left: 3px solid var(--primary-color);
}

.about-section h2 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.architecture-image {
    text-align: center;
    margin-top: 1rem;
}

.architecture-diagram {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.contact-section {
    padding: 2.5rem 0;
    background: #f7f9fc;
}

.contact-section h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--text-color);
}

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

/* ==========================================================================
   响应式设计
   ========================================================================== */

/* 使用 mixin 概念统一响应式规则 */

/* 汉堡菜单样式 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 33vw;
    min-width: 180px;
    max-width: 260px;
    height: 100vh;
    background: #fff !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    border-radius: 12px;
    z-index: 1000;
    padding: 20px 0 0 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    transition: opacity 0.2s, transform 0.2s;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
}

.mobile-nav.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.mobile-nav-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 0 20px 0;
}

.mobile-nav a {
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 0;
    background: none;
    text-align: left;
    transition: background 0.2s;
    margin: 2px 0;
    width: auto;
    max-width: none;
}

.mobile-nav a:hover {
    background: #f5f5f5;
    color: #2100f8;
}

.mobile-nav a.special-tag {
    background: #2100f8;
    color: #fff;
    border-radius: 8px;
    margin: 6px 16px;
    padding: 12px 0;
    text-align: center;
    font-size: 0.9rem;
}

.mobile-nav a.special-tag:hover {
    background: #4441f7;
    color: white;
}

/* 移动端导航页脚样式 */
.mobile-nav-footer {
    flex-shrink: 0;
    padding: 20px 32px;
    border-top: 1px solid #f0f0f0;
    border-radius: 0 0 12px 12px;
    background: #f8f9fa;
    margin-top: auto;
}

.mobile-nav-footer p {
    font-size: 0.65rem;
    color: #999;
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

.mobile-nav-footer p:first-child {
    margin-bottom: 4px;
}

/* 移动端下拉菜单样式 */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    width: 80%;
    max-width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-dropdown-toggle:hover {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
}

.mobile-dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    width: 80%;
    max-width: 300px;
    background: rgba(248, 249, 250, 0.9);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-section {
    margin-bottom: 1.5rem;
}

.mobile-dropdown-section:last-child {
    margin-bottom: 0;
}

.mobile-dropdown-section h4 {
    font-size: 1rem;
    font-weight: 400;
    color: #1d1d1d;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--primary-color);
    text-align: left;
}

.mobile-dropdown-section a {
    display: block;
    color: #666;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    text-decoration: none;
    transition: color 0.2s ease;
    text-align: left;
    width: 100%;
    max-width: none;
}

.mobile-dropdown-section a:hover {
    color: var(--primary-color);
    background: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    :root {
        --font-size-4xl: 2.4rem;
        --font-size-3xl: 2rem;
        --font-size-2xl: 1.6rem;
    }
    
    .nav {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        height: 300px;
    }
    
    .blockchain-network {
        width: 300px;
        height: 300px;
    }
    
    .central-node {
        width: 90px;
        height: 90px;
    }
    
    .network-node {
        width: 60px;
        height: 60px;
    }
    
    .node-icon {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        margin-top: 1rem;
        gap: 0.8rem;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-btn {
        padding: 0.6rem 1rem;
        font-size: 0.72rem;
        min-width: auto;
        flex: 0 1 auto;
        max-width: none;
        white-space: nowrap;
        text-align: center;
        border-width: 1px;
    }
    
    .miniprogram-qr-popup {
        min-width: 160px;
        padding: 15px;
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
        margin-left: 0;
        margin-top: 15px;
    }
    
    .miniprogram-qr-popup::before {
        left: 50%;
        top: -8px;
        transform: translateX(-50%);
        border-top: none;
        border-bottom: 8px solid #fff;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
    }
    
    .miniprogram-qr-popup img {
        width: 120px;
        height: 120px;
    }
    
    .miniprogram-qr-popup p {
        font-size: 0.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        display: none;
    }
    
    .features-accordion {
        display: block;
        margin-top: 2rem;
    }
    
    .accordion-item {
        margin-bottom: 12px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    
    .accordion-header {
        padding: 18px 20px;
        background: #fff;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .accordion-icon {
        width: 36px;
        height: 36px;
        margin-right: 14px;
    }
    
    .accordion-icon img {
        width: 20px;
        height: 20px;
    }
    
    .accordion-header h3 {
        font-size: 15px;
        font-weight: 600;
    }
    
    .accordion-toggle {
        font-size: 16px;
        color: #999;
    }
    
    .accordion-content {
        background: #fafafa;
    }
    
    .accordion-content ul {
        padding: 16px 20px 20px 70px;
    }
    
    .accordion-content li {
        font-size: 13px;
        line-height: 1.5;
        color: #666;
        margin-bottom: 6px;
    }
    
    .data-stats {
        padding: 2rem 0;
    }
    
    .stats-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .stat-icon img {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .applications {
        padding: 20px 0;
    }

    .applications-content {
        padding: 15px 10px;
    }
    
    .applications .section-title {
        font-size: 22px;
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .applications-nav {
        gap: 8px;
        margin-bottom: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .app-tab {
        padding: 8px 14px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 18px;
        background: #f4f6fa;
        color: #333;
        border: none;
        margin-bottom: 6px;
        box-shadow: none;
        transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    }
    
    .app-tab.active {
        background: #3e5fff;
        color: #fff;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(62,95,255,0.10);
    }
    
    .app-tab:active {
        background: #e0e7ff;
        color: #3e5fff;
    }
    
    .app-card {
        flex-direction: column;
        margin-bottom: 15px;
        border-width: 1px;
        border-radius: 8px;
        overflow: hidden;
    }

    .app-card-content {
        padding: 10px 10px;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        max-width: 100%;
        padding-right: 10px;
    }
    
    .app-card-content h3 {
        font-size: 17px;
        margin-bottom: 4px; 
        border-bottom-width: 1px;
        transform: translateY(-5px);
        position: relative;
        top: -10px;
    }
    
    .app-card-content p {
        font-size: 12px;
        margin-bottom: 12px;
        line-height: 1.7;
    }
    
    .learn-more {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .app-card-image {
        flex: none;
        height: 150px;
        width: calc(100% - 15px);
        transform: translateY(-10px);
        margin: 2px;
        border-width: 1px;
        border-radius: 8px;
    }
    
    .about-hero {
        min-height: 30vh;
        padding: 2rem 0;
    }
    
    .about-banner h1 {
        font-size: 2rem;
    }
    
    .about-main {
        padding: 1rem;
    }
    
    .about-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        text-indent: 1.5em;
        margin-bottom: 0.6rem;
    }
    

    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-contact {
        flex-direction: column;
        padding-top: 14px;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
  /* 隐藏移动端下拉菜单相关 */
  .mobile-dropdown,
  .mobile-dropdown-toggle,
  .mobile-dropdown-menu {
    display: none !important;
  }
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 430px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: 400px;
    }
    
    .hero-text {
        text-align: center;
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-title {
        font-size: 1.94rem;
        letter-spacing: 1rpx;
        
    }
    
    .hero-buttons {
        margin-top: 1rem;
        gap: 1rem;
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .hero-btn {
        padding: 0.52rem 0.8rem;
        font-size: 0.7rem;
        min-width: auto;
        flex: 0 1 auto;
        max-width: none;
        white-space: nowrap;
        text-align: center;
        border-width: 1px;
    }
    
    .hero-visual {
        height: 180px;
    }
    
    .main-image {
        max-height: 360px;
    }
    
    .features {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .features-accordion {
        margin-top: 1.5rem;
    }
    
    .accordion-item {
        margin-bottom: 8px;
        border-radius: 8px;
    }
    
    .accordion-header {
        padding: 14px 16px;
    }
    
    .accordion-icon {
        width: 32px;
        height: 32px;
        margin-right: 12px;
    }
    
    .accordion-icon img {
        width: 28px;
        height: 28px;
    }
    
    .accordion-header h3 {
        font-size: 14px;
        font-weight: 600;
    }
    
    .accordion-toggle {
        font-size: 12px;
    }
    
    .accordion-content ul {
        padding: 12px 16px 16px 60px;
    }
    
    .accordion-content li {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 5px;
    }
    
    .applications {
        padding: 2rem 0;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* 更小屏幕的按钮样式 */
@media (max-width: 390px) {
    .hero-buttons {
        gap: 0.9rem;
    }
    
    .hero-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.65rem;
        min-width: auto;
        flex: 0 1 auto;
        max-width: none;
        text-align: center;
        border-width: 1px;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
        padding: 0 8px;
    }
    
    .features-accordion {
        margin-top: 1.2rem;
    }
    
    .accordion-item {
        margin-bottom: 6px;
        border-radius: 6px;
    }
    
    .accordion-header {
        padding: 12px 14px;
    }
    
    .accordion-icon {
        width: 28px;
        height: 28px;
        margin-right: 10px;
    }
    
    .accordion-icon img {
        width: 24px;
        height: 24px;
    }
    
    .accordion-header h3 {
        font-size: 12px;
        font-weight: 600;
    }
    
    .accordion-toggle {
        font-size: 12px;
    }
    
    .accordion-content ul {
        padding: 10px 14px 14px 52px;
    }
    
    .accordion-content li {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 4px;
    }
}

@media (max-width: 300px) {
    .hero-buttons {
        gap: 0.7rem;
    }
    
    .hero-btn {
        padding: 0.35rem 0.5rem;
        font-size: 0.6rem;
        min-width: auto;
        flex: 0 1 auto;
        max-width: none;
        text-align: center;
        border-width: 1px;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1rem;
        padding: 0 6px;
    }
    
    .features-accordion {
        margin-top: 1rem;
    }
    
    .accordion-item {
        margin-bottom: 4px;
        border-radius: 4px;
    }
    
    .accordion-header {
        padding: 10px 12px;
    }
    
    .accordion-icon {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }
    
    .accordion-icon img {
        width: 20px;
        height: 20px;
    }
    
    .accordion-header h3 {
        font-size: 11px;
        font-weight: 600;
    }
    
    .accordion-toggle {
        font-size: 11px;
    }
    
    .accordion-content ul {
        padding: 8px 12px 12px 44px;
    }
    
    .accordion-content li {
        font-size: 10px;
        line-height: 1.4;
        margin-bottom: 3px;
    }
}

/* ==========================================================================
   合作伙伴区域样式
   ========================================================================== */

.partners {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, var(--primary-color) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}

.partners .section-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.partners-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.partner-tab {
    background: transparent;
    border: none;
    color: #666;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 300;
    position: relative;
    border-radius: 0;
}

.partner-tab:hover {
    color: #333;
}

.partner-tab.active {
    color: var(--primary-color);
    font-weight: 400;
}

.partner-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.partner-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 140px;
    justify-content: center;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #9faff8;
}

.partner-card.hidden {
    display: none;
}

.partner-logo {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
}

.partner-logo img {
    max-width: 100%;
    max-height: 72px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.05);
}

.partner-name {
    width: 100%;
}

.partner-name-cn {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.4;
}

.partner-name-en {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
    font-weight: 300;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .partners {
        padding: 60px 0;
    }
    
    .partners .section-title {
        font-size: 1.5rem;
        margin-top: -36px;
        margin-bottom: 20px;
    }
    
    .partners-nav {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .partner-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 8px;
    }
    
    .partner-card {
        padding: 20px;
        min-height: 140px;
    }
    
    .partner-logo {
        height: 50px;
        margin-bottom: 12px;
    }
    
    .partner-logo img {
        max-height: 50px;
    }
    
    .partner-name-cn {
        font-size: 13px;
    }
    
    .partner-name-en {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .partner-card {
        padding: 16px;
        min-height: 120px;
    }
    
    .partner-logo {
        height: 40px;
        margin-bottom: 10px;
    }
    
    .partner-logo img {
        max-height: 40px;
    }
    
    .partner-name-cn {
        font-size: 12px;
    }
    
    .partner-name-en {
        font-size: 10px;
    }
}

@media (min-width: 381px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
    padding: 0 8px;
  }
}
@media (max-width: 380px) {
  .partners-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 391px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }
}
@media (max-width: 390px) {
  .features-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
    padding: 0 4px;
  }
  .feature-card {
    padding: 14px 8px 12px 8px;
    border-radius: 10px;
    min-height: unset;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .feature-card h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
  }
  .feature-card ul {
    margin: 0;
    padding: 0;
  }
  .feature-card li {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 6px;
    padding: 0 0 0 1.2em;
  }
  .feature-card li:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .footer {
    margin-top: 2px !important;
  }
  .footer-top,
  .footer-main {
    padding-top: 0 !important;
  }
  /* 不再全局清零section、main、container的margin-bottom */
  .footer .brand-logo h3 {
    margin-top: 12px;
    letter-spacing: 0 !important;
    word-spacing: normal !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
  }
}

@media (min-width: 769px) {
  .brand-logo-img {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 2100;
  }
}

@media (max-width: 768px) {
  .applications-nav {
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    justify-content: center;
    background: #f5f6fa;
    border-radius: 12px;
    padding: 10px 0 6px 0;
  }
  .app-tab {
    background: #f0f1f5;
    color: #696868;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 16px;
    margin: 0 4px 6px 4px;
    box-shadow: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 1;
  }
  .app-tab.active {
    background: #fff;
    color: #3e5fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(62,95,255,0.10);
    z-index: 2;
  }
  .app-tab:active {
    background: #e0e7ff;
    color: #3e5fff;
  }
}

.social-link.qr-trigger { position: relative; }
.qr-popup {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 110%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 10px;
  z-index: 10;
  min-width: 120px;
}
.qr-popup img {
  width: 120px;
  height: 120px;
  display: block;
}
.social-link.active .qr-popup {
  display: block;
}

@media (max-width: 768px) {
  .about-hero {
    background: url('pic/banner-about.png') center/cover no-repeat;
    padding: 0;
    width: 100vw;
    max-width: 100vw;
    height: auto;
    min-height: 200px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
  }
  .about-banner {
    width: 100%;
    height: auto;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
  }
  .about-banner h1 {
    font-size: 2rem;
    margin: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 150px;
  }
  .about-banner {
    min-height: 150px;
    padding: 30px 15px;
  }
  .about-banner h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 320px) {
  .about-hero {
    min-height: 120px;
  }
  .about-banner {
    min-height: 120px;
    padding: 20px 10px;
  }
  .about-banner h1 {
    font-size: 1.2rem;
  }
}

/* 微信支付接入流程模块样式 */
.wechatpay-section {
    padding: 36px 0 20px 0;
    background: #ffffff;
    text-align: center;
    
}
.wechatpay-title {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    color: var(--text-color);
}
.wechatpay-title {
    position: relative;
    display: inline-block;
}
.wechatpay-title::after {
    content: '';
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    width: 56px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}
@media (max-width: 768px) {
    .wechatpay-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
    .wechatpay-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
}
.wechatpay-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.wechatpay-step {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border-color);
    padding: 32px 24px 24px 24px;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
    margin: 0 8px;
}
.wechatpay-step:hover {
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}
.wechatpay-step-icon {
    width: 46px;
    height: 46px;
    background: rgba(11, 92, 255, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(11, 92, 255, 0.3);
}
.wechatpay-step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}
.wechatpay-step-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.wechatpay-step-arrow {
    display: flex;
    align-items: center;
    font-size: 2.2rem;
    color: #cbd5e1;
    font-weight: 700;
    margin: 0 8px;
    user-select: none;
}
.wechatpay-btn-wrap {
    margin-top: 10px;
}
@media (min-width: 481px) {
  .wechatpay-btn-wrap {
    margin-top: 0.5rem;
  }
}
.wechatpay-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(11, 92, 255, 0.2);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    margin: 0 auto;
}
.wechatpay-btn:hover {
    background: #0a4fe0;
    box-shadow: 0 16px 30px rgba(11, 92, 255, 0.25);
    transform: translateY(-2px);
}
@media (max-width: 480px) {
    .wechatpay-btn {
        width: 90%;
        font-size: 0.95rem;
        padding: 10px 0;
        border-radius: 7px;
        display: block;
    }
}

/* 移动端适配 */
@media (max-width: 900px) {
    .wechatpay-steps {
        gap: 16px;
    }
    .wechatpay-step {
        min-width: 160px;
        padding: 24px 10px 18px 10px;
    }
}
@media (max-width: 768px) {
    .wechatpay-section {
        padding: 48px 0 32px 0;
        padding-bottom: 6px;
    }
    .wechatpay-title {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }
    .wechatpay-steps {
        flex-direction: row !important;
        justify-content: center;
        align-items: stretch;
        gap: 8px;
    }
    .wechatpay-step {
        min-width: 90px;
        max-width: 120px;
        flex: 0 1 100px;
        padding: 10px 2px 8px 2px;
        border-radius: 10px;
        margin: 0 2px;
    }
    .wechatpay-step-arrow {
        font-size: 2rem;
        margin: 8px 0;
        justify-content: center;
    }
    .wechatpay-btn {
        font-size: 1rem;
        padding: 12px 0;
    }
}
@media (max-width: 480px) {
    .wechatpay-section {
        padding: 22px 0 16px 0;
    }
    .wechatpay-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 16px;
    }
    .wechatpay-steps {
        gap: 4px;
    }
    .wechatpay-step {
        min-width: 80px;
        max-width: 100px;
        flex: 0 1 80px;
        padding: 6px 1px 4px 1px;
        border-radius: 8px;
    }
    .wechatpay-step-icon {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
        margin-bottom: 2px;
        border-width: 1px;
    }
    .wechatpay-step-title {
        font-size: 0.7rem;
        font-weight: 600;
        margin-bottom: 1px;
    }
    .wechatpay-step-desc {
        font-size: 0.55rem;
        line-height: 1.2;
    }
}
@media (min-width: 380px) {
    .wechatpay-steps {
        flex-direction: row !important;
        gap: 8px;
    }
    .wechatpay-step {
        min-width: 0;
        max-width: 100%;
        padding: 14px 4px 10px 4px;
        border-radius: 12px;
    }
    .wechatpay-step-icon {
        width: 24px;
        height: 24px;
        font-size: 1rem;
        margin-bottom: 8px;
        border-width: 1.5px;
    }
    .wechatpay-step-title {
        font-size: 1rem;
        margin-bottom: 14px;
    }
    .wechatpay-step-desc {
        font-size: 0.7rem;
    }
    .wechatpay-step-arrow {
        font-size: 1.5rem;
        margin: 0 4px;
    }
    .wechatpay-btn {
        font-size: 0.95rem;
        padding: 10px 0;
        border-radius: 7px;
    }
}

@media (min-width: 481px) {
  .wechatpay-btn {
    font-size: 1rem !important;
    padding: 12px 40px !important;
    border-radius: 8px !important;
    width: auto !important;
    display: inline-block !important;
    margin: 0 auto;
  }
}

/* ==========================================================================
   新闻动态页面
   ========================================================================== */

.news-page {
    background: #f7f9fc;
    min-height: 100vh;
}

.news-hero {
    padding: 4.5rem 0 2.4rem;
    background: radial-gradient(1100px 420px at 10% -5%, rgba(11, 92, 255, 0.16), transparent 60%),
        radial-gradient(900px 420px at 85% 0%, rgba(16, 179, 163, 0.12), transparent 55%),
        #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.news-kicker {
    margin: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    color: rgba(15, 23, 42, 0.55);
}

.news-title {
    margin: 0.5rem 0 0.7rem;
    font-size: clamp(2.2rem, 3vw, 3.1rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0f172a;
    font-family: "Space Grotesk", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.news-description {
    margin: 0;
    font-size: 1rem;
    color: var(--text-muted);
}

.news-list-section {
    padding: 2rem 0 4.2rem;
}

.news-filters {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.news-filter {
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: #ffffff;
    color: #334155;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.22s ease;
}

.news-filter.active,
.news-filter:hover {
    border-color: rgba(11, 92, 255, 0.32);
    color: var(--primary-color);
    background: rgba(11, 92, 255, 0.06);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.news-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 92, 255, 0.22);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.news-card-image {
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background: #eef2f8;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.04);
}

.news-card-body {
    padding: 1rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
}

.news-card-meta time {
    font-size: 0.75rem;
    color: #64748b;
}

.news-badge {
    font-size: 0.72rem;
    color: var(--primary-color);
    background: rgba(11, 92, 255, 0.08);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
}

.news-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.06rem;
    line-height: 1.45;
    color: #0f172a;
}

.news-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .news-hero {
        padding: 3.3rem 0 2rem;
    }

    .news-title {
        font-size: 2rem;
    }

    .news-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.3rem;
        -webkit-overflow-scrolling: touch;
    }

    .news-filters::-webkit-scrollbar {
        display: none;
    }

    .news-filter {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }
}

/* ==========================================================================
   应用场景独立页面
   ========================================================================== */

.scene-page {
    background: #f7f9fc;
    min-height: 100vh;
}

.scene-hero {
    padding: 4.4rem 0 2.3rem;
    background: radial-gradient(1200px 420px at 12% -5%, rgba(11, 92, 255, 0.16), transparent 60%),
        radial-gradient(1000px 420px at 88% 0%, rgba(16, 179, 163, 0.12), transparent 55%),
        #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.scene-kicker {
    margin: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    color: rgba(15, 23, 42, 0.55);
}

.scene-title {
    margin: 0.52rem 0 0.72rem;
    font-size: clamp(2.2rem, 3vw, 3.1rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0f172a;
    font-family: "Space Grotesk", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.scene-description {
    margin: 0;
    font-size: 1rem;
    color: var(--text-muted);
}

.scene-section {
    padding: 2rem 0 4.2rem;
}

.scene-tabs {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.scene-tab {
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: #ffffff;
    color: #334155;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.22s ease;
}

.scene-tab.active,
.scene-tab:hover {
    border-color: rgba(11, 92, 255, 0.32);
    color: var(--primary-color);
    background: rgba(11, 92, 255, 0.06);
}

.scene-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.scene-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.scene-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 92, 255, 0.22);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.scene-card-image {
    aspect-ratio: 16 / 9;
    background: #eef2f8;
    overflow: hidden;
}

.scene-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.scene-card:hover .scene-card-image img {
    transform: scale(1.04);
}

.scene-card-body {
    padding: 1rem 1rem 1.15rem;
}

.scene-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.06rem;
    line-height: 1.45;
    color: #0f172a;
}

.scene-card p {
    margin: 0 0 0.62rem;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #64748b;
}

.scene-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.34rem;
}

.scene-card li {
    font-size: 0.8rem;
    color: #475569;
    position: relative;
    padding-left: 0.9rem;
}

.scene-card li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.55em;
    background: linear-gradient(135deg, #0b5cff 0%, #10b3a3 100%);
}

@media (max-width: 1024px) {
    .scene-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .scene-hero {
        padding: 3.2rem 0 2rem;
    }

    .scene-title {
        font-size: 2rem;
    }

    .scene-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.3rem;
        -webkit-overflow-scrolling: touch;
    }

    .scene-tabs::-webkit-scrollbar {
        display: none;
    }

    .scene-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .scene-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }
}

.news-state {
    grid-column: 1 / -1;
    border: 1px dashed rgba(148, 163, 184, 0.45);
    background: #ffffff;
    border-radius: 14px;
    padding: 2rem 1rem;
    text-align: center;
    color: #64748b;
}

.news-state i {
    font-size: 1.3rem;
    margin-bottom: 0.45rem;
}

.news-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 10020;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.news-modal-content {
    background: #ffffff;
    width: min(760px, 100%);
    max-height: 85vh;
    overflow: auto;
    border-radius: 14px;
    padding: 1.2rem 1.2rem 1.4rem;
    position: relative;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.news-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
}

.news-modal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.55rem;
    padding-right: 1.8rem;
}

.news-modal-meta time {
    font-size: 0.78rem;
    color: #64748b;
}

.news-modal-content h2 {
    margin: 0.35rem 0 0.85rem;
    font-size: 1.25rem;
    line-height: 1.45;
    color: #0f172a;
}

.news-modal-body {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ==========================================================================
   首页 Hero 移动端重设计（仅移动端，不影响PC）
   ========================================================================== */
@media (max-width: 768px) {
    .features {
        padding: 1.4rem 0 0.7rem;
    }

    .features-accordion {
        margin-top: 1rem;
        margin-bottom: 0;
    }

    .features-accordion .accordion-item:last-child {
        margin-bottom: 0;
    }

    .applications {
        padding: 0.8rem 0 1.6rem;
    }

    .applications .section-title {
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .product-matrix {
        padding: 2.1rem 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.72rem;
        margin-top: 1rem;
    }

    .product-card {
        padding: 0.86rem 0.7rem;
        border-radius: 12px;
        min-height: 126px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.36rem;
    }

    .product-card h3 {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 0;
    }

    .product-card p {
        font-size: 0.74rem;
        line-height: 1.4;
        margin: 0;
    }

    .product-card:hover {
        transform: none;
    }

    .product-grid:hover .product-card {
        opacity: 1;
    }

    .hero {
        padding: 1rem 0 1.8rem;
        background:
            radial-gradient(460px 280px at 50% -18%, rgba(74, 120, 255, 0.16), rgba(74, 120, 255, 0) 75%),
            linear-gradient(180deg, #f3f6fb 0%, #f5f8fc 48%, #f8fbff 100%);
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .hero-content {
        min-height: unset;
        gap: 1.15rem;
    }

    .hero-text {
        text-align: center;
        padding: 0.2rem 0;
        animation: mobileHeroFadeUp 0.5s ease both;
    }

    .hero-eyebrow {
        margin-bottom: 0.45rem;
        font-size: 0.72rem;
        letter-spacing: 2px;
        color: #6a7a95;
    }

    .hero-title {
        position: relative;
        margin-top: 1.3rem;
        margin-bottom: 0.3rem;
        font-size: 1.9rem;
        line-height: 1.03;
        letter-spacing: 0.6px;
        font-weight: 800;
        color: #0f172a;
        text-shadow: 0 6px 16px rgba(17, 35, 68, 0.10);
    }

    .hero-title::after {
        content: '';
        display: block;
        width: 58px;
        height: 4px;
        margin: 0.56rem auto 0;
        border-radius: 999px;
        background: linear-gradient(90deg, #2f6bff 0%, #5aa7ff 100%);
        box-shadow: 0 6px 14px rgba(47, 107, 255, 0.28);
    }

    .hero-title-en {
        display: block;
        margin-top: 0.26rem;
        padding: 0;
        letter-spacing: 0.8px;
        color: #22304b;
        font-size: 0.7em;
        font-weight: 500;
        line-height: 1.2;
        text-transform: none;
        background: none;
        border: none;
        box-shadow: none;
    }

    /* 移动端改短文案，避免原始长段落堆砌 */
    .hero-description {
        margin: 0.55rem auto 0;
        font-size: 0;
        line-height: 0;
        color: transparent;
        width: 100%;
        max-width: 320px;
    }

    .hero-description br {
        display: none;
    }

    .hero-description::before {
        content: "从可信存证到行业上链，重构数字信任底座";
        display: block;
        font-size: 0.72rem;
        line-height: 1.5;
        color: #4f5f78;
        font-weight: 400;
    }

    .hero-chips {
        position: relative;
        margin-top: 1.05rem;
        padding: 1.24rem 0 1.18rem;
        display: grid;
        gap: 0.68rem;
        justify-items: center;
        animation: mobileHeroFadeUp 0.55s ease 0.08s both;
    }

    .hero-chips::before {
        content: '';
        position: absolute;
        left: 3%;
        right: 3%;
        top: 16%;
        bottom: 1.6rem;
        border-radius: 24px;
        background: url("pic/bannerhead.jpeg") center / cover no-repeat;
        opacity: 1;
        z-index: 0;
        box-shadow: 0 16px 28px rgba(22, 47, 104, 0.16);
    }

    .hero-chip {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        width: min(100%, 292px);
        padding: 0.92rem 0.9rem 0.82rem 0.95rem;
        border-radius: 14px;
        font-size: 0.82rem;
        font-weight: 600;
        text-align: left;
        gap: 0.62rem;
        color: #19253b;
        border: 1px solid rgba(22, 42, 86, 0.08);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 8px 18px rgba(21, 37, 72, 0.12);
    }

    .hero-chip::before {
        display: none;
    }

    .hero-chip-icon {
        width: 1.12rem;
        height: 1.12rem;
        flex: 0 0 1.12rem;
    }

    .hero-chip:nth-child(1) {
        transform: translateY(-0.32rem);
    }

    .hero-chip:nth-child(2) {
        transform: translateY(0);
    }

    .hero-chip:nth-child(3) {
        transform: translateY(0.32rem);
    }

    .hero-buttons {
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.58rem;
        width: 94%;
        animation: mobileHeroFadeUp 0.55s ease 0.16s both;
    }

    .hero-btn {
        width: 100%;
        min-width: 0;
        padding: 0.62rem 0.42rem;
        border-radius: 12px;
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.2px;
        border: 1px solid rgba(16, 45, 98, 0.14);
        color: #122243;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(2px);
        box-shadow: 0 8px 14px rgba(16, 38, 82, 0.08);
    }

    .hero-btn:active {
        transform: scale(0.98);
    }

    .hero-buttons .hero-btn:nth-child(2) {
        grid-column: 1 / -1;
        order: -1;
        border: none;
        border-radius: 999px;
        padding: 0.8rem 0.6rem;
        font-size: 0.8rem;
        color: #ffffff;
        background: linear-gradient(90deg, #0f192a 0%, #142036 100%);
        box-shadow: 0 14px 24px rgba(8, 14, 28, 0.3);
    }

    .hero-visual {
        display: none;
    }

    .hero-image {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 18px 30px rgba(22, 47, 104, 0.14);
    }

    .main-image {
        width: 100%;
        max-height: none;
        border-radius: 20px;
        animation: mobileHeroBreath 5.4s ease-in-out infinite;
    }
}

@media (max-width: 430px) {
    .features {
        padding: 1.2rem 0 0.5rem;
    }

    .applications {
        padding-top: 0.6rem;
    }

    .applications .section-title {
        margin-bottom: 0.86rem;
    }

    .product-grid {
        gap: 0.62rem;
    }

    .product-card {
        min-height: 114px;
        padding: 0.72rem 0.58rem;
        gap: 0.28rem;
    }

    .product-card h3 {
        font-size: 0.82rem;
        margin-bottom: 0;
    }

    .product-card p {
        font-size: 0.68rem;
        line-height: 1.32;
        margin: 0;
    }

    .hero {
        padding-top: 1rem;
    }

    .hero-title {
        font-size: 1.78rem;
        letter-spacing: 0.4px;
    }

    .hero-title-en {
        font-size: 0.6em;
        letter-spacing: 0.6px;
        padding: 0;
    }

    .hero-description::before {
        font-size: 0.93rem;
    }

  .hero-chip {
  font-size: 0.72rem;
  padding-left: 0.86rem;
  width: min(100%, 272px);
    }

    .hero-chip-icon {
        width: 1rem;
        height: 1rem;
        flex: 0 0 1rem;
    }

    .hero-chip:nth-child(1) {
        transform: translateY(-0.58rem);
    }

    .hero-chip:nth-child(3) {
        transform: translateY(0.58rem);
    }

    .hero-btn {
        font-size: 0.8rem;
        padding: 0.6rem 0.3rem;
    }

    .hero-buttons .hero-btn:nth-child(2) {
        font-size: 0.82rem;
        padding: 0.82rem 0.5rem;
    }
}

@keyframes mobileHeroFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mobileHeroFloatIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mobileHeroBreath {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
