
/* 基础重置与自适应框架 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* 背景样式 */
:root {
    --dark-bg: #1a0b2e;
    --darker-bg: #0f051a;
    --card-bg: rgba(229, 231, 235, 0.03);
    --border-color: rgba(229, 231, 235, 0.2);
    --primary-cyan: #00ffff;
    --primary-pink: #ff00ff;
    --primary-purple: #7c3aed;
}

body {
    background: var(--darker-bg);
    overflow: auto;
}

/* Enhanced Cyberpunk Background */
.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    overflow: hidden;
    z-index: -5;
}

/* Animated gradient background */
.cyber-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
    animation: gradientRotate 30s linear infinite;
    filter: blur(40px);
}

@keyframes gradientRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Animated grid overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.grid-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 0, 255, 0.03) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255, 0, 255, 0.03) 2px, transparent 2px);
    background-size: 100px 100px;
    animation: gridMove 30s linear infinite reverse;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Glowing orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -4;
}

.orb1 {
    width: 300px;
    height: 300px;
    background: var(--primary-cyan);
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.orb2 {
    width: 400px;
    height: 400px;
    background: var(--primary-pink);
    bottom: 10%;
    right: -200px;
    animation-delay: 5s;
}

.orb3 {
    width: 250px;
    height: 250px;
    background: var(--primary-purple);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }
}

/* Noise texture overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(0, 255, 255, 0.02) 2px, rgba(0, 255, 255, 0.02) 4px);
}

/* Thin rising lines */
.line-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -3;
}

.line {
    position: absolute;
    bottom: -50px;
    width: 1px;
    height: 30px;
    background: linear-gradient(to top, transparent, var(--primary-cyan), transparent);
    opacity: 0;
    animation: riseLine 6s ease-in infinite;
}

.line:nth-child(2n) {
    background: linear-gradient(to top, transparent, var(--primary-pink), transparent);
    animation-duration: 8s;
}

.line:nth-child(3n) {
    background: linear-gradient(to top, transparent, var(--primary-purple), transparent);
    animation-duration: 10s;
}

@keyframes riseLine {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    20% {
        opacity: 0.3;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-120vh);
        opacity: 0;
    }
}
/* 主体 */
body {
    width: 80%;
    color: #fff;
    text-align: center;
    margin-left: auto; /* 与下一行共同实现居中 */
    margin-top: 50px;
    margin-right: auto; /* 与上一行共同实现居中 */
    padding: 0; /* 容器内边距，可根据需要添加 */
    min-height: 100vh;
    font-family: sans-serif; /* 可后续更改 */
    line-height: 1.6;
    background-image: linear-gradient(to right bottom, #051937, #16345b, #265180, #3471a8, #4093d1);
}

/* 标题与段落标准样式 */
h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 3px 0px #898999;
    line-height: 1.2;
}

h2 {
    font-weight: 800;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    font-size: 2em;
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-image: linear-gradient(to right, #23daf0, #00c0ff, #009fff, #5471ff, #b10bce);
    box-shadow: 
        0 0 10px var(--primary-cyan),
        0 0 20px var(--primary-pink);
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
/* LOGO间距 */
.site-logo {
    display: inline-block;
    vertical-align: middle;
}

.logo-title-container h1{
    display: inline-block;
    vertical-align: middle;
    margin: 0px;
    margin-left: 10px;
    color: #fff;
}

/* 导航栏 */
.nav-list {
    margin-top: 20px;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    background: var(--btn-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 12px 8px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: bold;
}

.nav-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.nav-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #5FFBF1;
    transition: width 0.3s ease;
}

.nav-btn:hover::before {
    width: 100%;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(220, 180, 48, 0.4);
}

@media (max-width: 768px) {
    .nav-list {
        gap: 0.5rem;
    }
    
    .nav-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
/* 首页简介 */
.service-intro2 {
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.intro-content2 p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1.3rem;
    text-align: center;
    margin: 0;
}

/* 移动端适配 */
@media (max-width: 768px) {

    .intro-content2 p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}
/* 图片展示区 */
.gallery-section {
    padding: 2rem 0;
    text-align: center;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-top: 30px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 255, 251, 0.3);
    aspect-ratio: 16/9; /* 1920x1080的比例 */
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 255, 251, 0.5);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* 移动端适配 */
@media (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .gallery-section {
        padding: 1rem 0;
    }
}
/* 功能介绍区 */
.features-section {
    padding: 4rem 0;
    text-align: center;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 40px;
    padding: 0 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 251, 0.3);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 251, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00fffb;
    box-shadow: 
        0 15px 40px rgba(0, 255, 251, 0.4),
        0 0 20px rgba(0, 255, 251, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 251, 0.5));
}

.feature-card h3 {
    color: #00fffb;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 251, 0.5);
}

