﻿/* 腾龙游戏公司科技官网样式 - zjj886前缀 */
:root {
    /* 颜色体系 - 科技蓝主题 */
    --zjj886-blue-dark: #0a1a35;
    --zjj886-blue-medium: #1a2b4a;
    --zjj886-blue-light: #2a3d6a;
    --zjj886-blue-accent: #0077ff;
    --zjj886-blue-highlight: #00a8ff;
    --zjj886-blue-glow: rgba(0, 119, 255, 0.3);
    
    --zjj886-gray-dark: #222222;
    --zjj886-gray-medium: #444444;
    --zjj886-gray-light: #f5f7fa;
    --zjj886-gray-border: #e1e5eb;
    
    --zjj886-white: #ffffff;
    --zjj886-black: #000000;
    
    /* 字体 */
    --zjj886-font-sans: 'Inter', 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
    --zjj886-font-cn: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    
    /* 间距 */
    --zjj886-spacing-xs: 0.5rem;
    --zjj886-spacing-sm: 1rem;
    --zjj886-spacing-md: 2rem;
    --zjj886-spacing-lg: 4rem;
    --zjj886-spacing-xl: 6rem;
    
    /* 阴影 */
    --zjj886-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --zjj886-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --zjj886-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --zjj886-shadow-glow: 0 0 20px var(--zjj886-blue-glow);
    
    /* 过渡 */
    --zjj886-transition: all 0.3s ease;
    --zjj886-transition-slow: all 0.5s ease;
}

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--zjj886-font-sans);
    font-weight: 400;
    color: var(--zjj886-white);
    line-height: 1.6;
    background-color: var(--zjj886-blue-dark);
    overflow-x: hidden;
}

.zjj886-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--zjj886-spacing-sm);
}

/* 顶部导航 */
.zjj886-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 26, 53, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zjj886-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--zjj886-spacing-sm);
}

.zjj886-logo-area {
    display: flex;
    align-items: center;
}

.zjj886-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--zjj886-white);
}

.zjj886-logo-img {
    height: 50px;
    width: auto;
    margin-right: var(--zjj886-spacing-sm);
}

.zjj886-logo-text {
    display: flex;
    flex-direction: column;
}

.zjj886-logo-en {
    font-family: var(--zjj886-font-sans);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--zjj886-blue-highlight);
}

.zjj886-logo-cn {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 2px;
}

/* 导航 */
.zjj886-nav {
    display: flex;
    align-items: center;
}

.zjj886-nav-list {
    display: flex;
    list-style: none;
}

.zjj886-nav-item {
    margin-left: var(--zjj886-spacing-md);
}

.zjj886-nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    /*padding: 8px 12px;*/
    position: relative;
    transition: var(--zjj886-transition);
}

.zjj886-nav-link:hover,
.zjj886-nav-link.active {
    color: var(--zjj886-white);
}

.zjj886-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: var(--zjj886-blue-highlight);
}

.zjj886-header-actions {
    display: flex;
    align-items: center;
    margin-left: var(--zjj886-spacing-md);
}

.zjj886-phone-number {
    display: flex;
    align-items: center;
    margin-right: var(--zjj886-spacing-md);
    color: var(--zjj886-white);
    font-weight: 500;
}

.zjj886-phone-number i {
    color: var(--zjj886-blue-highlight);
    margin-right: 8px;
    font-size: 1.1rem;
}

.zjj886-language-switch {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.zjj886-lang-active {
    color: var(--zjj886-white);
    font-weight: 500;
}

.zjj886-lang-separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
}

.zjj886-lang-option {
    cursor: pointer;
    transition: var(--zjj886-transition);
}

.zjj886-lang-option:hover {
    color: var(--zjj886-white);
}

.zjj886-mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.zjj886-menu-line {
    width: 100%;
    height: 3px;
    background-color: var(--zjj886-white);
    border-radius: 3px;
    transition: var(--zjj886-transition);
}

