.elementor-8891 .elementor-element.elementor-element-65a41d8b{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );line-height:var( --e-global-typography-text-line-height );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-8891 .elementor-element.elementor-element-d251d87{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}/* Start custom CSS for text-editor, class: .elementor-element-2da70dd *//* --- 全局设置 --- */
:root {
    --primary-color: #0071e3; /* 强调色，可根据品牌色调整 */
    --text-dark: #1d1d1f;
    --text-light: #6e6e73;
    --bg-light: #f5f5f7;
    --bg-dark: #111111;
    --titanium-grey: #8a8d91;
    --section-spacing: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    padding-top: 60px; /* 为固定导航栏留出空间 */
}

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1em;
}

p {
    margin-bottom: 1em;
    color: var(--text-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- 工具类 --- */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.box-narrow {
    max-width: 600px;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.v-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: #999;
}

.text-white {
    color: #fff;
}

.text-white p {
    color: #ccc;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.section-padding {
    padding: var(--section-spacing) 0;
}

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* --- 按钮组件 --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #005bb5;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* --- 导航栏 --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    z-index: 100;
    height: 60px;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* --- 1. 产品首屏 (Product Intro) --- */
.product-intro {
    padding: 60px 0;
}

.eyebrow-text {
    display: block;
    font-weight: 600;
    color: var(--titanium-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.highlights-list li {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.price-box {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

/* 价格样式已移除 */

.shipping-info {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.main-image {
    border-radius: 16px;
    background-color: var(--bg-light); /* 图片加载前的占位背景 */
}

/* --- 2. 功能细节 (Features) --- */
.feature-image img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* --- 3. 生活方式 (Lifestyle) --- */
.section-subtitle {
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.lifestyle-image {
    border-radius: 16px;
    width: 100%;
}

/* --- 4. 技术规格 (Specs) --- */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.spec-table th, .spec-table td {
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.spec-table th {
    font-weight: 600;
    color: #fff;
    width: 40%;
}

.spec-table td {
    color: #ccc;
}

/* --- 页脚 --- */
.site-footer {
    padding: 30px 0;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- 响应式设计 (Mobile) --- */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-intro {
        padding-top: 30px;
    }

    /* 在手机上，功能区文字在图片上方 */
    .reverse-on-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    .reverse-on-mobile .feature-image {
        margin-bottom: 20px;
    }
    
    .spec-table th, .spec-table td {
        padding: 10px 0;
        display: block;
        width: 100%;
        border: none;
    }
    
    .spec-table th {
        color: var(--titanium-grey);
        padding-bottom: 5px;
    }
    .spec-table td {
        padding-top: 0;
        margin-bottom: 15px;
        border-bottom: 1px solid #333;
    }
}

/* --- Fade Up 动画定义 --- */

/* 1. 定义关键帧动画 */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px); /* 初始状态：透明度为0，向下偏移30px */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* 结束状态：透明度为1，位置复原 */
    }
}

/* 2. 定义应用动画的类 */
.fade-up-element {
    opacity: 0; /* 初始状态不可见，防止闪烁 */
    /* 应用动画：名称为 fadeUp，持续时间 0.8s，缓动函数为 ease-out，并且只播放一次并停留在结束状态 */
    animation: fadeUp 0.8s ease-out forwards;
}

/* 3. (可选) 如果你希望在手机上禁用动画以提高性能，可以取消下面代码的注释 */
/*
@media (max-width: 768px) {
    .fade-up-element {
        animation: none;
        opacity: 1;
    }
}
*//* End custom CSS */