/* 
 * 探花 - 完全原创品牌静态网站 
 * 视觉风格：新国潮霓虹动漫派 (Neo-Chinatown Cyber-Anime)
 * 核心色调：霓虹绯红、极光荧绿、午夜漆黑、月白
 */

:root {
    --primary: #ff2a5f;       /* 霓虹绯红 */
    --primary-glow: rgba(255, 42, 95, 0.4);
    --secondary: #00ff88;     /* 极光荧绿 */
    --secondary-glow: rgba(0, 255, 136, 0.3);
    --dark-bg: #0b0914;       /* 午夜漆黑 */
    --dark-card: #151226;     /* 晶体深紫 */
    --text-light: #f5f5fa;    /* 月白 */
    --text-gray: #a09eb5;     /* 灰钛 */
    --border-color: rgba(255, 42, 95, 0.15);
    --font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 霓虹发光与粒子质感 */
.neon-text-red {
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary-glow), 0 0 20px rgba(255, 42, 95, 0.2);
}

.neon-text-green {
    color: var(--secondary);
    text-shadow: 0 0 8px var(--secondary-glow), 0 0 20px rgba(0, 255, 136, 0.15);
}

.neon-border-red {
    border: 1px solid var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.neon-border-green {
    border: 1px solid var(--secondary);
    box-shadow: 0 0 10px var(--secondary-glow);
}

/* 容器布局 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
header {
    background-color: rgba(11, 9, 20, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 42, 95, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), #9d00ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    box-shadow: 0 0 15px var(--primary-glow);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

/* 伪搜索栏 */
.zkjpza {
    padding: 15px 0;
    background: rgba(21, 18, 38, 0.5);
    border-bottom: 1px solid rgba(0, 255, 136, 0.05);
}

.wped9gtb {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.g4xp7 {
    flex: 1;
    background: rgba(11, 9, 20, 0.8);
    border: 1px solid rgba(255, 42, 95, 0.2);
    border-radius: 30px;
    padding: 12px 25px;
    color: var(--text-light);
    outline: none;
    font-size: 14px;
}

.g4xp7:focus {
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

.qcnj8 {
    background: linear-gradient(90deg, var(--primary), #9d00ff);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 0 15px var(--primary-glow);
}

.qcnj8:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary);
}

/* 面包屑导航样式 */
.wl35lmm {
    background: rgba(11, 9, 20, 0.4);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 42, 95, 0.05);
}

.j0mytyh {
    font-size: 13px;
    color: var(--text-gray);
}

.j0mytyh a {
    color: var(--text-gray);
    text-decoration: none;
}

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

.j0mytyh span {
    color: var(--primary);
    font-weight: bold;
}

/* MCP 智能推荐面板样式 */
.mzudnu {
    padding: 40px 0;
    background: rgba(21, 18, 38, 0.3);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.frgejs {
    background: var(--dark-card);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.05);
}

.lyqcvaga {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.to9a3r {
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    font-size: 11px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.oyymle {
    font-size: 20px;
    font-weight: 800;
}

.os6tjfg {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.l86ary {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.zef6ok {
    background: linear-gradient(90deg, var(--secondary), #00bfff);
    border: none;
    color: var(--dark-bg);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 15px var(--secondary-glow);
}

.zef6ok:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--secondary);
}

.zef6ok.btn-secondary {
    background: rgba(11, 9, 20, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--secondary);
    box-shadow: none;
}

.zef6ok.btn-secondary:hover {
    background: var(--secondary);
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--secondary-glow);
}

.h9ws7n4 {
    background: rgba(11, 9, 20, 0.6);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 42, 95, 0.1);
    font-size: 14px;
    animation: fadeIn 0.3s ease;
}

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

/* 英雄横幅 */
.hero-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 9, 20, 0.4) 0%, rgba(11, 9, 20, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 42, 95, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-desc {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), #9d00ff);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--primary);
}

.btn-secondary {
    background: rgba(21, 18, 38, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--secondary);
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--secondary-glow);
    transform: translateY(-3px);
}

/* 核心模块 */
.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 42, 95, 0.05);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 42, 95, 0.3);
    box-shadow: 0 10px 30px rgba(255, 42, 95, 0.15);
}

.card-img-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 视频播放鼠标悬停效果 */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 9, 20, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.card-img-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-btn-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 42, 95, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--primary);
    transform: scale(0.8);
}

.card-img-wrapper:hover .play-btn-circle {
    transform: scale(1);
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid white;
    margin-left: 5px;
}

.card-content {
    padding: 25px;
}

.card-tag {
    font-size: 12px;
    font-weight: bold;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-desc {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-gray);
    border-top: 1px solid rgba(255, 42, 95, 0.05);
    padding-top: 15px;
}

/* SEO 标签样式 */
.seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.seo-tag {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: var(--secondary);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
}

/* 专家团队 */
.expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.expert-card {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.05);
}

.expert-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 20px var(--secondary-glow);
    transform: translateY(-5px);
}

.expert-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--secondary);
    box-shadow: 0 0 15px var(--secondary-glow);
    object-fit: cover;
}

.expert-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.expert-role {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.expert-bio {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

/* 合作伙伴与FAQ */
.bquetvw {
    padding: 60px 0;
    background: rgba(21, 18, 38, 0.3);
}

.mlusbdm {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.6;
}

.m9422 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    background: var(--dark-card);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 42, 95, 0.05);
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    color: var(--primary);
    font-size: 20px;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-gray);
    font-size: 14px;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

/* 用户评价 */
.testimonial-section {
    padding: 80px 0;
    background: rgba(11, 9, 20, 0.6);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 30px;
    border-left: 4px solid var(--primary);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.user-info h4 {
    font-size: 16px;
    font-weight: 700;
}

.user-info p {
    color: var(--text-gray);
    font-size: 12px;
}

/* 页脚 */
footer {
    background-color: #05040a;
    border-top: 1px solid rgba(255, 42, 95, 0.1);
    padding: 60px 0 30px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-contact {
    color: var(--text-gray);
}

.footer-contact p {
    margin-bottom: 10px;
}

.qr-container {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.qr-box {
    text-align: center;
}

.qr-code {
    width: 100px;
    height: 100px;
    background: white;
    padding: 5px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.qr-label {
    font-size: 12px;
    color: var(--text-gray);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 42, 95, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-gray);
}

.jsuiy {
    display: flex;
    gap: 15px;
}

.dec4ew {
    width: 35px;
    height: 35px;
    background: rgba(21, 18, 38, 0.8);
    border: 1px solid rgba(255, 42, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
}

.dec4ew:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 10px var(--primary);
    transform: scale(1.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* 简易移动端隐藏 */
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-btns {
        flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