/* 主视觉区 */
.zjj886-hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-bottom: -70px;
    overflow: hidden;
}

.zjj886-hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.zjj886-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.zjj886-hero-slide.active {
    opacity: 1;
}

.zjj886-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.zjj886-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 26, 53, 0.8) 0%, rgba(10, 26, 53, 0.5) 100%);
}

.zjj886-hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 2;
}

.zjj886-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--zjj886-spacing-md);
    color: var(--zjj886-white);
}

.zjj886-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--zjj886-spacing-lg);
    line-height: 1.6;
}

.zjj886-hero-buttons {
    display: flex;
    gap: var(--zjj886-spacing-md);
}

.zjj886-hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--zjj886-transition);
    border: 2px solid transparent;
}

.zjj886-call-action {
    background-color: var(--zjj886-blue-accent);
    color: var(--zjj886-white);
    box-shadow: var(--zjj886-shadow-glow);
}

.zjj886-call-action:hover {
    background-color: var(--zjj886-blue-highlight);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 119, 255, 0.4);
}

.zjj886-register-action {
    background-color: transparent;
    color: var(--zjj886-white);
    border-color: var(--zjj886-white);
}

.zjj886-register-action:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.zjj886-hero-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.zjj886-slider-controls {
    position: absolute;
    bottom: 20px;
    right: 40px;
    display: flex;
    align-items: center;
    z-index: 3;
}

.zjj886-slider-prev,
.zjj886-slider-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--zjj886-white);
    cursor: pointer;
    transition: var(--zjj886-transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.zjj886-slider-prev:hover,
.zjj886-slider-next:hover {
    background-color: var(--zjj886-blue-accent);
    border-color: var(--zjj886-blue-accent);
}

.zjj886-slider-next {
    margin-left: var(--zjj886-spacing-sm);
    width: 120px;
    border-radius: 25px;
    justify-content: space-between;
    padding: 0 20px;
}

.zjj886-slider-next span {
    font-size: 0.9rem;
    font-weight: 500;
}

.zjj886-slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 40px;
    display: flex;
    gap: var(--zjj886-spacing-sm);
    z-index: 3;
}

.zjj886-slider-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.6;
    cursor: pointer;
    transition: var(--zjj886-transition);
    border: 2px solid transparent;
}

.zjj886-slider-thumbnail:hover,
.zjj886-slider-thumbnail.active {
    opacity: 1;
    border-color: var(--zjj886-blue-accent);
}

.zjj886-slider-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 通用区块样式 */
section {
    padding: var(--zjj886-spacing-xl) 0;
}

.zjj886-section-header {
    text-align: center;
    margin-bottom: var(--zjj886-spacing-lg);
}

.zjj886-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--zjj886-spacing-xs);
    color: var(--zjj886-white);
    position: relative;
    display: inline-block;
}

.zjj886-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--zjj886-blue-accent);
}

.zjj886-section-subtitle {
    font-family: var(--zjj886-font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--zjj886-blue-highlight);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: var(--zjj886-spacing-sm);
}

.zjj886-section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--zjj886-spacing-lg);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* 公司简介区 */
.zjj886-about-section {
    background-color: var(--zjj886-blue-medium);
    position: relative;
    overflow: hidden;
}

.zjj886-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--zjj886-blue-accent) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(50px);
}

.zjj886-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--zjj886-spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.zjj886-about-text {
    color: rgba(255, 255, 255, 0.9);
}

.zjj886-about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--zjj886-spacing-lg);
}

.zjj886-about-highlights {
    margin: var(--zjj886-spacing-lg) 0;
}

.zjj886-highlight-item {
    display: flex;
    margin-bottom: var(--zjj886-spacing-md);
}

.zjj886-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 119, 255, 0.1);
    border-radius: 10px;
    margin-right: var(--zjj886-spacing-md);
    color: var(--zjj886-blue-highlight);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.zjj886-highlight-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--zjj886-white);
}

