﻿/*
Theme Name: Bright
Theme URI: https://brightadvertisement.com
Author: Bright Advertisement
Author URI: https://brightadvertisement.com
Description: 璀璨寰球 - 专业的海外广告投放服务商主题
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bright
*/

/* ==================== 基础重置 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen Reader Only - 可访问性 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: inherit;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

:root {
    --primary-purple: #7e61d4;
    --primary-blue: #4b52e3;
    --accent-green: #0a8058;
    --deep-blue: #0579a3;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
}

/* ==================== 字体定义 ==================== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* ==================== 导航栏 ==================== */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    z-index: 50;
    padding: 8px 20px;
    border-radius: 100px;
    backdrop-filter: blur(12px) blur(10px) blur(8px) blur(6px) blur(4px);
    -webkit-backdrop-filter: blur(12px) blur(10px) blur(8px) blur(6px) blur(4px);
    background: rgba(3, 3, 3, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.3);
    mask: linear-gradient(#000 95%, #0000 100%);
    -webkit-mask: linear-gradient(#000 95%, #0000 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px) blur(14px) blur(12px) blur(10px) blur(8px);
    -webkit-backdrop-filter: blur(16px) blur(14px) blur(12px) blur(10px) blur(8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .glass-nav {
        width: 95%;
        padding: 6px 16px;
        border-radius: 60px;
        top: 10px; /* 移动端减少顶部距离 */
    }
    
    /* 为Hero区域添加顶部内边距，避免被导航栏遮盖 */
    #home {
        padding-top: 80px;
        min-height: calc(100vh - 80px);
    }
}

/* 导航链接 */
.nav-link {
    position: relative;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: #7e61d4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7e61d4, #4b52e3);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* 导航按钮 */
.nav-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(126, 97, 212, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.nav-btn:hover::before {
    width: 200%;
    height: 200%;
}

.nav-btn:hover {
    transform: scale(1.05);
}

/* ==================== Logo样式 ==================== */
.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    letter-spacing: -0.03em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.logo-line {
    display: flex;
    align-items: center;
    gap: 0;
    line-height: 0;
}

.logo-char {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 1.25rem;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.logo-subtitle {
    color: #F5C518;
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: 0;
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* 第一行 - bright - 渐变 */
.logo-line:nth-child(1) .logo-char:nth-child(1) { color: #8B5CF6; }
.logo-line:nth-child(1) .logo-char:nth-child(2) { color: #6366F1; }
.logo-line:nth-child(1) .logo-char:nth-child(3) { color: #3B82F6; }
.logo-line:nth-child(1) .logo-char:nth-child(4) { color: #0EA5E9; }
.logo-line:nth-child(1) .logo-char:nth-child(5) { color: #06B6D4; }
.logo-line:nth-child(1) .logo-char:nth-child(6) { color: #14B8A6; }

/* 第二行 - advertisement - 渐变 */
.logo-line:nth-child(2) .logo-char:nth-child(1) { color: #10B981; }
.logo-line:nth-child(2) .logo-char:nth-child(2) { color: #8B5CF6; }
.logo-line:nth-child(2) .logo-char:nth-child(3) { color: #6366F1; }
.logo-line:nth-child(2) .logo-char:nth-child(4) { color: #3B82F6; }
.logo-line:nth-child(2) .logo-char:nth-child(5) { color: #0EA5E9; }
.logo-line:nth-child(2) .logo-char:nth-child(6) { color: #06B6D4; }
.logo-line:nth-child(2) .logo-char:nth-child(7) { color: #14B8A6; }
.logo-line:nth-child(2) .logo-char:nth-child(8) { color: #10B981; }
.logo-line:nth-child(2) .logo-char:nth-child(9) { color: #F59E0B; }
.logo-line:nth-child(2) .logo-char:nth-child(10) { color: #EF4444; }
.logo-line:nth-child(2) .logo-char:nth-child(11) { color: #EC4899; }
.logo-line:nth-child(2) .logo-char:nth-child(12) { color: #8B5CF6; }
.logo-line:nth-child(2) .logo-char:nth-child(13) { color: #6366F1; }

.logo-text:hover {
    transform: scale(1.02);
    filter: brightness(1.08);
}

.logo-text:hover .logo-char {
    animation: logoWave 0.6s ease-in-out forwards;
}

.logo-text:hover .logo-subtitle {
    animation: logoWave 0.6s ease-in-out forwards;
}

@keyframes logoWave {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.08); }
    100% { transform: translateY(-2px) scale(1.03); }
}

/* ==================== 按钮样式 ==================== */
.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(126, 97, 212, 0.6);
    transform: translateY(-3px);
}

/* ==================== 视频背景 ==================== */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-bg__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* ==================== 英雄板块样式（兼容火狐） ==================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 16px;
}

@media (max-width: 768px) {
    .hero-section {
        height: 100svh;
        min-height: 500px;
    }
    .hero-content {
        padding: 60px 16px 30px;
    }
}

/* ==================== 英雄板块文字样式 ==================== */
.hero-title {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-btn-primary {
    min-width: 160px;
}

.hero-btn-secondary {
    min-width: 160px;
}

/* ==================== 动画效果 ==================== */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.card-hover:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* ==================== 渐变文字 ==================== */
.gradient-text {
    background: linear-gradient(135deg, #7e61d4, #4b52e3, #0579a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== 加载动画 ==================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7e61d4, #4b52e3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.loader-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* ==================== 滚动进度条 ==================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #7e61d4, #4b52e3);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ==================== 自定义滚动条 ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7e61d4, #4b52e3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #4b52e3, #0579a3);
}



/* ==================== 服务板块 ==================== */
.services-section {
    background: #161617;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.services-section .section-wrapper {
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1280px) {
    .services-section .section-wrapper {
        padding: 0 40px;
    }
}

.services-header {
    text-align: center;
    margin-bottom: 8px;
    padding-top: 8px;
}

.services-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
    .services-header h2 {
        font-size: 3.5rem;
    }
}

.services-header h2 .accent {
    color: #B2FF17;
}

.services-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 服务卡片容器 - 原生滚动 */
.services-swiper-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: none;
    /* 隐藏滚动条 */
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    /* 突破 section-wrapper 的左右 padding，消除黑边 */
    margin-left: -24px;
    margin-right: -24px;
}
.services-swiper-wrapper:active {
    cursor: grabbing;
}
.services-swiper-wrapper::-webkit-scrollbar {
    display: none;
}
@media (min-width: 1280px) {
    .services-swiper-wrapper {
        margin-left: -40px;
        margin-right: -40px;
    }
}

/* 内层滚动轨道 */
.services-swiper {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 8px 24px 20px 24px;
}
@media (min-width: 1280px) {
    .services-swiper {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* 服务卡片 */
.services-item {
    flex: 0 0 auto;
    width: 340px;
    min-height: 420px;
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    /* 过渡效果 */
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    text-decoration: none;
    color: #ffffff;
    /* 卡片外层细边框（亮光效果） */
    outline: 1px solid rgba(255, 255, 255, 0.08);
    outline-offset: -1px;
}

@media (min-width: 1024px) {
    .services-item {
        width: 440px;
        min-height: 520px;
        border-radius: 35px;
        padding: 48px 40px;
    }
}

/* 卡片内发光层 */
.services-item::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    /* 内部白色高光 */
    background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* 卡片底部光晕 */
.services-item::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 80px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

/* hover 效果 */
.services-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 0 40px rgba(255, 255, 255, 0.05);
}

.services-item:hover::before {
    opacity: 1;
}

.services-item:hover::after {
    opacity: 1;
}

/* 各卡片 hover 光晕颜色（与卡片主色一致）*/
.service-card-marketplace:hover::after  { background: #0E62FF; }
.service-card-ecosystem:hover::after    { background: #7B2FFF; }
.service-card-member:hover::after       { background: #FF6B35; }
.service-card-music:hover::after        { background: #00C9A7; }
.service-card-gyre:hover::after         { background: #FF3366; }
.service-card-tools:hover::after        { background: #B2FF17; }

/* 确保卡片内容在光效层之上 */
.services-item > * {
    position: relative;
    z-index: 1;
}

/* 卡片颜色方案 - 渐变背景叠加图片 */

/* 精准定位 - 005.png */
.service-card-marketplace {
    background:
        linear-gradient(to bottom, #0E62FF 0%, #0E62FF 30%, rgba(14, 98, 255, 0.55) 52%, rgba(14, 98, 255, 0.0) 78%),
        url('images/009.png') no-repeat center bottom / 100% auto;
    border: 1px solid rgba(14, 98, 255, 0.4);
    box-shadow: 0 8px 32px rgba(14, 98, 255, 0.2);
}
.service-card-marketplace::before {
    background: radial-gradient(ellipse at 30% 20%, rgba(178, 255, 23, 0.12) 0%, transparent 60%);
}

/* 数据驱动 - 006.png */
.service-card-ecosystem {
    background:
        linear-gradient(to bottom, #7B2FFF 0%, #7B2FFF 30%, rgba(90, 31, 204, 0.55) 52%, rgba(90, 31, 204, 0.0) 78%),
        url('images/006.png') no-repeat center bottom / 100% auto;
    border: 1px solid rgba(123, 47, 255, 0.4);
    box-shadow: 0 8px 32px rgba(123, 47, 255, 0.2);
}
.service-card-ecosystem::before {
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 200, 50, 0.12) 0%, transparent 60%);
}

/* 创意设计 - 007.png */
.service-card-member {
    background:
        linear-gradient(to bottom, #FF6B35 0%, #FF6B35 30%, rgba(204, 68, 0, 0.55) 52%, rgba(204, 68, 0, 0.0) 78%),
        url('images/007.png') no-repeat center bottom / 100% auto;
    border: 1px solid rgba(255, 107, 53, 0.4);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
}
.service-card-member::before {
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}

/* 全球投放 - 008.png */
.service-card-music {
    background:
        linear-gradient(to bottom, #00C9A7 0%, #00C9A7 30%, rgba(0, 155, 125, 0.55) 52%, rgba(0, 155, 125, 0.0) 78%),
        url('images/008.png') no-repeat center bottom / 100% auto;
    border: 1px solid rgba(0, 201, 167, 0.4);
    box-shadow: 0 8px 32px rgba(0, 201, 167, 0.2);
}
.service-card-music::before {
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 255, 100, 0.12) 0%, transparent 60%);
}

/* 智能优化（复用） */
.service-card-gyre {
    background:
        linear-gradient(to bottom, #FF3366 0%, #FF3366 30%, rgba(204, 0, 51, 0.55) 52%, rgba(204, 0, 51, 0.0) 78%),
        url('images/010.png') no-repeat center bottom / 100% auto;
    border: 1px solid rgba(255, 51, 102, 0.4);
    box-shadow: 0 8px 32px rgba(255, 51, 102, 0.2);
}
.service-card-gyre::before {
    background: radial-gradient(ellipse at 30% 20%, rgba(100, 255, 200, 0.12) 0%, transparent 60%);
}

/* 专业支持 - 006.png（复用） */
.service-card-tools {
    background:
        linear-gradient(to bottom, #1E1E20 0%, #1E1E20 30%, rgba(20, 20, 25, 0.55) 52%, rgba(20, 20, 25, 0.0) 78%),
        url('images/006.png') no-repeat center bottom / 100% auto;
    border: 1px solid rgba(178, 255, 23, 0.25);
    box-shadow: 0 8px 32px rgba(178, 255, 23, 0.08);
}
.service-card-tools::before {
    background: radial-gradient(ellipse at 30% 20%, rgba(178, 255, 23, 0.1) 0%, transparent 60%);
}

/* hover 时加强边框发光 */
.service-card-marketplace:hover { border-color: rgba(14, 98, 255, 0.7);   box-shadow: 0 24px 64px rgba(14, 98, 255, 0.4),   0 0 0 1px rgba(255,255,255,0.15); }
.service-card-ecosystem:hover   { border-color: rgba(123, 47, 255, 0.7);  box-shadow: 0 24px 64px rgba(123, 47, 255, 0.4),  0 0 0 1px rgba(255,255,255,0.15); }
.service-card-member:hover      { border-color: rgba(255, 107, 53, 0.7);  box-shadow: 0 24px 64px rgba(255, 107, 53, 0.4),  0 0 0 1px rgba(255,255,255,0.15); }
.service-card-music:hover       { border-color: rgba(0, 201, 167, 0.7);   box-shadow: 0 24px 64px rgba(0, 201, 167, 0.4),   0 0 0 1px rgba(255,255,255,0.15); }
.service-card-gyre:hover        { border-color: rgba(255, 51, 102, 0.7);  box-shadow: 0 24px 64px rgba(255, 51, 102, 0.4),  0 0 0 1px rgba(255,255,255,0.15); }
.service-card-tools:hover       { border-color: rgba(178, 255, 23, 0.6);  box-shadow: 0 24px 64px rgba(178, 255, 23, 0.15), 0 0 0 1px rgba(255,255,255,0.15); }

/* 卡片内容 */
.services-item .card-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.services-item:hover .card-icon-wrap {
    transform: scale(1.1);
    background: rgba(178, 255, 23, 0.25);
}

.services-item .card-icon-wrap i {
    font-size: 32px;
    color: #ffffff;
}

.services-item .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

@media (min-width: 1024px) {
    .services-item .card-title {
        font-size: 1.75rem;
    }
}

.services-item .card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.services-item .card-arrow-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, gap 0.3s ease;
    align-self: flex-start;
}

.services-item:hover .card-arrow-btn {
    color: #B2FF17;
    gap: 16px;
}

.services-item .card-arrow-btn svg {
    transition: transform 0.3s ease;
}

.services-item:hover .card-arrow-btn svg {
    transform: translate(2px, -2px);
}




/* 服务卡片进场动画（只用 opacity，避免与自动滚动的 translateX 冲突） */
.services-swiper-wrapper {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.services-swiper-wrapper.visible {
    opacity: 1;
}

/* 原始卡片保持默认可见状态（translateX 动画由 swiper 容器控制）*/
.services-item {
    opacity: 1;
    transform: none;
}

/* 移除不再需要的逐卡片进场动画 */
.services-item.visible {
    opacity: 1;
    transform: none;
}

.services-item:nth-child(2).visible { transition-delay: 0s; }
.services-item:nth-child(3).visible { transition-delay: 0s; }
.services-item:nth-child(4).visible { transition-delay: 0s; }
.services-item:nth-child(5).visible { transition-delay: 0s; }
.services-item:nth-child(6).visible { transition-delay: 0s; }

/* 克隆的卡片（第2套）直接可见，跳过进场动画 */
.services-item.clone {
    opacity: 1 !important;
    transform: none !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease,
                border-color 0.4s ease !important;
    transition-delay: 0s !important;
}



/* ==================== 移动端菜单动画 ==================== */
@keyframes mobileMenuSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#mobileMenu:not(.hidden) {
    animation: mobileMenuSlide 0.3s ease-out;
}

/* ==================== 页脚样式 ==================== */
footer {
    background-color: #0a0a0f !important;
}

footer a:hover {
    color: #a855f7;
}

/* 微信二维码悬停弹出 */
.wechat-qr-wrapper {
    position: relative;
}

.wechat-qr-popup {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
}

.wechat-qr-wrapper:hover .wechat-qr-popup {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.wechat-qr-inner {
    background: #fff;
    border-radius: 12px;
    padding: 12px 12px 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,255,255,0.08);
    text-align: center;
    white-space: nowrap;
}

.wechat-qr-inner img {
    display: block;
    border-radius: 6px;
    margin-bottom: 6px;
    max-width: 100%;
}

.wechat-qr-inner p {
    font-size: 12px;
    color: #555;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* 小箭头 */
.wechat-qr-inner::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* ==================== 合作平台 - Sticky层叠滚动 ==================== */
.platforms-sticky-section {
    background: #0a0a0f;
    position: relative;
}

.platforms-header {
    text-align: center;
    padding: 16px 24px;
    position: relative;
    z-index: 0;
    pointer-events: none;
}

.platforms-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.platforms-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    max-width: 480px;
    margin: 0 auto;
}

/* sticky卡片堆叠容器 */
.platforms-stack {
    position: relative;
    z-index: 10;
    padding: 0 24px 0; /* 将底部内边距从120px改为0 */
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 每张sticky卡片的外壳 */
.platform-sticky-card {
    position: sticky;
    margin-bottom: 20px;
    will-change: transform;
    transition: transform 0.15s ease;
}

/* 卡片内部主体 */
.platform-card-inner {
    border-radius: 28px;
    overflow: hidden;
    height: 280px;
    box-shadow:
        0 -64px 128px -64px rgba(255,255,255,0.06),
        0 32px 80px -16px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    transition: box-shadow 0.3s ease;
}

.platform-card-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* 卡片内容布局 */
.platform-card-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 40px 52px;
    position: relative;
    z-index: 2;
    gap: 48px;
}

.platform-card-left {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    flex: 1;
}

/* 图标容器 */
.platform-icon-wrap {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 20px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* 平台文字区 */
.platform-text {
    flex: 1;
}

.platform-tag {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.platform-name {
    font-size: 1.9rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.platform-desc-text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    max-width: 420px;
    margin-bottom: 20px;
}

/* 数据统计 */
.platform-stats {
    display: flex;
    gap: 28px;
}

.pstat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pstat-num {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

.pstat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.05em;
}

/* 右侧视觉装饰 */
.platform-card-right {
    width: 240px;
    min-width: 240px;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pv-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
}

.pv-c1 {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 3s ease-in-out infinite;
}

.pv-c2 {
    width: 130px;
    height: 130px;
    background: rgba(255,255,255,0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 3s ease-in-out infinite 0.8s;
}

.pv-icon-big {
    font-size: 5rem;
    color: rgba(255,255,255,0.85);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 24px rgba(255,255,255,0.3));
}

.pv-icon-sub {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    color: rgba(255,255,255,0.6);
    z-index: 3;
}

@keyframes pulse-ring {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.18; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.28; }
}

/* 遮罩 - 让卡片顶部与黑背景融合 */
.platform-card-inner {
    -webkit-mask: linear-gradient(to bottom, transparent 0%, #000 8px);
    mask: linear-gradient(to bottom, transparent 0%, #000 8px);
}

/* 响应式 */
@media (max-width: 900px) {
    .platform-card-right { display: none; }
    .platform-card-content { padding: 32px 28px; }
    .platform-card-inner { height: auto; min-height: 220px; }
    .platform-name { font-size: 1.5rem; }
    .platforms-stack { padding: 0 16px 32px; }
    .platform-stats { gap: 16px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
    .platform-sticky-card { top: 80px !important; }
    .platforms-header { padding: 24px 16px 16px; }
    .platform-card-left { flex-direction: column; gap: 16px; }
    .platform-icon-wrap { width: 56px; height: 56px; min-width: 56px; font-size: 1.5rem; }
}

/* ==================== 资讯板块样式 ==================== */
.insight {
    background: #ffffff;
    padding: 24px 0;
}

@media (min-width: 1280px) {
    .insight {
        padding: 32px 0;
    }
}

.insight h2 {
    font-size: 2.25rem;
    font-weight: 500;
    color: #434343;
    text-align: center;
}

@media (min-width: 1280px) {
    .insight h2 {
        font-size: 4.5rem;
    }
}

.insight h2 span {
    color: #8b8b8b;
}

.insight a {
    color: #434343;
    text-decoration: none;
    transition: all 0.3s ease;
}

.insight a:hover {
    opacity: 0.8;
}

/* 资讯卡片网格 */
.insight .grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .insight .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* 资讯卡片悬停效果 */
.insight .group:hover img {
    transform: scale(1.05);
}

.insight .group:hover h3 {
    color: #7e61d4;
}

/* 资讯卡片图片容器 */
.insight img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

@media (min-width: 1280px) {
    .insight img {
        border-radius: 35px;
    }
}



/* 资讯标题 */
.insight h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    .insight h3 {
        font-size: 1.875rem;
    }
}

/* 多行文本截断 */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== 3D卡片效果 ==================== */
.card-3d {
    perspective: 1000px;
}

.card-3d-inner {
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card-3d:hover .card-3d-inner {
    transform: rotateY(10deg) rotateX(5deg);
}

/* ==================== 进度条动画 ==================== */
.progress-bar {
    height: 8px;
    background: linear-gradient(90deg, #7e61d4, #4b52e3, #0579a3);
    border-radius: 4px;
    animation: progressGrow 2s ease-out forwards;
}

@keyframes progressGrow {
    from { width: 0%; }
}

/* ==================== WordPress 兼容性 ==================== */
.wp-block {
    max-width: 100%;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ==================== 文章内容排版（替代 Tailwind prose 插件）==================== */
.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #1a1a1a;
    max-width: none;
}

.article-content p {
    margin-bottom: 1.5em;
    color: #374151;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
    margin-top: 2em;
    margin-bottom: 0.75em;
}

.article-content h1 { font-size: 2rem; }
.article-content h2 { font-size: 1.6rem; border-bottom: 2px solid #f3f4f6; padding-bottom: 0.4em; }
.article-content h3 { font-size: 1.35rem; }
.article-content h4 { font-size: 1.15rem; }
.article-content h5 { font-size: 1rem; }
.article-content h6 { font-size: 0.9rem; color: #6b7280; }

.article-content ul,
.article-content ol {
    margin: 1.25em 0;
    padding-left: 1.75em;
}

.article-content ul { list-style-type: disc; }
.article-content ol { list-style-type: decimal; }

.article-content li {
    margin-bottom: 0.5em;
    color: #374151;
    line-height: 1.7;
}

.article-content li::marker {
    color: #7e61d4;
}

.article-content blockquote {
    border-left: 4px solid #7e61d4;
    padding: 1em 1.5em;
    margin: 1.5em 0;
    background: #f9f7ff;
    border-radius: 0 12px 12px 0;
    color: #4b5563;
    font-style: italic;
}

.article-content blockquote p {
    margin: 0;
    color: #4b5563;
}

.article-content a {
    color: #7e61d4;
    text-decoration: underline;
    text-decoration-color: rgba(126, 97, 212, 0.4);
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.article-content a:hover {
    color: #4b52e3;
    text-decoration-color: #4b52e3;
}

.article-content strong,
.article-content b {
    font-weight: 700;
    color: #111827;
}

.article-content em,
.article-content i {
    font-style: italic;
    color: #4b5563;
}

.article-content code {
    font-family: 'Courier New', Consolas, monospace;
    font-size: 0.9em;
    background: #f3f4f6;
    color: #7c3aed;
    padding: 0.2em 0.45em;
    border-radius: 5px;
    border: 1px solid #e5e7eb;
}

.article-content pre {
    background: #1e1e2e;
    color: #cdd6f4;
    padding: 1.5em;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.5em 0;
    font-size: 0.9em;
    line-height: 1.6;
}

.article-content pre code {
    background: none;
    color: inherit;
    padding: 0;
    border: none;
    font-size: inherit;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5em auto;
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.article-content figure {
    margin: 1.5em 0;
}

.article-content figcaption {
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.5em;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 0.95rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 0 1px #e5e7eb;
}

.article-content th {
    background: #f9fafb;
    padding: 0.75em 1em;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
}

.article-content td {
    padding: 0.75em 1em;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
}

.article-content tr:last-child td {
    border-bottom: none;
}

.article-content tr:nth-child(even) td {
    background: #fafafa;
}

.article-content hr {
    border: none;
    border-top: 2px solid #f3f4f6;
    margin: 2.5em 0;
}

/* WordPress 默认 wp-caption / gallery */
.article-content .wp-caption {
    max-width: 100%;
    margin: 1.5em auto;
}

.article-content .wp-caption-text {
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.5em;
}

.article-content .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1em;
    margin: 1.5em 0;
}

.article-content .gallery-item img {
    margin: 0;
    width: 100%;
}

/* ==================== 成就板块 ==================== */

/* 整体 section */
.award-section {
    background: #09090f;
    position: relative;
    overflow: hidden;
}

/* ---- 顶部标题 sticky ---- */
.award-header-sticky {
    position: sticky;
    top: 0;
    z-index: 1;
    pointer-events: none;
    padding: 16px 24px;
    text-align: center;
    /* 从上往下渐隐到透明，让卡片滚过去时标题自然消失 */
    -webkit-mask: linear-gradient(to bottom, #000 0%, #000 75%, transparent 100%);
    mask: linear-gradient(to bottom, #000 0%, #000 75%, transparent 100%);
}

.award-header-inner {
    max-width: 860px;
    margin: 0 auto;
}

.award-main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.award-accent {
    background: linear-gradient(135deg, #b2a0ff 0%, #7e61d4 40%, #4b52e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.award-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    max-width: 500px;
    margin: 0 auto;
}

/* ---- 大数字横幅 ---- */
.award-stats-banner {
    position: relative;
    z-index: 5;
    padding: 0 24px 24px; /* 减少底部内边距从52px到24px */
    /* 轻微向上与 sticky 标题叠合 */
    margin-top: -10px;
}

.award-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 36px 40px;
    backdrop-filter: blur(16px);
    box-shadow: 0 -64px 128px -64px rgba(126, 97, 212, 0.12);
    flex-wrap: wrap;
}

.award-stat-item {
    flex: 1 1 160px;
    text-align: center;
    padding: 0 24px;
}

.award-stat-num {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.award-stat-plus {
    font-size: 0.6em;
    font-weight: 700;
    color: rgba(178, 160, 255, 0.85);
    vertical-align: super;
}

.award-stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.42);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}

.award-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    align-self: center;
}

@media (max-width: 640px) {
    .award-stat-divider { display: none; }
    .award-stats-inner { gap: 24px; padding: 28px 20px; border-radius: 20px; }
    .award-stat-item { flex: 1 1 calc(50% - 24px); }
}

/* ---- Sticky 案例卡片堆叠 ---- */
.award-cards-stack {
    position: relative;
    z-index: 10;
    padding: 0 24px 48px; /* 大幅减少底部内边距从140px到48px */
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 每张卡片外壳 */
.award-sticky-card {
    position: sticky;
    margin-bottom: 20px;
    will-change: transform;
}

/* 卡片主体 */
.award-card-body {
    border-radius: 32px;
    overflow: hidden;
    height: 355px;
    max-width: 1144px;
    margin: 0 auto;
    box-shadow:
        0 -128px 128px -128px rgba(239, 239, 239, 0.05),
        0 40px 100px -20px rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: box-shadow 0.3s ease;
}

/* 顶部光晕高光遮罩 */
.award-card-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

/* 从上渐入（与sticky叠合时更好看） */
.award-card-body {
    -webkit-mask: linear-gradient(to bottom, transparent 0%, #000 12px);
    mask: linear-gradient(to bottom, transparent 0%, #000 12px);
}

/* 内容布局 */
.award-card-content {
    display: flex;
    align-items: center;
    height: 355px;
    padding: 32px 48px;
    position: relative;
    z-index: 2;
    gap: 56px;
}

/* 左侧内容 */
.award-card-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.award-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 18px;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    width: fit-content;
}

.award-card-tag i {
    font-size: 0.85em;
    opacity: 0.8;
}

.award-card-title {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.award-card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 24px;
}

/* CTA按钮 */
.award-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
    width: fit-content;
}

.award-card-cta:hover {
    color: #ffffff;
    gap: 14px;
}

.award-card-cta svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.award-card-cta:hover svg {
    transform: translate(3px, -3px);
}

/* ==================== 右侧视觉区域 ==================== */
.award-card-visual {
    width: 480px;
    min-width: 480px;
    height: 355px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 图片容器 - 比卡片宽，向左偏移 */
.award-visual-image-wrap {
    position: absolute;
    left: -80px;
    top: -30px;
    bottom: -30px;
    width: 700px;
    overflow: hidden;
    z-index: 1;
    /* 遮罩 - 从左侧0%透明渐变到26%不透明 */
    mask: linear-gradient(90deg, #0000 0%, #000 26%);
    -webkit-mask: linear-gradient(90deg, #0000 0%, #000 26%);
}

/* 图片 - 填充整个容器 */
.award-visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

/* 大数字 */
.award-visual-number {
    position: absolute;
    font-size: 4.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.03em;
    z-index: 3;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.3);
}

/* 脉冲圆环 */
.award-visual-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: award-ring-pulse 3s ease-in-out infinite;
}

@keyframes award-ring-pulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.05); 
    }
}

/* 图标 */
.award-visual-icon {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.award-visual-icon i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ---- 响应式调整 ---- */
@media (max-width: 1200px) {
    .award-card-visual {
        width: 380px;
        min-width: 380px;
        height: 300px;
    }
    .award-visual-image-wrap {
        left: -60px;
        top: -20px;
        bottom: -20px;
        width: 550px;
    }
    .award-visual-number {
        font-size: 3.5rem;
    }
    .award-visual-ring {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 1024px) {
    .award-card-visual {
        width: 300px;
        min-width: 300px;
        height: 260px;
    }
    .award-visual-image-wrap {
        left: -40px;
        top: -15px;
        bottom: -15px;
        width: 450px;
    }
    .award-visual-number {
        font-size: 2.8rem;
    }
    .award-visual-ring {
        width: 180px;
        height: 180px;
    }
    .award-visual-icon {
        width: 44px;
        height: 44px;
        bottom: 30px;
        right: 30px;
    }
    .award-visual-icon i {
        font-size: 1.2rem;
    }
}

/* ---- 响应式 ---- */
@media (max-width: 1024px) {
    .award-card-content {
        padding: 36px 40px;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .award-card-visual {
        display: none;
    }
}

@media (max-width: 860px) {
    .award-card-content { padding: 32px 28px; min-height: auto; }
    .award-card-body { min-height: auto; border-radius: 24px; }
    .award-cards-stack { padding: 0 16px 40px; }
    .award-header-sticky { padding: 0 16px 24px; }
    .award-stats-inner { padding: 24px 16px; }
}

@media (max-width: 600px) {
    .award-sticky-card { top: 70px !important; }
    .award-main-title { font-size: 2.2rem; }
    .award-card-title { font-size: 1.4rem; }
    .award-card-desc { font-size: 0.85rem; }
}

/* ==================== Contact Form 7 样式 ==================== */
.wpcf7-form-container {
    width: 100%;
}

.wpcf7-form {
    width: 100%;
}

.wpcf7-form p {
    margin-bottom: 1.5rem;
}

.wpcf7-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    color: #1f2937;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* 咨询内容文本框 - 缩小为原来的1/3高度 */
.wpcf7-form textarea[name="your-message"] {
    height: 2.5rem; /* 大约1-2行的高度，原高度的1/3 */
    min-height: 2.5rem;
    max-height: 2.5rem;
    resize: none; /* 禁止用户调整大小 */
    line-height: 1.4;
    overflow-y: auto; /* 内容过多时显示滚动条 */
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #7e61d4;
    box-shadow: 0 0 0 3px rgba(126, 97, 212, 0.15);
}

.wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #7e61d4, #4b52e3);
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(126, 97, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 97, 212, 0.4);
    background: linear-gradient(135deg, #4b52e3, #7e61d4);
}

.wpcf7-form input[type="submit"]:active {
    transform: translateY(0);
}

.wpcf7-form .wpcf7-not-valid-tip {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.375rem;
    display: block;
}

.wpcf7-form .wpcf7-validation-errors,
.wpcf7-form .wpcf7-acceptance-missing {
    border: 1px solid #f87171;
    background-color: #fef2f2;
    color: #b91c1c;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    margin: 1.5rem 0 0;
}

.wpcf7-form .wpcf7-mail-sent-ok {
    border: 1px solid #10b981;
    background-color: #f0fdf4;
    color: #047857;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    margin: 1.5rem 0 0;
}

/* 响应式调整 */
@media (max-width: 640px) {
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="email"],
    .wpcf7-form textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }
    
    /* 移动端咨询内容文本框高度调整 */
    .wpcf7-form textarea[name="your-message"] {
        height: 2.2rem;
        min-height: 2.2rem;
        max-height: 2.2rem;
        font-size: 0.85rem;
    }
    
    .wpcf7-form input[type="submit"] {
        padding: 0.875rem;
    }
}

/* 后备表单样式（当Contact Form 7表单不存在时） */
.fallback-form {
    width: 100%;
}

.fallback-form p {
    margin-bottom: 1.5rem;
}

.fallback-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.fallback-form input[type="text"],
.fallback-form input[type="tel"],
.fallback-form input[type="email"],
.fallback-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    color: #1f2937;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* 后备表单咨询内容文本框 */
.fallback-form textarea[name="your-message"] {
    height: 2.5rem; /* 大约1-2行的高度，原高度的1/3 */
    min-height: 2.5rem;
    max-height: 2.5rem;
    resize: none; /* 禁止用户调整大小 */
    line-height: 1.4;
    overflow-y: auto; /* 内容过多时显示滚动条 */
}

.fallback-form input[type="text"]:focus,
.fallback-form input[type="tel"]:focus,
.fallback-form input[type="email"]:focus,
.fallback-form textarea:focus {
    outline: none;
    border-color: #7e61d4;
    box-shadow: 0 0 0 3px rgba(126, 97, 212, 0.15);
}

.fallback-form input[type="submit"] {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #7e61d4, #4b52e3);
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(126, 97, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.fallback-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 97, 212, 0.4);
    background: linear-gradient(135deg, #4b52e3, #7e61d4);
}

.fallback-form input[type="submit"]:active {
    transform: translateY(0);
}

/* 后备表单响应式 */
@media (max-width: 640px) {
    .fallback-form input[type="text"],
    .fallback-form input[type="tel"],
    .fallback-form input[type="email"],
    .fallback-form textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .fallback-form textarea[name="your-message"] {
        height: 2.2rem;
        min-height: 2.2rem;
        max-height: 2.2rem;
        font-size: 0.85rem;
    }
    
    .fallback-form input[type="submit"] {
        padding: 0.875rem;
    }
}

/* ==================== 3D地球 ==================== */
.contact-globe-container {
    position: absolute;
    top: 0;
    left: -5%;
    width: 60%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
}

.contact-globe-container canvas {
    width: 100%;
    height: 100%;
    display: block;
    cursor: grab;
}

.contact-globe-container canvas:active {
    cursor: grabbing;
}

#contact {
    position: relative;
    min-height: 600px;
}

@media (max-width: 1024px) {
    .contact-globe-container {
        width: 50%;
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .contact-globe-container {
        width: 100%;
        opacity: 0.5;
    }
    
    #contact {
        min-height: 500px;
    }
}