.feature-card p {
    color: #b8f2ff;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 移动端适配 */
@media (max-width: 1200px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .features-section {
        padding: 2rem 0;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
}
/* 平台支持 */
.platforms-section {
    text-align: center;
}

.platforms-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 40px;
    margin-bottom: 40px;
}

.platform-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.platform-card:nth-child(1) {
    border-top: 10px solid #f3991c;
}
.platform-card:nth-child(2) {
    border-top: 10px solid #987249;
}
.platform-card:nth-child(3) {
    border-top: 10px solid #591600;
}
.platform-card:nth-child(4) {
    border-top: 10px solid #ff8984;
}
.platform-card:nth-child(5) {
    border-top: 10px solid #603c31;
}
.platform-card:nth-child(6) {
    border-top: 10px solid #e8cb5f;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.platform-card:hover::before {
    left: 100%;
}

.platform-icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.platform-content {
    text-align: left;
    flex: 1;
}

.platform-content p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.platform-content strong {
    color: #00fffb;
    text-shadow: 0 0 10px rgba(0, 255, 251, 0.3);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .platforms-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .platforms-section {
        padding: 2rem 0;
    }
    
    .platform-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .platform-content {
        text-align: center;
    }
    
    .platform-icon {
        font-size: 2.5rem;
    }
}
/* 效果对比 */
.compact-comparison {
    padding: 2rem 0;
    text-align: center;
}

.compact-table {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 187, 0, 0.2);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    margin-top: 40px;  
}

.compact-row {
    display: grid;
    grid-template-columns: 1.8fr 1fr 0.3fr 1fr;
    align-items: center;
    padding: 0.1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.compact-row:last-child {
    border-bottom: none;
}

.compact-row:hover {
    background: rgba(3, 31, 89, 0.08);
    transform: translateX(5px);
}

.compact-row.header {
    background:#051937;
    font-weight: bold;
    text-shadow: 0 0 12px rgba(0, 255, 251, 0.4);
    font-size: 1.1rem;
}

.compact-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.item-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.item-desc {
    color: #b8f2ff;
    font-size: 0.8rem;
    opacity: 0.8;
}

.compact-with, .compact-without {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.5rem;
    border-radius: 6px;
}

.data-value {
    color: inherit;
    font-weight: bold;
    font-size: 1.1rem;
}

.compact-with .data-value {
    color: #00ff8c;
    text-shadow: 0 0 10px rgba(0, 255, 140, 0.5);
}

.compact-without .data-value {
    color: #ff4d6d;
    text-shadow: 0 0 10px rgba(255, 77, 109, 0.5);
}

.data-desc {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.2;
}

.compact-with .data-desc {
    color: #80ffc0;
}

.compact-without .data-desc {
    color: #ff9db3;
}

.compact-vs {
    color: #00fffb;
    font-size: 0.85rem;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 251, 0.6);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .compact-table {
        margin: 0 1rem;
        font-size: 0.9rem;
    }
    
    .compact-row {
        padding: 0.8rem 1rem;
        grid-template-columns: 1.5fr 0.9fr 0.2fr 0.9fr;
    }
    
    .item-title {
        font-size: 0.9rem;
    }
    
    .item-desc, .data-desc {
        font-size: 0.7rem;
    }
    
    .data-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .compact-comparison {
        padding: 1.5rem 0;
    }
    
    .compact-table {
        margin: 0 0.5rem;
    }
    
    .compact-row {
        padding: 0.6rem;
        grid-template-columns: 1.2fr 0.8fr 0.15fr 0.8fr;
    }
    
    .compact-vs {
        font-size: 0.7rem;
    }
}
/* 适合人群 */
.target-users4 {
    margin: 2rem 0;
}

.target-users4 h3 {
    color: #00fffb;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.users-grid4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-top: 2rem;
}

.user-card4 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.user-card4:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.1);
}

.user-icon4 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.user-card4 h4 {
    color: #00fffb;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.user-card4 p {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .users-grid4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .user-card4 {
        padding: 1rem;
    }
    
    .target-users4 h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .user-icon4 {
        font-size: 1.8rem;
    }
    
    .user-card4 h4 {
        font-size: 1rem;
    }
    
    .user-card4 p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .users-grid4 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
/* 快速解答 */
.qa-cards4 {
    margin-top: 2rem;
}

.qa-cards4 h2 {
    color: #00fffb;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.cards-grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.qa-card4 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qa-card4:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.15);
}

.card-icon4 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.card-content4 h3 {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.card-content4 p {
    color: #00fffb;
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.2;
}

/* 移动端适配 */
@media (max-width: 1024px) {
    .cards-grid4 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .cards-grid4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .qa-card4 {
        padding: 1rem;
        min-height: 120px;
    }
    
    .card-icon4 {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .card-content4 h3 {
        font-size: 0.9rem;
    }
    
    .card-content4 p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cards-grid4 {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .qa-card4 {
        min-height: 100px;
        padding: 0.8rem;
    }
}
/* 使用技巧 */
.deep-faq-section1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    width: 100%;
}

.section-header1 h2 {
    color: #00fffb;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.section-subtitle1 {
    color: #b8f2ff;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.deep-faq-container1 {
    display: grid;
    text-align: left;
    grid-template-columns: repeat(2, minmax(400px, 1fr));
    gap: 2rem;
    width: 100%;
}

.deep-faq-item1 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.deep-faq-item1:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 255, 255, 0.15);
}