.zjj886-highlight-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.zjj886-about-image {
    position: relative;
}

.zjj886-image-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--zjj886-shadow-lg);
    position: relative;
}

.zjj886-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--zjj886-transition-slow);
}

.zjj886-image-frame:hover img {
    transform: scale(1.05);
}

.zjj886-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(10, 26, 53, 0.9) 0%, transparent 100%);
    padding: var(--zjj886-spacing-lg) var(--zjj886-spacing-md) var(--zjj886-spacing-md);
}

.zjj886-overlay-content {
    display: flex;
    align-items: center;
}

.zjj886-year-badge {
    background-color: var(--zjj886-blue-accent);
    color: var(--zjj886-white);
    font-weight: 700;
    font-size: 1.8rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--zjj886-spacing-md);
    box-shadow: var(--zjj886-shadow-glow);
    flex-shrink: 0;
}

.zjj886-overlay-content p {
    color: var(--zjj886-white);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* 腾龙特色区 */
.zjj886-features-section {
    background-color: var(--zjj886-blue-dark);
}

.zjj886-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--zjj886-spacing-lg);
    margin-top: var(--zjj886-spacing-lg);
}

.zjj886-feature-card {
    background-color: var(--zjj886-blue-medium);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--zjj886-transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.zjj886-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--zjj886-shadow-lg);
    border-color: var(--zjj886-blue-accent);
}

.zjj886-feature-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.zjj886-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--zjj886-transition-slow);
}

.zjj886-feature-card:hover .zjj886-feature-image img {
    transform: scale(1.05);
}

.zjj886-feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, var(--zjj886-blue-medium) 100%);
}

.zjj886-feature-content {
    padding: var(--zjj886-spacing-md);
}

.zjj886-feature-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: var(--zjj886-spacing-sm);
    color: var(--zjj886-white);
}

.zjj886-feature-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--zjj886-spacing-md);
    line-height: 1.6;
}

.zjj886-feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--zjj886-blue-highlight);
    font-weight: 500;
    text-decoration: none;
    transition: var(--zjj886-transition);
}

.zjj886-feature-link:hover {
    color: var(--zjj886-white);
}

.zjj886-feature-link i {
    margin-left: 8px;
    transition: var(--zjj886-transition);
}

.zjj886-feature-link:hover i {
    transform: translateX(5px);
}

/* 游戏产品区 */
.zjj886-products-section {
    background-color: var(--zjj886-blue-medium);
}

.zjj886-products-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--zjj886-spacing-md);
    margin-top: var(--zjj886-spacing-lg);
}

.zjj886-product-main {
    grid-row: 1;
    grid-column: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}

.zjj886-product-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zjj886-product-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--zjj886-spacing-md);
    background: linear-gradient(to top, rgba(10, 26, 53, 0.9) 0%, transparent 100%);
}

.zjj886-product-main-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--zjj886-white);
}

.zjj886-product-main-content p {
    color: rgba(255, 255, 255, 0.8);
}

.zjj886-product-side {
    grid-row: 1;
    grid-column: 2;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}

.zjj886-product-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zjj886-product-side-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--zjj886-spacing-md);
    background: linear-gradient(to top, rgba(10, 26, 53, 0.9) 0%, transparent 100%);
}

.zjj886-product-side-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--zjj886-white);
}

.zjj886-product-side-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.zjj886-product-items {
    grid-row: 2;
    grid-column: 1 / span 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--zjj886-spacing-md);
    margin-top: var(--zjj886-spacing-md);
}

.zjj886-product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 150px;
}

.zjj886-product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--zjj886-transition);
}

.zjj886-product-item:hover img {
    transform: scale(1.05);
}

.zjj886-product-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(10, 26, 53, 0.8);
    color: var(--zjj886-white);
    font-weight: 500;
    text-align: center;
}

