/* ========================================
   少妇 - 主样式文件
   原创配色：深炭黑 + 炽橙 + 冷钢蓝
   ======================================== */

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

:root {
    --primary: #FF6B00;       /* 炽橙 - 品牌主色 */
    --secondary: #1A2A3A;     /* 深海蓝 - 背景色 */
    --dark: #0D1117;          /* 深炭黑 */
    --steel: #2E4057;         /* 钢铁蓝 */
    --light: #F5F7FA;         /* 浅灰白 */
    --white: #FFFFFF;
    --text: #2C3E50;
    --muted: #7F8C8D;
    --border: #E0E6ED;
    --accent: #00C9FF;        /* 冷蓝高光 */
    --gradient-hero: linear-gradient(135deg, #0D1117 0%, #1A2A3A 50%, #2E4057 100%);
    --gradient-orange: linear-gradient(135deg, #FF6B00, #FF9A44);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-hover: 0 16px 48px rgba(0,0,0,0.2);
    --radius: 12px;
    --radius-sm: 6px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', '微软雅黑', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #e55a00;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   头部导航
   ======================================== */
.site-header {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.q6ilohcn .iu3ei {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(255,107,0,0.5);
    font-style: italic;
}

.q6ilohcn a {
    color: inherit;
}

.4vy8fc ul {
    display: flex;
    gap: 8px;
    align-items: center;
}

.4vy8fc ul li a {
    color: #ccc;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.4vy8fc ul li a:hover {
    color: var(--white);
    background: var(--primary);
}

/* 汉堡菜单按钮 */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.menu-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Logo图片 */
.q6ilohcn-img {
    width: 150px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

.q6ilohcn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.q6ilohcn a {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 搜索栏 */
.swfno7 {
    background: var(--secondary);
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.v7kj9 input {
    flex: 1;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.v7kj9 input::placeholder {
    color: rgba(255,255,255,0.4);
}

.v7kj9 input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.12);
}

.v7kj9 button {
    padding: 10px 24px;
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.v7kj9 button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,107,0,0.4);
}

/* 面包屑 */
.hwi8rh5 {
    background: var(--light);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--muted);
}

.hwi8rh5 a {
    color: var(--muted);
}

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

/* 关键词标签云 */
.m05zuw {
    background: var(--secondary);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow-x: auto;
    white-space: nowrap;
}

.m05zuw .container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.m05zuw a {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255,107,0,0.12);
    color: rgba(255,255,255,0.7);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.m05zuw a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========================================
   Hero Banner
   ======================================== */
.5pmj7 {
    position: relative;
    min-height: 600px;
    background: var(--gradient-hero);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.5pmj7 .jsym8zu {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 0;
}

.rdleo2q {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.rdleo2q h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.rdleo2q h1 span {
    color: var(--primary);
    display: block;
}

.rdleo2q p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 32px;
}

.0i0xw4o {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.smpo76 {
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.smpo76-orange {
    background: var(--primary);
    color: var(--white);
}

.smpo76-outline {
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.49pgjf5 {
    text-align: center;
}

.49pgjf5 .num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
}

.49pgjf5 .label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* Hero h1样式 */
.zpf9nw4 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.6o7cw {
    color: var(--primary);
    font-style: italic;
}

.fs0zf {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
}

.s9hxbnud {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 640px;
    margin-bottom: 28px;
    line-height: 1.8;
}

.2nq7tkmu {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* ========================================
   通用区块
   ======================================== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--light);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.vweg2zbv {
    text-align: center;
    margin-bottom: 50px;
}

.vweg2zbv h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-dark .vweg2zbv h2 {
    color: var(--white);
}

.vweg2zbv h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-orange);
    margin: 12px auto 0;
    border-radius: 2px;
}

.vweg2zbv p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .vweg2zbv p {
    color: rgba(255,255,255,0.6);
}

/* ========================================
   视频卡片
   ======================================== */
.xn8fbb9v {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.video-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.ixn6rwh {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--dark);
}

.ixn6rwh img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .ixn6rwh img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: var(--transition);
}

.video-card:hover .play-btn {
    opacity: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,107,0,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: var(--transition);
}

.video-card:hover .play-icon {
    transform: scale(1);
}

.play-icon::after {
    content: '';
    border-left: 22px solid white;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 5px;
}

.vc6qrjh {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.75);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.8nvqkb {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.s9mvqd8l {
    padding: 16px;
}

.s9mvqd8l h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.9yl4ofn {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--muted);
}

.9yl4ofn span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 娱乐专区 */
.n8h09 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.sfrtj24u-large {
    grid-row: span 2;
}

.sfrtj24u {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    min-height: 200px;
}

.sfrtj24u img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.sfrtj24u:hover img {
    transform: scale(1.05);
}

.ykcfsv {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.fbzq3 {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}

.ykcfsv h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.ykcfsv p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 12px;
    line-height: 1.5;
}

/* 社区模块 */
.xp8o9 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.rpen47z0 {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.rpen47z0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.8dmwe7 {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.rpen47z0 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.rpen47z0 p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.l1zkw {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.l1zkw:hover {
    color: #e55a00;
}

/* Footer Logo行 */
.be2yg {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 40px;
}

.944cn60d {
    width: 150px;
    height: auto;
}

.gtqo3ar {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.qziwsv a {
    color: rgba(255,255,255,0.6);
}

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

/* 面包屑ol */
.hwi8rh5 ol {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hwi8rh5 ol li::after {
    content: '›';
    margin-left: 8px;
    color: var(--muted);
}

.hwi8rh5 ol li:last-child::after {
    display: none;
}

/* ========================================
   功能模块卡片
   ======================================== */
.aphdicx2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.sig9bx {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.sig9bx:hover {
    transform: translateY(-4px);
    border-top-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.3yvqm {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,107,0,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.sig9bx h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.sig9bx p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ========================================
   专家展示
   ======================================== */
.xyjoed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.xyuri {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.xyuri:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.plahneu {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.mlvp0xr {
    padding: 20px;
}

.mlvp0xr h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.elb8lf {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.r0vwb {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.yqk5q47 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.6iqdtqm {
    background: rgba(255,107,0,0.1);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
}

.5ako2m {
    display: flex;
    gap: 10px;
}

.go3hi-sm {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.go3hi-primary {
    background: var(--primary);
    color: var(--white);
}

.go3hi-primary:hover {
    background: #e55a00;
    color: var(--white);
}

.go3hi-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.go3hi-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========================================
   合作品牌Logo墙
   ======================================== */
.8w1yd5q {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.y7d39z {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 28px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--muted);
    transition: var(--transition);
    min-width: 120px;
    text-align: center;
}

.y7d39z:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.05);
}

/* ========================================
   用户评价
   ======================================== */
.k6pvz75y {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.eadirux9 {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.eadirux9:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.bdr2yuiy {
    color: #FFB800;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.23u6blu {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.2ho7tbg {
    display: flex;
    align-items: center;
    gap: 12px;
}

.0r29i0b {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.2ho7tbg-info .name {
    font-weight: 700;
    color: var(--text);
    font-size: 0.9rem;
}

.2ho7tbg-info .date {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
    background: var(--white);
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text);
    font-size: 1rem;
    border: none;
    width: 100%;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255,107,0,0.05);
}

.faq-question.active {
    background: var(--primary);
    color: var(--white);
}

.faq-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-question.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    background: var(--light);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

.faq-answer.open {
    max-height: 300px;
    padding: 16px 24px;
}

/* ========================================
   联系我们
   ======================================== */
.ke5ngg04 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.nsw7p7 h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text);
}

.1liod7iv {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.y75s6lbo {
    width: 44px;
    height: 44px;
    background: rgba(255,107,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.1liod7iv-text .label {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.1liod7iv-text .value {
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
}

.3s61ur4 {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.3s61ur4 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ========================================
   How-To加入社区
   ======================================== */
.hkii3qm9 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    counter-reset: step;
}

.yyrpymv {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: var(--transition);
}

.yyrpymv:hover {
    transform: translateY(-4px);
}

.sn1blk3 {
    width: 48px;
    height: 48px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.yyrpymv h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.yyrpymv p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ========================================
   AI赋能区块
   ======================================== */
.a9rnwao {
    background: linear-gradient(135deg, #0D1117 0%, #1A2A3A 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.a9rnwao::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,107,0,0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.5ig6ip3 {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
}

.5ig6ip3:hover {
    background: rgba(255,107,0,0.1);
    border-color: rgba(255,107,0,0.4);
    transform: translateY(-4px);
}

.5ig6ip3 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.5ig6ip3 p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.9kj6eow {
    font-size: 2rem;
    margin-bottom: 16px;
}

/* ========================================
   底部
   ======================================== */
.be0rn {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.egrru {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.qziwsv h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.qziwsv p {
    font-size: 0.875rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.obsg3tmi {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.wv1kis .3n5b9yzs {
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    text-align: center;
    color: rgba(255,255,255,0.4);
    padding: 8px;
}

.w5o2z {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.w5o2z a {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.w5o2z a:hover {
    background: var(--primary);
    color: var(--white);
}

.9zyz5 {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.9zyz5 p {
    margin-bottom: 4px;
}

/* ========================================
   按钮
   ======================================== */
.go3hi {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.go3hi-hero {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255,107,0,0.4);
}

.go3hi-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,107,0,0.5);
    color: var(--white);
}

.go3hi-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.go3hi-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

/* ========================================
   内容标签
   ======================================== */
.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tag-orange {
    background: rgba(255,107,0,0.12);
    color: var(--primary);
}

.tag-blue {
    background: rgba(0,201,255,0.12);
    color: var(--accent);
}

/* ========================================
   响应式
   ======================================== */
@media (max-width: 1024px) {
    .egrru {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vxbl5 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ke5ngg04 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .zpf9nw4 {
        font-size: 2.2rem;
    }
    
    .rdleo2q h1 {
        font-size: 2.2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .4vy8fc {
        display: none;
        width: 100%;
        order: 3;
    }
    
    .4vy8fc.open {
        display: block;
    }
    
    .4vy8fc ul {
        flex-direction: column;
        gap: 0;
        padding: 12px 0;
    }
    
    .4vy8fc ul li a {
        display: block;
        padding: 12px 20px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .site-header .container {
        flex-wrap: wrap;
        gap: 0;
    }
    
    .n8h09 {
        grid-template-columns: 1fr;
    }
    
    .sfrtj24u-large {
        grid-row: span 1;
    }
    
    .egrru {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .vxbl5 {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .xn8fbb9v {
        grid-template-columns: 1fr;
    }
    
    .xyjoed {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .rdleo2q h1 {
        font-size: 1.8rem;
    }
    
    .vweg2zbv h2 {
        font-size: 1.5rem;
    }
    
    .rdleo2q {
        padding: 50px 0;
    }
}

/* ========================================
   懒加载占位
   ======================================== */
img[data-src] {
    opacity: 0;
    transition: opacity 0.4s;
}

img.loaded {
    opacity: 1;
}

/* ========================================
   修车视频内页
   ======================================== */
.rwipq1l4 {
    background: var(--gradient-hero);
    padding: 60px 0;
    text-align: center;
}

.rwipq1l4 h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.rwipq1l4 p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

/* 分类筛选 */
.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-tab {
    padding: 8px 20px;
    border-radius: 30px;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* 视频播放模态框 */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.open {
    display: flex;
}

.modal-content {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 24px;
    max-width: 800px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
}

.02cscl {
    aspect-ratio: 16/9;
    background: #111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 1rem;
}

/* 团队页 */
.team-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
}

/* 社区页 */
.community-banner {
    background: linear-gradient(135deg, var(--primary), #e55a00);
    padding: 50px 0;
    text-align: center;
    color: var(--white);
}

.community-banner h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.community-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* 关于页 */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* 修车配件页 */
.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.part-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.part-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.part-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.part-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.part-card:hover .part-img img {
    transform: scale(1.05);
}

.part-info {
    padding: 16px;
}

.part-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.part-price {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 800;
}

.part-price span {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}

/* 文章列表 */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.article-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-hover);
}

.article-thumb {
    width: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.article-thumb img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.4s;
}

.article-item:hover .article-thumb img {
    transform: scale(1.05);
}

.article-content {
    padding: 20px;
    flex: 1;
}

.article-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.article-content p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--muted);
}

@media (max-width: 600px) {
    .article-item {
        flex-direction: column;
    }
    
    .article-thumb {
        width: 100%;
    }
}


/* ========================================
   页面Hero区（内页通用）
   ======================================== */
.rwipq1l4 {
    background: var(--gradient-hero);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.rwipq1l4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,107,0,0.15) 0%, transparent 60%);
}
.rwipq1l4 .container {
    position: relative;
    z-index: 1;
}
.rwipq1l4 h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.rwipq1l4 p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   社区功能模块
   ======================================== */
.xp8o9 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.rpen47z0 {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border-top: 3px solid transparent;
}
.rpen47z0:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary);
}
.8dmwe7 {
    font-size: 2.2rem;
    margin-bottom: 14px;
}
.rpen47z0 h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}
.rpen47z0 p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
}
.l1zkw {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
}
.l1zkw:hover {
    color: #e55a00;
}

/* ========================================
   话题列表
   ======================================== */
.aff04qrp {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}
.fqgfoqd {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}
.fqgfoqd:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-hover);
}
.dxh3uj3 {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 30px;
    width: fit-content;
}
.fqgfoqd h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}
.b8i5gc {
    display: flex;
    gap: 20px;
    font-size: 0.82rem;
    color: var(--muted);
}

/* ========================================
   发展历程时间轴
   ======================================== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}
.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    align-items: flex-start;
    position: relative;
}
.timeline-year {
    background: var(--gradient-orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.timeline-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    flex: 1;
    box-shadow: var(--shadow-card);
}
.timeline-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.timeline-content p {
    font-size: 0.875rem;
    color: var(--muted);
}

/* ========================================
   荣誉资质
   ======================================== */
.honors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.honor-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}
.honor-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.honor-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.honor-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.honor-item span {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 700;
}

/* ========================================
   关于我们布局
   ======================================== */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.about-text h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 20px;
}
.about-text h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    margin: 24px 0 12px;
}
.about-text p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 14px;
}
.about-img img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    width: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   联系页面
   ======================================== */
.ke5ngg04 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.nsw7p7 h2 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 16px;
}
.nsw7p7 > p {
    color: var(--muted);
    margin-bottom: 28px;
}
.1liod7ivs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.1liod7iv {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: var(--light);
    border-radius: var(--radius);
}
.y75s6lbo {
    font-size: 1.8rem;
    flex-shrink: 0;
}
.1liod7iv h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.1liod7iv p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}
.contact-form-wrap h2 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 8px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
@media (max-width: 768px) {
    .ke5ngg04 {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   合作伙伴
   ======================================== */
.8w1yd5q {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 32px;
}
.y7d39z {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    transition: var(--transition);
}
.y7d39z:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ========================================
   FAQ 编号样式
   ======================================== */
.faq-num {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 10px;
    vertical-align: middle;
    flex-shrink: 0;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    gap: 12px;
}
.faq-question h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}
.faq-toggle {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* ========================================
   团队专家卡片（内页版）
   ======================================== */
.xyjoed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 32px;
}
.xyuri {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.xyuri:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.plahneu {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.mlvp0xr {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mlvp0xr h3 {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text);
}
.elb8lf {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}
.expert-exp {
    font-size: 0.85rem;
    color: var(--muted);
}
.r0vwb {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
}
.yqk5q47 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 4px 0;
}
.6iqdtqm {
    background: var(--light);
    color: var(--text);
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 30px;
    border: 1px solid var(--border);
}
.5ako2m {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.go3hi-sm {
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.go3hi-primary {
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
}
.go3hi-primary:hover {
    opacity: 0.9;
    color: var(--white);
}
.go3hi-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.go3hi-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========================================
   成就数字展示
   ======================================== */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.achievement-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.achievement-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
}
.achievement-label {
    font-size: 0.9rem;
    color: var(--muted);
}
@media (max-width: 768px) {
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .xyjoed {
        grid-template-columns: 1fr;
    }
    .timeline::before {
        display: none;
    }
}

/* ========================================
   section-dark（深色背景区块）
   ======================================== */
.section-dark {
    background: var(--secondary);
    padding: 80px 0;
}
.section-dark .vweg2zbv h2 {
    color: var(--white);
}
.section-dark .vweg2zbv p {
    color: rgba(255,255,255,0.6);
}
