/* 全局重置与基础样式 */
:root {
    --primary-color: #00ffcc;
    --secondary-color: #9900ff;
    --bg-color: #0f0f1a;
    --text-color: #e0e0e0;
    --border-color: #333344;
    --header-bg: rgba(15, 15, 26, 0.9);
    --font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

h1, h2, h3, h4, h5, h6 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

/* 头部导航 */
.header {
    background-color: var(--header-bg);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.khm6lw {
    height: 40px;
    width: 40px;
}

.e9zgs5 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 0 5px var(--primary-color);
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

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

.nav a:hover::after {
    width: 100%;
}

.veq2jmd {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.veq2jmd span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
}

/* 搜索框区域 */
.0xswn {
    margin-top: 70px;
    background-color: #1a1a2e;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.np00vk {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    overflow: hidden;
}

.np00vk input {
    flex: 1;
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.np00vk button {
    padding: 0 25px;
    background-color: var(--primary-color);
    color: #000;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.np00vk button:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* 面包屑导航 */
.breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #888;
}

.breadcrumb a {
    color: #aaa;
}

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

.breadcrumb span {
    color: var(--primary-color);
}

/* 首页Banner */
.artt7i {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artt7i-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.artt7i-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px;
    background: rgba(0,0,0,0.6);
    border-radius: 15px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0,255,204,0.3);
}

.artt7i-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--primary-color);
}

.artt7i-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.yv2hfyl {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(153,0,255,0.5);
}

.yv2hfyl:hover {
    color: #fff;
    box-shadow: 0 0 25px rgba(0,255,204,0.8);
    transform: translateY(-2px);
}

/* 模块通用样式 */
.section {
    padding: 60px 0;
}

.8w98c {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.8w98c::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* 网格布局 */
.q14guzv {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.utb1a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dk90p1gt {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* 卡片样式 */
.card {
    background-color: #1a1a2e;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,255,204,0.2);
    border-color: var(--primary-color);
}

.8jqwlk {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.0kdb15 {
    padding: 20px;
}

.nnu6h8 {
    font-size: 20px;
    margin-bottom: 10px;
}

.e86mys {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 15px;
}

/* 视频卡片特效 */
.bmf30f {
    position: relative;
    overflow: hidden;
}

.4unk4vm9 {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #000;
}

.fjwy19xq .4unk4vm9 {
    height: 350px;
}

.4unk4vm9 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hf1cdwo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.bmf30f:hover .hf1cdwo {
    opacity: 1;
}

.bmf30f video:hover {
    cursor: pointer;
}

.d26kjx3 {
    width: 60px;
    height: 60px;
    background-color: rgba(0,255,204,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.d26kjx3::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
}

.seg9s7w8 {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    margin-top: 10px;
}

/* 专家团队样式 */
.5df8sm {
    text-align: center;
    background-color: transparent;
    border: none;
}

.5df8sm:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.uzqzb {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
    padding: 5px;
    object-fit: cover;
}

.tjpr9l8 {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.i8wkyn90 {
    margin-top: 15px;
}

.i8wkyn90 a {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    font-size: 12px;
    margin: 0 5px;
}

.i8wkyn90 a:hover {
    background-color: var(--primary-color);
    color: #000;
}

/* FAQ样式 */
.ilroc {
    max-width: 800px;
    margin: 0 auto;
}

.w9cmw6 {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.wy40y {
    padding: 15px 20px;
    background-color: #1a1a2e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

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

.w9cmw6.active .wy40y::after {
    content: '-';
}

.z83r9u {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(26,26,46,0.5);
    color: #ccc;
}

.w9cmw6.active .z83r9u {
    padding: 15px 20px;
    max-height: 200px;
}

/* 评论区样式 */
.nbm8r {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.jnkhgeo {
    background-color: #1a1a2e;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

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

.5k1n27 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-color);
}

.cf675 {
    font-weight: bold;
}

.v3sqa5v {
    font-size: 12px;
    color: #888;
}

.68ywbmq {
    font-style: italic;
    color: #ddd;
}

/* 底部样式 */
.footer {
    background-color: #0a0a10;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.xy06f {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.5afd8 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.4y7y48sf p {
    margin-bottom: 10px;
    color: #aaa;
}

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

.vb9yrij a {
    color: #aaa;
}

.vb9yrij a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.j8pfe {
    display: flex;
    gap: 20px;
}

.sac1epcw {
    text-align: center;
}

.sac1epcw img {
    width: 100px;
    height: 100px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 10px;
}

.sac1epcw p {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 5px;
}

.sac1epcw span {
    font-size: 14px;
    color: var(--primary-color);
}

.haipfa {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    margin-bottom: 20px;
}

.a15k0nc {
    margin-right: 15px;
    color: #aaa;
}

.nwyev {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #222;
    border-radius: 50%;
    margin: 0 5px;
    color: #fff;
    font-size: 12px;
}

.nwyev:hover {
    background-color: var(--primary-color);
    color: #000;
}

.ppk1u7ks {
    text-align: center;
    color: #666;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* MCP小部件样式 */
.wlg9l3h {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.3y40rc {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.3y40rc:hover {
    transform: scale(1.1);
}

.hophi10y {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background-color: #1a1a2e;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: none;
    flex-direction: column;
}

.wlg9l3h.open .hophi10y {
    display: flex;
}

.g8ixip {
    padding: 15px;
    background-color: rgba(0,255,204,0.1);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.iy2tg {
    cursor: pointer;
    font-size: 20px;
    color: #aaa;
}

.iy2tg:hover {
    color: #fff;
}

.7cc4fm {
    height: 250px;
    padding: 15px;
    overflow-y: auto;
}

.c16l73 {
    background-color: #2a2a3e;
    padding: 10px 15px;
    border-radius: 15px;
    border-bottom-left-radius: 0;
    margin-bottom: 15px;
    font-size: 14px;
    display: inline-block;
    max-width: 90%;
}

.znozxkg0 {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
}

.znozxkg0 input {
    flex: 1;
    padding: 8px 10px;
    background-color: #0f0f1a;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: #fff;
}

.znozxkg0 button {
    padding: 0 15px;
    background-color: #444;
    color: #888;
    border: none;
    border-radius: 5px;
    cursor: not-allowed;
}

/* 内页内容区样式 */
.e9f2g {
    background-color: #1a1a2e;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.e9f2g h2 {
    color: var(--primary-color);
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 10px;
    margin-top: 30px;
}

.e9f2g h2:first-child {
    margin-top: 0;
}

.e9f2g p {
    margin-bottom: 15px;
    color: #ccc;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .dk90p1gt {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .xy06f {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--header-bg);
        padding: 20px;
        border-top: 1px solid var(--border-color);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .veq2jmd {
        display: flex;
    }
    
    .utb1a {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .artt7i-content h1 {
        font-size: 32px;
    }
    
    .nbm8r {
        grid-template-columns: 1fr;
    }
    
    .ppk1u7ks {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .q14guzv, .dk90p1gt {
        grid-template-columns: 1fr;
    }
    
    .artt7i {
        height: 400px;
    }
}