/* 游戏平台架构区 */
.zjj886-platform-section {
    background-color: var(--zjj886-blue-dark);
    position: relative;
    overflow: hidden;
}

.zjj886-platform-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--zjj886-blue-accent) 0%, transparent 70%);
    opacity: 0.05;
    filter: blur(80px);
}

.zjj886-platform-diagram {
    position: relative;
    height: 500px;
    margin: var(--zjj886-spacing-lg) auto;
    max-width: 800px;
}

.zjj886-platform-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.zjj886-platform-core {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--zjj886-blue-accent) 0%, var(--zjj886-blue-highlight) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--zjj886-white);
    box-shadow: var(--zjj886-shadow-glow);
    position: relative;
}

.zjj886-platform-core::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 20px;
    background-color: rgba(0, 119, 255, 0.3);
    border-radius: 10px;
    filter: blur(10px);
}

.zjj886-core-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.zjj886-platform-core h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.zjj886-platform-core p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.zjj886-platform-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.zjj886-platform-node {
    position: absolute;
    width: 150px;
}

.zjj886-node-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 100px;
    background-color: var(--zjj886-blue-accent);
    opacity: 0.5;
    z-index: 1;
}

.zjj886-platform-node:nth-child(even) .zjj886-node-connector {
    height: 120px;
}

.zjj886-node-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: rgba(26, 43, 74, 0.8);
    border: 1px solid rgba(0, 119, 255, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.zjj886-node-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--zjj886-white);
}

.zjj886-node-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* 腾龙荣誉区 */
.zjj886-honors-section {
    background-color: var(--zjj886-blue-medium);
}

.zjj886-honors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--zjj886-spacing-lg);
    margin-bottom: var(--zjj886-spacing-lg);
}

.zjj886-honor-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--zjj886-transition);
}

.zjj886-honor-card:hover {
    transform: translateY(-5px);
    border-color: var(--zjj886-blue-accent);
    box-shadow: var(--zjj886-shadow-md);
}

.zjj886-honor-important {
    background: linear-gradient(135deg, rgba(220, 50, 50, 0.1) 0%, rgba(10, 26, 53, 0.8) 100%);
    border-color: rgba(220, 50, 50, 0.3);
}

.zjj886-honor-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background-color: rgba(220, 50, 50, 0.1);
    color: #ff6b6b;
    font-size: 3rem;
}

.zjj886-honor-image {
    height: 200px;
    overflow: hidden;
}

.zjj886-honor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--zjj886-transition);
}

.zjj886-honor-card:hover .zjj886-honor-image img {
    transform: scale(1.05);
}

.zjj886-honor-content {
    padding: var(--zjj886-spacing-md);
}

.zjj886-honor-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--zjj886-spacing-sm);
    color: var(--zjj886-white);
}

.zjj886-honor-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--zjj886-spacing-md);
    line-height: 1.6;
}

.zjj886-honor-date {
    display: inline-block;
    background-color: rgba(0, 119, 255, 0.1);
    color: var(--zjj886-blue-highlight);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.zjj886-more-link {
    text-align: center;
}

.zjj886-more-link a {
    display: inline-flex;
    align-items: center;
    color: var(--zjj886-blue-highlight);
    font-weight: 500;
    text-decoration: none;
    transition: var(--zjj886-transition);
}

.zjj886-more-link a:hover {
    color: var(--zjj886-white);
}

.zjj886-more-link a i {
    margin-left: 8px;
    transition: var(--zjj886-transition);
}

.zjj886-more-link a:hover i {
    transform: translateX(5px);
}

/* 用户评价区 */
.zjj886-feedback-section {
    background-color: var(--zjj886-blue-dark);
}

.zjj886-feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--zjj886-spacing-lg);
}

.zjj886-feedback-card {
    background-color: var(--zjj886-blue-medium);
    border-radius: 12px;
    padding: var(--zjj886-spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--zjj886-transition);
}