.faq-question1 {
    width: 100%;
    color: #b8f2ff;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0;
}

.question-text1 {
    display: block;
    line-height: 1.4;
}

.faq-answer1 {
    display: block;
}

.faq-answer1 h3 {
    color: #6cc3dd;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.faq-answer1 p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.tech-detail1 {
    margin-top: 1.5rem;
}

.tech-detail1 h4 {
    color: #b8f2ff;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    padding-left: 0.5rem;
    border-left: 3px solid #00fffb;
}

.tech-detail1 ul {
    color: #e0e0e0;
    padding-left: 1.2rem;
    margin: 0.8rem 0;
}

.tech-detail1 li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.tech-detail1 strong {
    color: #0cb6b3;
}

.scene-example1,
.config-guide1,
.multi-instance1,
.anti-detection1 {
    background: rgba(0, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    border-left: 3px solid #00fffb;
}

.scene-example1 p,
.config-guide1 p,
.multi-instance1 p,
.anti-detection1 p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.scene-example1 p:last-child,
.config-guide1 p:last-child,
.multi-instance1 p:last-child,
.anti-detection1 p:last-child {
    margin-bottom: 0;
}

/* 响应式适配 */
@media (max-width: 1200px) {
    .deep-faq-container1 {
        grid-template-columns: repeat(2, minmax(350px, 1fr));
    }
}

@media (max-width: 900px) {
    .deep-faq-container1 {
        grid-template-columns: 1fr;
    }
    
    .deep-faq-section1 {
        padding: 2rem 0.5rem;
    }
    
    .section-header1 h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle1 {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .deep-faq-item1 {
        padding: 1.5rem;
    }
    
    .faq-question1 {
        font-size: 1.1rem;
    }
    
    .faq-answer1 h3 {
        font-size: 1.2rem;
    }
    
    .faq-answer1 p {
        font-size: 0.9rem;
    }
    
    .tech-detail1 h4 {
        font-size: 1.1rem;
    }
    
    .tech-detail1 li {
        font-size: 0.85rem;
    }
}
/* 文章推荐 */
.articles-section {
    text-align: center;
}

.articles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.article-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #00fffb;
    box-shadow: 
        0 10px 30px rgba(0, 255, 255, 0.2),
        0 0 20px rgba(0, 255, 255, 0.1);
}

.article-card:hover::before {
    left: 100%;
}

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

.article-category {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-date {
    color: #b8f2ff;
    font-size: 0.9rem;
    opacity: 0.8;
}

.article-title {
    color: #a7d6e5;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.article-excerpt {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    padding-top: 1rem;
}

.article-read-time {
    color: #b8f2ff;
    font-size: 0.85rem;
    opacity: 0.7;
}

.article-link {
    color: #66b1ea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.article-link:hover {
    color: #ffd500e0;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
    transform: translateX(5px);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .articles-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .articles-section {
        padding: 2rem 0;
    }
    
    .article-card {
        padding: 1.5rem;
    }
    
    .article-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}
/* 常见问题 */

/* 页尾 */
footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 94, 0, 0.2);
    padding: 40px 20px;
    text-align: center;
}
footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 94, 0, 0.2);
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    position: relative;
    left: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #2ce1de;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #00B2FF;
    text-shadow: 0 0 10px currentColor;
}

.copyright {
    opacity: 0.6;
    font-size: 0.9rem;
}

.copyright a {
    color: #289cf6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: #00B2FF;
    text-shadow: 0 0 10px currentColor;
}
/* 首页按钮 */
.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-buttons {
    /*flex-direction: column;*/
    align-items: center;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: var(--darker-bg);
    padding: 1.2rem 3rem;
    margin-top: 30px;
    margin-bottom: 30px;
    border: none;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 
        0 8px 25px rgba(0, 255, 255, 0.3),
        0 4px 15px rgba(255, 0, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: breathe 3s ease-in-out infinite;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 255, 255, 0.5),
        0 6px 20px rgba(255, 0, 255, 0.3),
        0 0 30px rgba(0, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation-play-state: paused;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 8px 25px rgba(0, 255, 255, 0.3),
            0 4px 15px rgba(255, 0, 255, 0.2);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 
            0 12px 30px rgba(0, 255, 255, 0.4),
            0 6px 20px rgba(255, 0, 255, 0.25),
            0 0 25px rgba(0, 255, 255, 0.3);
    }
}