/* ===== 全局变量与重置 ===== */
:root {
    --primary: #0a1628;
    --primary-deep: #060d1a;
    --accent-blue: #1a3a6b;
    --accent-silver: #c0c8d4;
    --accent-gold: #d4a853;
    --text-primary: #e8ecf2;
    --text-secondary: #9aa8b8;
    --card-bg: rgba(16, 32, 64, 0.6);
    --card-border: rgba(192, 200, 212, 0.15);
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1f3c 100%);
    --gradient-accent: linear-gradient(135deg, #1a3a6b 0%, #2a5a9b 100%);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(26, 58, 107, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--accent-gold);
}

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

ul, ol {
    list-style: none;
}

/* ===== 品牌Logo过渡动画 ===== */
.c73b96b28 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.c73b96b28.hidden {
    opacity: 0;
    visibility: hidden;
}

.ca66f42ea {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-silver);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 10px rgba(192, 200, 212, 0.3); }
    50% { text-shadow: 0 0 30px rgba(192, 200, 212, 0.8), 0 0 60px rgba(26, 58, 107, 0.5); }
}

/* ===== 导航栏 ===== */
.c4ac8ee1a {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: var(--transition);
    background: transparent;
}

.c4ac8ee1a.c330725cf {
    background: rgba(6, 13, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 0.6rem 2rem;
}

.c14694a32 {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c395c9ee1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.c395c9ee1 span {
    color: var(--accent-gold);
}

.c542da5b1 {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.c542da5b1 a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding: 0.3rem 0;
}

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

.c542da5b1 a:hover::after,
.c542da5b1 a.cc51c4b79::after {
    width: 100%;
}

.c542da5b1 a:hover,
.c542da5b1 a.cc51c4b79 {
    color: var(--text-primary);
}

.c762d439b {
    background: var(--gradient-accent);
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: 500;
}

.c762d439b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

.ce87d039c span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.c0ba69120 {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ce238ba50 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
    0% { transform: scale(1.1) translateY(0); }
    100% { transform: scale(1.15) translateY(-10px); }
}

.ce95f63a0 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 13, 26, 0.4) 0%, rgba(6, 13, 26, 0.7) 70%, rgba(6, 13, 26, 0.95) 100%);
}

.cc6661a74 {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease 0.5s both;
}

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

.c7ae841bd {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(26, 58, 107, 0.4);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--accent-silver);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.c0ba69120 h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c0ba69120 p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cfcffc994 {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.c71b01f8d {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.c71b01f8d:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 58, 107, 0.4);
    color: #fff;
}

.c02e2ab45 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.c02e2ab45:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
}