.zjj886-feedback-card:hover {
    border-color: var(--zjj886-blue-accent);
    box-shadow: var(--zjj886-shadow-md);
}

.zjj886-feedback-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--zjj886-spacing-md);
}

.zjj886-feedback-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: var(--zjj886-spacing-md);
    border: 2px solid var(--zjj886-blue-accent);
}

.zjj886-feedback-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zjj886-feedback-user h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--zjj886-white);
}

.zjj886-feedback-user p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.zjj886-feedback-rating {
    margin-left: auto;
    color: #ffc107;
    font-size: 0.9rem;
}

.zjj886-feedback-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--zjj886-spacing-md);
    font-style: italic;
}

.zjj886-feedback-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-align: right;
}

/* FAQ区域 */
.zjj886-faq-section {
    background-color: var(--zjj886-blue-medium);
}

.zjj886-faq-register {
    background: linear-gradient(135deg, var(--zjj886-blue-dark) 0%, var(--zjj886-blue-medium) 100%);
    position: relative;
    overflow: hidden;
}

.zjj886-faq-register::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--zjj886-blue-accent) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(50px);
}

.zjj886-faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--zjj886-spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.zjj886-faq-text {
    color: var(--zjj886-white);
}

.zjj886-faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--zjj886-spacing-sm);
}

.zjj886-faq-subtitle {
    font-size: 1.1rem;
    color: var(--zjj886-blue-highlight);
    margin-bottom: var(--zjj886-spacing-md);
    font-weight: 500;
}

.zjj886-faq-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--zjj886-spacing-lg);
    line-height: 1.7;
}

.zjj886-faq-actions {
    display: flex;
    gap: var(--zjj886-spacing-md);
}

.zjj886-faq-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background-color: var(--zjj886-blue-accent);
    color: var(--zjj886-white);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--zjj886-transition);
    border: 2px solid transparent;
}

.zjj886-faq-btn:hover {
    background-color: var(--zjj886-blue-highlight);
    transform: translateY(-3px);
}

.zjj886-faq-btn-secondary {
    background-color: transparent;
    border-color: var(--zjj886-white);
}

.zjj886-faq-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.zjj886-faq-btn i {
    margin-right: 8px;
}

.zjj886-faq-list {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: var(--zjj886-spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.zjj886-faq-item {
    margin-bottom: var(--zjj886-spacing-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: var(--zjj886-spacing-sm);
}

.zjj886-faq-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.zjj886-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}

.zjj886-faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--zjj886-white);
}

.zjj886-faq-toggle {
    color: var(--zjj886-blue-highlight);
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--zjj886-transition);
}

.zjj886-faq-item.active .zjj886-faq-toggle {
    transform: rotate(45deg);
}

.zjj886-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.zjj886-faq-item.active .zjj886-faq-answer {
    max-height: 500px;
    padding-top: var(--zjj886-spacing-sm);
}

.zjj886-faq-answer p,
.zjj886-faq-answer ol,
.zjj886-faq-answer ul {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.zjj886-faq-answer ol,
.zjj886-faq-answer ul {
    padding-left: var(--zjj886-spacing-md);
}

.zjj886-faq-answer li {
    margin-bottom: 5px;
}

.zjj886-faq-answer a {
    color: var(--zjj886-blue-highlight);
    text-decoration: none;
}

.zjj886-faq-answer a:hover {
    text-decoration: underline;
}

.zjj886-faq-game,
.zjj886-faq-account {
    background-color: var(--zjj886-blue-dark);
}

.zjj886-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--zjj886-spacing-lg);
}

.zjj886-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

/* 联系我们区 */
.zjj886-contact-section {
    background: linear-gradient(135deg, var(--zjj886-blue-dark) 0%, var(--zjj886-blue-medium) 100%);
    position: relative;
    overflow: hidden;
}

.zjj886-contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.zjj886-contact-left {
    padding: var(--zjj886-spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--zjj886-blue-dark);
    position: relative;
    z-index: 2;
}

.zjj886-contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--zjj886-spacing-sm);
    color: var(--zjj886-white);
}

.zjj886-contact-subtitle {
    font-size: 1.2rem;
    color: var(--zjj886-blue-highlight);
    margin-bottom: var(--zjj886-spacing-md);
    font-weight: 500;
}

.zjj886-contact-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--zjj886-spacing-lg);
    line-height: 1.7;
}

.zjj886-contact-info {
    margin-top: var(--zjj886-spacing-md);
}

.zjj886-contact-item {
    display: flex;
    margin-bottom: var(--zjj886-spacing-md);
}

.zjj886-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 119, 255, 0.1);
    border-radius: 10px;
    margin-right: var(--zjj886-spacing-md);
    color: var(--zjj886-blue-highlight);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.zjj886-contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--zjj886-white);
}

.zjj886-contact-text p {
    color: rgba(255, 255, 255, 0.7);
}

.zjj886-contact-right {
    position: relative;
}

.zjj886-contact-bg {
    width: 100%;
    height: 100%;
    background-image: url('../image/ad20260123MKSmT.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.zjj886-contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 26, 53, 0.9) 0%, rgba(10, 26, 53, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zjj886-contact-bg-text {
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 10px;
    text-transform: uppercase;
}

/* 页脚 */
.zjj886-footer {
    background-color: var(--zjj886-gray-dark);
    padding: var(--zjj886-spacing-xl) 0 var(--zjj886-spacing-lg);
}

.zjj886-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--zjj886-spacing-lg);
    margin-bottom: var(--zjj886-spacing-lg);
}

.zjj886-footer-section {
    color: rgba(255, 255, 255, 0.8);
}

.zjj886-footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--zjj886-spacing-md);
}

.zjj886-footer-logo img {
    height: 50px;
    width: auto;
    margin-right: var(--zjj886-spacing-sm);
}

.zjj886-footer-logo-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--zjj886-white);
}

.zjj886-footer-logo-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.zjj886-footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.zjj886-footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--zjj886-spacing-md);
    color: var(--zjj886-white);
}

.zjj886-footer-links {
    list-style: none;
}

.zjj886-footer-links li {
    margin-bottom: 12px;
}

.zjj886-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--zjj886-transition);
    font-size: 0.95rem;
}

.zjj886-footer-links a:hover {
    color: var(--zjj886-blue-highlight);
    padding-left: 5px;
}

.zjj886-footer-contact {
    margin-top: var(--zjj886-spacing-sm);
}

.zjj886-footer-phone {
    display: flex;
    align-items: center;
    margin-bottom: var(--zjj886-spacing-md);
}

.zjj886-footer-phone i {
    color: var(--zjj886-blue-highlight);
    font-size: 1.2rem;
    margin-right: 10px;
}

.zjj886-phone-main {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--zjj886-white);
}

.zjj886-footer-social {
    display: flex;
    gap: var(--zjj886-spacing-sm);
}

.zjj886-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--zjj886-white);
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--zjj886-transition);
}

.zjj886-social-link:hover {
    background-color: var(--zjj886-blue-accent);
    transform: translateY(-3px);
}

.zjj886-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--zjj886-spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.zjj886-footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.zjj886-footer-copyright p {
    margin-bottom: 5px;
}

.zjj886-footer-extra {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.zjj886-footer-extra a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--zjj886-transition);
}

.zjj886-footer-extra a:hover {
    color: var(--zjj886-white);
}