/* ===== 通用Section样式 ===== */
.c91807cbf {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.c5de6229c {
    background: var(--primary-deep);
}

.c4d90b76a {
    text-align: center;
    margin-bottom: 4rem;
}

.c4d90b76a h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.ca3eca273 {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(26, 58, 107, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 168, 83, 0.2);
}

/* ===== 信任背书模块 ===== */
.ca5afedf4 {
    padding: 3rem 2rem;
    background: rgba(10, 22, 40, 0.5);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.c493ab0bb {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.c665baa6f {
    text-align: center;
    padding: 1rem;
}

.c665baa6f .c414c31a2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    display: block;
}

.c665baa6f .c10bf7d7f {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

/* ===== 核心优势/服务模块 ===== */
.c6f952ac8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.c90e37f73 {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.c90e37f73::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.c90e37f73:hover::before {
    transform: scaleX(1);
}

.c90e37f73:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: rgba(26, 58, 107, 0.4);
}

.c4166fe60 {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.c90e37f73 h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.c90e37f73 p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== 精选案例/作品展示 ===== */
.c3e3a2475 {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.c62e4c8a7 {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 1px solid var(--card-border);
    border-radius: 30px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.c62e4c8a7:hover,
.c62e4c8a7.cc51c4b79 {
    background: var(--gradient-accent);
    border-color: transparent;
    color: #fff;
}

.cb3c0e247 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.ccf13f6e7 {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    group: true;
}

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

.ccf13f6e7:hover img {
    transform: scale(1.1);
}

.c6e5611dd {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(transparent, rgba(6, 13, 26, 0.9));
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.ccf13f6e7:hover .c6e5611dd {
    transform: translateY(0);
    opacity: 1;
}

.c6e5611dd h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.c6e5611dd span {
    font-size: 0.85rem;
    color: var(--accent-gold);
}

/* ===== 痛点与解决方案模块 ===== */
.c4001a7ac {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.c9e77e706 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cddf0ce49 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.cddf0ce49:hover {
    border-color: rgba(212, 168, 83, 0.3);
    transform: translateX(5px);
}

.cae831b1b {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(220, 53, 69, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    font-size: 1.2rem;
}

.cddf0ce49.ca1539f7b .cae831b1b {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.cddf0ce49 h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.cddf0ce49 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== 轮播图组件 ===== */
.c3b7892eb {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.c57b97b26 {
    display: flex;
    transition: transform 0.5s ease;
}

.ca45bb349 {
    min-width: 100%;
    position: relative;
}

.ca45bb349 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.c6c776168 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem;
    background: linear-gradient(transparent, rgba(6, 13, 26, 0.9));
}

.c6754ceac {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.c0d91e6e5 {
    width: 50px;
    height: 50px;
    background: rgba(6, 13, 26, 0.7);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    pointer-events: all;
    transition: var(--transition);
    font-size: 1.2rem;
}

.c0d91e6e5:hover {
    background: var(--accent-blue);
}

/* ===== 互动式服务流程 ===== */
.c78083ebb {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

.c78083ebb::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 2px;
    background: var(--card-border);
}

.c955ab972 {
    position: relative;
    text-align: center;
    flex: 1;
    padding: 0 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.c955ab972:hover {
    transform: translateY(-5px);
}

.c5c10a5fb {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    border: 3px solid var(--primary);
}

.c955ab972 h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.c955ab972 p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===== 智能报价工具 ===== */
.c806a4515 {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.cd07c4aea {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.c017e812a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.c017e812a.c021a0b56 {
    grid-column: 1 / -1;
}

.c017e812a label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.c017e812a input,
.c017e812a select,
.c017e812a textarea {
    padding: 0.8rem 1rem;
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: var(--font-main);
}

.c017e812a input:focus,
.c017e812a select:focus,
.c017e812a textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.2);
}

.c017e812a textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== 转化引导模块 ===== */
.c1d38ec7a {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.c1d38ec7a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 58, 107, 0.1) 0%, transparent 70%);
    animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.c6edf7fb8 {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.c6edf7fb8 h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

.c6edf7fb8 p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ===== Footer ===== */
.c0a4100d8 {
    background: var(--primary-deep);
    border-top: 1px solid var(--card-border);
    padding: 4rem 2rem 2rem;
}

.c0700258b {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.c1a45d159 p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.8;
}

.c639ac537 h4 {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.c639ac537 a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.3rem 0;
}

.c639ac537 a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.c67bdeb19 {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===== 动画效果 ===== */
.cf0bf50d7 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cf0bf50d7.visible {
    opacity: 1;
    transform: translateY(0);
}

.cba9113e4 {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cba9113e4.visible {
    opacity: 1;
    transform: translateX(0);
}

.c09df587e {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.c09df587e.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== 数据递增动画 ===== */
.c501df92d {
    display: inline-block;
}

/* ===== 内页通用样式 ===== */
.c6672b605 {
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.c6672b605::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.webp') center/cover;
    opacity: 0.2;
}

.c23300394 {
    position: relative;
    z-index: 2;
}

.c6672b605 h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.ca766298c {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.ca766298c a {
    color: var(--accent-gold);
}

/* ===== 列表页样式 ===== */
.c202bcd8b {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.c199a7409 {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

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

.c22ca8e57 {
    height: 220px;
    overflow: hidden;
}

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

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

.ccaec5b92 {
    padding: 1.5rem;
}

.ccaec5b92 h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.ccaec5b92 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.c19c64faf {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===== 表单成功提示 ===== */
.c56e84b0a {
    display: none;
    text-align: center;
    padding: 3rem;
}

.c56e84b0a.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.c56e84b0a .c476ec477 {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1024px) {
    .c4001a7ac {
        grid-template-columns: 1fr;
    }

    .c0700258b {
        grid-template-columns: 1fr 1fr;
    }

    .c78083ebb {
        flex-direction: column;
        gap: 2rem;
    }

    .c78083ebb::before {
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .c542da5b1 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(6, 13, 26, 0.98);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        backdrop-filter: blur(20px);
    }

    .c542da5b1.cc51c4b79 {
        right: 0;
    }

    .ce87d039c {
        display: flex;
    }

    .c0ba69120 h1 {
        font-size: 2rem;
    }

    .c0ba69120 p {
        font-size: 1rem;
    }

    .c91807cbf {
        padding: 4rem 1.5rem;
    }

    .c6f952ac8 {
        grid-template-columns: 1fr;
    }

    .cb3c0e247 {
        grid-template-columns: 1fr;
    }

    .cd07c4aea {
        grid-template-columns: 1fr;
    }

    .c0700258b {
        grid-template-columns: 1fr;
    }

    .c67bdeb19 {
        flex-direction: column;
        text-align: center;
    }

    .c493ab0bb {
        gap: 1.5rem;
    }

    .c665baa6f .c414c31a2 {
        font-size: 2rem;
    }

    .ca45bb349 img {
        height: 300px;
    }

    .c202bcd8b {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cfcffc994 {
        flex-direction: column;
        align-items: center;
    }

    .c71b01f8d, .c02e2ab45 {
        width: 100%;
        justify-content: center;
    }
}

/* ===== 视差效果 ===== */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    will-change: transform;
}

/* ===== 详情页样式 ===== */
.detail-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.detail-content h2 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.detail-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 2;
}

.detail-content img {
    border-radius: var(--radius);
    margin: 2rem 0;
}

/* ===== 落地页专用 ===== */
.ca50c76c9 {
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.c775759b6 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c1212922a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(6, 13, 26, 0.9) 0%, rgba(6, 13, 26, 0.4) 100%);
}

.c5ac2c72d {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 4rem;
}

.c5ac2c72d h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.c5ac2c72d p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ===== 价格标签 ===== */
.ca2efd07b {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.ca2efd07b .c29da1dca {
    font-size: 1rem;
    vertical-align: top;
}

.ca2efd07b .cfd96aa8b {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-left: 0.5rem;
}