.zjj886-footer-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .zjj886-hero-title {
        font-size: 3rem;
    }
    
    .zjj886-section-title {
        font-size: 2.2rem;
    }
    
    .zjj886-products-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .zjj886-product-main,
    .zjj886-product-side {
        grid-column: 1;
    }
    
    .zjj886-product-main {
        grid-row: 1;
        height: 300px;
    }
    
    .zjj886-product-side {
        grid-row: 2;
        height: 200px;
    }
    
    .zjj886-product-items {
        grid-row: 3;
        grid-column: 1;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .zjj886-nav-list {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--zjj886-blue-dark);
        flex-direction: column;
        padding: var(--zjj886-spacing-sm) 0;
        box-shadow: var(--zjj886-shadow-lg);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .zjj886-nav-list.active {
        display: flex;
    }
    
    .zjj886-nav-item {
        margin: 0;
    }
    
    .zjj886-nav-link {
        display: block;
        padding: 15px var(--zjj886-spacing-md);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .zjj886-nav-link.active::after {
        display: none;
    }
    
    .zjj886-nav-link.active {
        background-color: rgba(0, 119, 255, 0.1);
        border-left: 3px solid var(--zjj886-blue-accent);
    }
    
    .zjj886-mobile-menu-btn {
        display: flex;
        margin-left: var(--zjj886-spacing-md);
    }
    
    .zjj886-header-actions .zjj886-phone-number span {
        display: none;
    }
    
    .zjj886-hero-title {
        font-size: 2.5rem;
    }
    
    .zjj886-hero-content {
        left: 5%;
        max-width: 90%;
    }
    
    .zjj886-about-content,
    .zjj886-faq-content,
    .zjj886-contact-container {
        grid-template-columns: 1fr;
    }
    
    .zjj886-about-image {
        order: -1;
    }
    
    .zjj886-faq-text {
        text-align: center;
    }
    
    .zjj886-faq-actions {
        justify-content: center;
    }
    
    .zjj886-contact-left {
        padding: var(--zjj886-spacing-lg);
    }
    
    .zjj886-contact-right {
        height: 300px;
    }
    
    .zjj886-platform-diagram {
        height: 400px;
    }
    
    .zjj886-platform-node {
        width: 120px;
    }
    
    .zjj886-node-content {
        padding: 10px;
    }
    
    .zjj886-node-content h4 {
        font-size: 0.9rem;
    }
    
    .zjj886-node-content p {
        font-size: 0.8rem;
    }
    
    .zjj886-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .zjj886-hero-title {
        font-size: 2rem;
    }
    
    .zjj886-hero-subtitle {
        font-size: 1rem;
    }
    
    .zjj886-hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .zjj886-hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .zjj886-section-title {
        font-size: 1.8rem;
    }
    
    .zjj886-features-grid,
    .zjj886-honors-grid,
    .zjj886-feedback-grid {
        grid-template-columns: 1fr;
    }
    
    .zjj886-product-items {
        grid-template-columns: 1fr;
    }
    
    .zjj886-platform-diagram {
        height: 300px;
    }
    
    .zjj886-platform-core {
        width: 150px;
        height: 150px;
    }
    
    .zjj886-core-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .zjj886-platform-core h3 {
        font-size: 1.1rem;
    }
    
    .zjj886-platform-core p {
        font-size: 0.8rem;
    }
    
    .zjj886-platform-node {
        width: 100px;
    }
    
    .zjj886-footer-content {
        grid-template-columns: 1fr;
    }
    
    .zjj886-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--zjj886-spacing-sm);
    }
}

@media (max-width: 576px) {
    .zjj886-hero-title {
        font-size: 1.8rem;
    }
    
    .zjj886-hero-content {
        left: 0;
        padding: var(--zjj886-spacing-md);
        width: 100%;
        text-align: center;
    }
    
    .zjj886-slider-controls,
    .zjj886-slider-indicators {
        display: none;
    }
    
    section {
        padding: var(--zjj886-spacing-lg) 0;
    }
    
    .zjj886-platform-diagram {
        display: none;
    }
    
    .zjj886-footer-extra {
        flex-direction: column;
        gap: 10px;
    }
    
    .zjj886-footer-separator {
        display: none;
    }
}