@charset "utf-8";

/* ========== 变量定义 ========== */
:root {
    --brown: #8B4513; 
    --red: #d32f2f; 
    --gold: #d4af37; 
    --gold-light: #ffe066;
    --dark: #2c2c2c; 
    --med: #5a5a5a; 
    --light: #f8f5f0; 
    --green: #4caf50;
    --blue: #2196f3; 
    --orange: #ff9800; 
    --purple: #9c27b0;
    --success: #43a047; 
    --danger: #c62828; 
    --warning: #ff9800;
    --shadow-light: rgba(0, 0, 0, 0.08); 
    --shadow-medium: rgba(0, 0, 0, 0.12);
}

/* ========== 基础重置 ========== */
* { 
    margin: 0; 
    padding: 0; 
    border: 0; 
    box-sizing: border-box;
    list-style: none;
    -webkit-text-size-adjust: none !important;
    text-size-adjust: none !important;
    font-size-adjust: none !important;
}

/* ========== 动画定义 ========== */
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes warning-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}
@keyframes breathingEffect {
    0% {
        transform: scale(1); /* 初始状态，不放大或缩小 */
    }
    50% {
        transform: scale(1.05); /* 中间状态，放大到原来的1.05倍 */
    }
    100% {
        transform: scale(1); /* 最终状态，还原成原来的大小 */
    }
}
@keyframes pulseGlow {
    0% { box-shadow: 0 20px 40px rgba(215, 38, 38, 0.4); }
    100% { box-shadow: 0 20px 50px rgba(215, 38, 38, 0.7), 0 0 20px rgba(255,100,100,0.5); }
}

html { 
    -webkit-text-size-adjust: 100%; 
    -webkit-tap-highlight-color: transparent; 

}
body { 
    color: var(--dark); 
    max-width: 750px;
    margin: 0 auto; 
    background: var(--light); 
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px !important; /* 设置基准大小 */
    line-height: 1.6;
}
/* 为了避免图片加载失败时的占位样式 */
img {
    pointer-events: none;  /* 让图标不干扰点击事件*/
}
/* ========== 头部样式 ========== */
.header { 
    width: 100%; 
    background: linear-gradient(135deg, var(--brown) 0%, #6b340f 100%);
}

.official { 
    width: 100%; 
    height: 50px; 
    line-height: 50px; 
    text-align: center; 
    background-color: #f6ffed !important;
    color: var(--brown); 
    font-weight: 600; 
    font-size: 15px; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.banner { 
    width: 100%; 
    display: block; 
}

/* ========== 通用板块头样式 ========== */
.section { 
    padding: 0 0 50px; 
    animation: fadeInUp 0.6s ease-out forwards;
    /*圆角*/
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
    margin-top: -20px;
}

.section-head { 
    min-height: 180px; 
    text-align: center; 
    color: white; 
    padding: 25px 0; 
    position: relative; 
    margin-bottom: 30px;

}

.section-head::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" opacity="0.05"><path d="M50,0 C77.6,0 100,22.4 100,50 C100,77.6 77.6,100 50,100 C22.4,100 0,77.6 0,50 C0,22.4 22.4,0 50,0 Z" fill="%23fff"/><path d="M50,30 C62.2,30 72,39.8 72,52 C72,64.2 62.2,74 50,74 C37.8,74 28,64.2 28,52 C28,39.8 37.8,30 50,30 Z" fill="%238B4513" opacity="0.3"/></svg>');
    background-size: 150px;
}

.section-head::after {
    content: '';
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid;
    z-index: 10;
}

/* 大标题 */
.section-theme { 
    font-size: 72px; 
    letter-spacing: 8px; 
    font-weight: 800; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 
    margin-bottom: 10px; 
    position: relative;
    line-height: 1;
}

/* 小标题 */
.section-describe { 
    font-size: 21px; 
    font-weight: 600; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); 
    position: relative;
    padding: 0 10px;
    line-height: 1.3;
}

.athlete-tag {
    background: #d43c33;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
}

/* 背景颜色定义 */
.b1 { background: linear-gradient(135deg, #1976d2, #2196f3); }
.b1::after { border-top-color: #2196f3; }

.b2 { background: linear-gradient(135deg, var(--gold), #ffb74d); }
.b2::after { border-top-color: #ffb74d; }

.b3 { background: linear-gradient(135deg, #1976d2, #2196f3); }
.b3::after { border-top-color: #1976d2; }

.b4 { background: linear-gradient(135deg, #c62828, #d32f2f); }
.b4::after { border-top-color: #c62828; }

.b5 { background: linear-gradient(135deg, var(--purple), #ba68c8); }
.b5::after { border-top-color: var(--purple); }

.b6 { background: linear-gradient(135deg, var(--brown), #a0522d); }
.b6::after { border-top-color: var(--brown); }

.b7 { background: linear-gradient(135deg, #4a148c, #7b1fa2); }
.b7::after { border-top-color: #4a148c; }

.b8 { background: linear-gradient(135deg, var(--brown), #8d6e63); }
.b8::after { border-top-color: var(--brown); }

.b9 { background: linear-gradient(135deg, #00838f, #0097a7); }
.b9::after { border-top-color: #00838f; }

.b10 { background: linear-gradient(135deg, #558b2f, #7cb342); }
.b10::after { border-top-color: #558b2f; }


.b11 { background: linear-gradient(135deg, #5d4037, #795548); }
.b11::after { border-top-color: #5d4037; }

.b12 { background: linear-gradient(135deg, #c2185b, #e91e63); }
.b12::after { border-top-color: #c2185b; }

.b13 { background: linear-gradient(135deg, #455a64, #607d8b); }
.b13::after { border-top-color: #455a64; }

.b14 { background: linear-gradient(135deg, var(--green), #66bb6a); }
.b14::after { border-top-color: var(--green); }

.b15 { background: linear-gradient(135deg, var(--brown), var(--gold)); }
.b15::after { border-top-color: var(--brown); }

.b16 { background: linear-gradient(135deg, var(--gold), #ffd54f); }
.b16::after { border-top-color: var(--gold); }

.b17 { background: linear-gradient(135deg, var(--blue), #42a5f5); }
.b17::after { border-top-color: var(--blue); }

.b18 { background: linear-gradient(135deg, var(--blue), #64b5f6); }
.b18::after { border-top-color: var(--blue); }

.b19 { background: linear-gradient(135deg, #43a047, #66bb6a); }
.b19::after { border-top-color: #43a047; }

.b20 { background: linear-gradient(135deg, var(--brown), #ff7043); }
.b20::after { border-top-color: var(--brown); }

.b21 { background: linear-gradient(135deg, var(--brown), #3e2723); }
.b21::after { border-top-color: var(--brown); }











/* ========== 1. 危机统计板块 ========== */
.stats-container {
    display: flex; 
    justify-content: space-around; 
    flex-wrap: wrap; 
    gap: 20px;
    padding: 10px; 
    margin: 0 0 30px;
    animation: fadeInUp 0.7s ease-out 0.1s both;
}

.stats-card {
    flex: 1; 
    min-width: 200px; 
    background: white; 
    border-radius: 15px;
    padding: 25px 20px; 
    text-align: center; 
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.stats-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(33, 150, 243, 0.2);
    border-color: rgba(33, 150, 243, 0.3);
}

.stats-num { 
    font-size: 48px; 
    font-weight: 800; 
    color: #1976d2; 
    margin-bottom: 10px;
    line-height: 1;
}

.stats-label { 
    color: var(--dark); 
    font-size: 16px; 
    font-weight: 600; 
    line-height: 1.4;
}

.desc-box { 
    padding: 20px 10px; 
    text-align: center; 
    background: #f0f8ff; 
    border-radius: 15px; 
    margin: 0 10px;
    border-left: 5px solid #1976d2;
}

.desc-title { 
    color: #1976d2; 
    margin-bottom: 20px; 
    font-size: 24px; 
    font-weight: 700;
}

.desc-text { 
    color: var(--med); 
    margin-bottom: 15px; 
    line-height: 1.6;
    font-size: 16px;
}

.desc-highlight {
    color: var(--red); 
    font-weight: 700; 
    font-size: 20px;
    padding: 15px; 
    border-radius: 10px;
    background: #fff3f3;
    border: 2px dashed var(--red);
    margin-top: 15px;
    display: inline-block;
}



/* ========== 3. 自查症状板块 ========== */

.symptom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 0;
    margin: 0 0 30px;
}

.symptom-item {
    position: relative;
    overflow: hidden;
    border: 5px solid white;
    transition: transform 0.3s ease;
}

.symptom-item img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.symptom-item:hover img{
    filter: brightness(0.6);
}

.symptom-text {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(139, 69, 19, 0.9), rgba(139, 69, 19, 0.7));
    color: white;
    text-align: center;
    margin: 0;
    letter-spacing: 1px;
}

/* 警告框样式 */


.warning-text {
    color: var(--red);
    font-weight: bold;
    padding: 20px 20px;
    background: #fff3f3;
    border-radius: 10px;
    border: dashed var(--red);
    /*border-left: 5px solid var(--red);*/
    text-align: left;
    line-height: 1.6;
    font-size: 17px;
    margin: 0 10px;
    animation: warning-pulse 2s ease-in-out infinite;
}




/* ========== 4. 隐患后果板块 ========== */
.consequence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 0;
    margin: 0 0 30px;
}

.consequence-item {
    position: relative;
    overflow: hidden;
    border: 5px solid white;
    transition: transform 0.3s ease;
}



.consequence-item img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.consequence-item:hover img{
    filter: brightness(0.6);
}
.consequence-text {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 17px;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(198, 40, 40, 0.9), rgba(211, 47, 47, 0.7));
    color: white;
    text-align: center;
    margin: 0;
    letter-spacing: 1px;
}






/* ========== 破局 ========== */
.misunderstanding-list {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.misunderstanding-item {
    background: white;
    border-radius: 15px;
    padding: 20px 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.misunderstanding-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: all 0.3s ease;
}

.misunderstanding-item.wrong-view::before {
    background: var(--red);
}

.misunderstanding-item.right-view::before {
    background: var(--green);
}

.misunderstanding-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.misunderstanding-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 5px;
}

.misunderstanding-content {
    flex: 1;
}

.misunderstanding-title {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}

.misunderstanding-desc {
    color: var(--med);
    line-height: 1.6;
    font-size: 16px;
}




/* ========== 2. 希望板块 ========== */

.solution-hero {
    text-align: center;
    padding: 10px;
    margin: 0 10px 30px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 235, 59, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.solution-title {
    color: var(--brown);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 800;
}

.solution-intro {
    color: var(--med);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.flow-steps {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0 10px 30px;
    position: relative;
}

.flow-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent, var(--gold));
    z-index: 0;
}

.step-item {
    flex: 1;
    min-width: 200px;
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.step-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), #ffb74d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.step-title {
    color: var(--brown);
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
}

.step-desc {
    color: var(--med);
    font-size: 16px;
    line-height: 1.5;
}

.solution-desc {
    padding: 20px;
    text-align: center;
    color: var(--med);
    font-size: 17px;
    margin: 0 10px 30px;
    background: #fff9e6;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.solution-desc b {
    color: var(--brown);
    font-weight: 700;
}


/* 早期使用者证言 */
.early-adopter {
    background: linear-gradient(135deg, #fff3e0, #ffecb3);
    border-radius: 15px;
    padding: 30px;
    margin: 0 10px;
    border-left: 5px solid var(--gold);
    position: relative;
}

.early-adopter::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 80px;
    color: rgba(212, 175, 55, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.adopter-quote {
    color: var(--dark);
    font-size: 17px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.adopter-info {
    color: var(--brown);
    font-weight: 600;
    display: block;
    margin-top: 10px;
    font-size: 15px;
}




/* ========== 6. 产品介绍板块（深色背景） ========== */
.product {
    background: #0f0b23;
    color: white;
}

.product-main {
    padding: 0 10px 30px;
}

.product-title {
    text-align: center;
    height: 80px;
    line-height: 80px;
    font-size: 20px;
    color: var(--gold);
    font-weight: 700;
    background: rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 0 10px;
    border-radius: 8px 8px 0 0;
    letter-spacing: 1px;
}

.product-image-container {
    padding: 25px;
    position: relative;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 0 0 15px 15px;
}

.product-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-image-container::before,
.product-image-container::after {
    content: '';
    width: 60px;
    height: 60px;
    display: block;
    position: absolute;
    border: 2px solid var(--gold);
}

.product-image-container::before {
    border-right: none;
    border-bottom: none;
    top: 15px;
    left: 15px;
}

.product-image-container::after {
    border-left: none;
    border-top: none;
    bottom: 15px;
    right: 15px;
}

.product-tags {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.product-tag {
    background: linear-gradient(135deg, var(--brown), var(--gold));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-container {
    padding: 10px;
    background: #fff9e6;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px solid var(--gold);
}

video {
    width: 100%;
    border-radius: 10px;
    background: black;
}

.video-info {
    text-align: center;
    padding: 20px 0 0;
}

.video-title {
    color: var(--brown);
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
}

.video-desc {
    color: var(--med);
    font-size: 16px;
    line-height: 1.5;
}

/* ========== 本草板块 ========== */

.ingredient-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 0 0 30px;
    padding: 25px 10px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.ingredient-item {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    list-style: none;
}

.ingredient-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.ingredient-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.ingredient-name {
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(139, 69, 19, 0.8));
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.ingredient-detail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    font-size: 13px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ingredient-item:hover .ingredient-detail {
    opacity: 1;
}

.ingredient-note {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin: 25px 10px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ========== 核心功效板块 ========== */

.efficacy-header {
    text-align: center;
    margin-bottom: 35px;
    padding: 35px 25px 0 25px;
}

.efficacy-title {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.efficacy-subtitle {
    font-size: 18px;
    color: var(--gold-light);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.effect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 60px;
    padding: 0 10px;
}

.effect-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: white;
    text-align: center;
    padding: 15px 10px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    list-style: none;
}

.effect-item:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.effect-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.effect-item:hover::before {
    opacity: 1;
}





/* ========== 历程板块 ========== */
.timeline-container {
    position: relative;
    padding: 40px 10px 40px 10px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 65px;
    width: 4px;
    background: linear-gradient(to bottom, var(--brown), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 100px;
    list-style: none;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 45px;
    background: linear-gradient(135deg, var(--brown), #0097a7);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 17px;
    box-shadow: 0 5px 15px rgba(0, 131, 143, 0.4);
    z-index: 2;
}

.timeline-content {
    background: white;
    border-radius: 15px;
    padding: 20px 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--brown);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(5px);
}

.timeline-title {
    color: var(--brown);
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
}

.timeline-desc {
    color: var(--med);
    line-height: 1.6;
    font-size: 16px;
}


/* ========== 品牌实力板块 ========== */

.brand-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 10px;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 0 10px 30px;
    border: 1px solid rgba(139, 69, 19, 0.1);
}
.brand-stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}
.brand-stat-num {
    font-size: 60px;
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.brand-stat-label {
    color: var(--med);
    font-size: 17px;
    font-weight: 600;
}





.certificate-wall {
    padding: 40px 10px;
    background: white;
    border-radius: 15px;
    margin: 0 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.1);
}
.certificate-wall h3 {
    text-align: center;
    color: var(--brown);
    margin-bottom: 35px;
    font-size: 26px;
    font-weight: 700;
}
.certificate-images {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 25px;
}
.certificate-image {
    flex: 1;
    min-width: 200px;
    text-align: center;
}
.certificate-image img {
    width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.certificate-image img:hover {
    transform: translateY(-5px);
}
.certificate-image p {
    color: var(--med);
    font-weight: 600;
    font-size: 16px;
}

.production-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    padding: 10px;
    margin-top: 30px;
}

.gallery-item {
    text-align: center;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    list-style: none;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    object-fit: cover;
    border-bottom: 2px solid var(--gold);
}

.gallery-caption {
    padding: 20px;
    color: var(--brown);
    font-weight: 600;
    font-size: 17px;
    margin: 0;
}

/* ========== 品牌故事板块 ========== */

.story-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 10px;
}

.story-intro h3 {
    color: var(--brown);
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.4;
}

.story-intro p {
    color: var(--med);
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.story-timeline {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin: 50px 0;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 10px;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--brown), transparent, var(--brown));
    z-index: 0;
}

.story-timeline-item {
    text-align: center;
    z-index: 1;
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
}

.story-timeline-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--brown), var(--gold));
    border-radius: 50%;
    box-shadow: 0 0 0 8px #f8f5f0;
}

.story-timeline-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.story-year {
    font-size: 42px;
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.story-timeline-item h4 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.story-timeline-item p {
    color: var(--med);
    font-size: 16px;
    line-height: 1.6;
}

.brand-values {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    padding: 0 10px 30px;
}

.brand-values .value-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.brand-values .value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brown), var(--gold));
}

.brand-values .value-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.brand-values .value-item h4 {
    color: var(--brown);
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.brand-values .value-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--brown), var(--gold));
    border-radius: 2px;
}

.brand-values .value-item p {
    color: var(--med);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}



/* ========== 专家推荐板块 ========== */

.expert-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 10px 30px;
}
.expert-card {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 25px 10px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(93, 64, 55, 0.1);
    border: 1px solid rgba(93, 64, 55, 0.1);
}
.expert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(93, 64, 55, 0.2);
    border-color: rgba(93, 64, 55, 0.2);
}
.expert-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--brown);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.expert-info {
    flex: 1;
}
.expert-info h4 {
    color: var(--brown);
    margin-bottom: 8px;
    font-size: 21px;
    font-weight: 700;
}
.expert-title {
    color: var(--med);
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}
.expert-quote {
    font-style: italic;
    color: var(--med);
    border-left: 3px solid var(--brown);
    padding-left: 20px;
    margin-top: 15px;
    line-height: 1.7;
    font-size: 16px;
}
.expert-video-box {
    padding: 10px;
    background: #fff9e6;
    border-radius: 15px;
    margin: 0 10px 30px;
    border: 2px solid var(--gold);
}
.expert-video-info {
    text-align: center;
    padding: 20px 0 0;
}
.expert-video-info h3 {
    color: var(--brown);
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
}
.expert-video-info p {
    color: var(--med);
    font-size: 16px;
    line-height: 1.5;
}




/* ========== 媒体报道板块 ========== */

/* 媒体 Logo 网格布局 */
.media-logos {
    display: grid;
    /*grid-template-columns: repeat(3, 1fr);*/
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 40px 10px;
}

.media-logo {
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    list-style: none;
}

.media-logo img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.media-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}
.media-logo p {
    margin-top: 15px;
    color: var(--med);
    font-weight: 600;
    font-size: 16px;
}
.media-quote {
    padding: 20px 15px;
    background: white;
    border-radius: 15px;
    margin: 0 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--red);
}
.media-quote blockquote {
    font-style: italic;
    font-size: 18px;
    color: var(--dark);
    border-left: none;
    padding-left: 0;
    margin: 0;
    line-height: 1.7;
}
.media-quote footer {
    margin-top: 20px;
    color: var(--med);
    text-align: right;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
}







/* ========== 11. 客户见证板块 ========== */

.testimonial-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 10px 30px;
    padding: 15px 10px;
    background: #f8f9fa;
    border-radius: 12px;
}
.category-btn {
    padding: 10px 24px;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--med);
    border: 1px solid #e0e0e0;
    font-size: 15px;
}
.category-btn.active {
    background: linear-gradient(135deg, var(--brown), var(--gold));
    color: white;
    transform: scale(1.05);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}
.category-btn:hover {
    background: linear-gradient(135deg, var(--brown), var(--gold));
    color: white;
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 10px;
    padding: 0;
}
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 69, 19, 0.1);
    overflow: hidden;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 69, 19, 0.2);
}
.testimonial-user {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.user-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brown), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}
.user-detail h4 {
    margin: 0;
    color: var(--brown);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
}
.user-detail span {
    color: var(--med);
    font-size: 15px;
    display: block;
    margin-top: 5px;
    font-weight: 500;
}
.testimonial-content {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-style: italic;
    border-left: 3px solid var(--brown);
}
.testimonial-content p {
    color: var(--med);
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}
.testimonial-meta {
    font-size: 14px;
    color: var(--med);
    font-weight: 500;
    padding: 8px 15px;
    background: rgba(139, 69, 19, 0.05);
    border-radius: 20px;
    display: inline-block;
}



.video-box {
    padding: 10px;
    background: #fff9e6;
    border-radius: 15px;
    margin: 10px 10px 30px 10px;
    border: 2px solid var(--gold);
}

.comparison-gallery {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 0 10px 30px;
    border: 1px solid rgba(139, 69, 19, 0.1);
}
.product-comparison img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 25px;
}
.comparison-images {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    padding: 10px;
    background: white;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.comparison-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
}
.comparison-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--gold);
}
.comparison-box p {
    margin-top: 15px;
    font-weight: 600;
    color: var(--brown);
    font-size: 18px;
}
.comparison-info {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.comparison-info h4 {
    color: var(--brown);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}
.comparison-info p {
    color: var(--med);
    font-size: 17px;
    line-height: 1.6;
}
.feedback-images {
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.feedback-images img {
    width: 100%;
    transition: transform 0.3s ease;
}


/* ========== 12. 价值对比板块 ========== */
.table-section {
    background: linear-gradient(135deg, #3a2513, #5a3814);
    color: white;
    position: relative;
}
.table-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="120" height="120" opacity="0.03"><path d="M0,60 C20,40 40,20 60,0 C80,20 100,40 120,60 C100,80 80,100 60,120 C40,100 20,80 0,60 Z" fill="%23fff"/></svg>');
    background-size: 120px;
}
.table {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin: 0 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}
.head {
    display: flex;
    padding: 25px 10px;
    background: rgba(0, 0, 0, 0.3);
    font-weight: 700;
    font-size: 18px;
    border-bottom: 2px solid var(--gold);
}
.col {
    flex: 1;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.row {
    display: flex;
    padding: 20px 10px;
    transition: background 0.3s ease;
}
.row:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}
.row:hover {
    background: rgba(255, 255, 255, 0.1);
}
.row .table-col:first-child {
    text-align: left;
    font-weight: 600;
    justify-content: flex-start;
    color: var(--gold-light);
}
.table-section .col:not(:first-child) {
    color: white;
    font-weight: 600;
    position: relative;
}
.table-section .col:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}
.roi-calculation {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    border-radius: 15px;
    padding: 35px 10px;
    margin: 0 10px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--gold);
}
.roi-calculation h3 {
    color: var(--brown);
    text-align: center;
    margin-bottom: 35px;
    font-size: 26px;
    font-weight: 800;
    position: relative;
    padding-bottom: 20px;
}
.roi-calculation h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}
.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px dashed #e0e0e0;
    transition: background 0.3s ease;
}
.roi-item:hover {
    background: rgba(139, 69, 19, 0.05);
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 -15px;
    border-radius: 8px;
}
.roi-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    flex: 2;
}
.roi-value {
    font-size: 20px;
    font-weight: 800;
    color: #a61c00;
    flex: 1;
    text-align: right;
}
.roi-result {
    background: linear-gradient(135deg, var(--brown), var(--gold));
    color: white;
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
    position: relative;
    overflow: hidden;
}
.roi-result::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}





/* FAQ板块 */

.faq-list {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.1);
}
.faq-item {
    border-bottom: 1px solid #e3f2fd;
    transition: background 0.3s ease;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item:hover {
    background-color: #f5faff;
}
.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--brown);
    transition: background 0.3s ease;
    font-size: 18px;
}
.faq-question:hover {
    background: rgba(33, 150, 243, 0.05);
}
.toggle-icon {
    font-size: 28px;
    font-weight: bold;
    color: var(--blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 30px;
    display: none; /* 修改这里 - 从max-height改为直接display控制 */
}

.faq-answer > div {
    padding: 25px 0;
    color: var(--med);
    line-height: 1.7;
    border-top: 1px solid #e3f2fd;
    font-size: 16px;
}




/* ========== 新增：最终决策助推板块 ========== */

.decision-comparison {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
    margin: 40px 10px;
    flex-wrap: wrap;
}

.decision-column {
    flex: 1;
    min-width: 300px;
    padding: 35px 20px;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.decision-column.bad {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border: 2px solid #ef5350;
}

.decision-column.good {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border: 2px solid #4caf50;
}

.decision-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.decision-column h3 {
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: 800;
    padding-bottom: 15px;
    border-bottom: 2px solid;
    display: flex;
    align-items: center;
    gap: 10px;
}

.decision-column.bad h3 {
    color: #c62828;
    border-bottom-color: #ef5350;
}

.decision-column.good h3 {
    color: #2e7d32;
    border-bottom-color: #4caf50;
}

.decision-column ul {
    padding: 0;
    margin: 0;
}

.decision-column li {
    padding: 15px 0;
    font-size: 17px;
    line-height: 1.6;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 30px;
}

.decision-column li:last-child {
    border-bottom: none;
}

.decision-column.bad li {
    color: #5d4037;
}

.decision-column.good li {
    color: #1b5e20;
}

.decision-column li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.decision-column.bad li::before {
    background: #ef5350;
}

.decision-column.good li::before {
    background: #4caf50;
}

.decision-column.good li strong {
    color: #1b5e20;
    font-size: 18px;
    background: rgba(76, 175, 80, 0.1);
    padding: 3px 10px;
    border-radius: 5px;
    margin-left: 5px;
}



.final-cta {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--brown), #6b340f);
    color: white;
    border-radius: 20px;
    margin: 40px 10px;
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.4);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 4s infinite;
}

.final-cta p {
    font-size: 22px;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.final-cta strong {
    color: var(--gold-light);
    font-size: 28px;
    display: block;
    margin-top: 15px;
    font-weight: 800;
}




.action-hero {
    margin: 40px 10px;
    padding: 50px 40px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.action-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" opacity="0.03"><path d="M50,0 C77.6,0 100,22.4 100,50 C100,77.6 77.6,100 50,100 C22.4,100 0,77.6 0,50 C0,22.4 22.4,0 50,0 Z" fill="%238B4513"/></svg>');
    background-size: 120px;
}

.action-hero h2 {
    color: var(--brown);
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.action-hero p {
    color: var(--med);
    font-size: 22px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.action-hero strong {
    color: var(--brown);
    font-weight: 800;
    font-size: 24px;
    display: inline-block;
    margin-top: 15px;
    background: linear-gradient(transparent 70%, rgba(212, 175, 55, 0.3) 70%);
}







/* ========== 13. 保障承诺板块 ========== */
.guarantee-section {
    background-color: #f0f7ff;
    position: relative;
}
.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), #42a5f5);
}
.guarantee-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 10px;
}
.guarantee-card {
    background: white;
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.15);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), #42a5f5);
}
.guarantee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.25);
    border-color: var(--blue);
}
.guarantee-icon {
    font-size: 64px;
    margin-bottom: 25px;
    color: var(--blue);
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}
.guarantee-card h3 {
    color: var(--brown);
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}
.guarantee-card p {
    color: var(--med);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}
.risk-banner {
    background: linear-gradient(135deg, var(--brown), var(--gold));
    color: white;
    border-radius: 15px;
    margin: 30px 10px 40px 10px;
    padding: 25px 10px;
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.4);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.risk-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 5s infinite;
}

.risk-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.risk-icon {
    font-size: 90px;
    flex-shrink: 0;
    animation: bounce 2s infinite;
}

.risk-text {
    text-align: left;
    flex: 1;
}

.risk-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--gold-light);
    font-weight: 800;
    line-height: 1.3;
}

.risk-text p {
    line-height: 1.8;
    font-size: 19px;
    font-weight: 500;
    opacity: 0.95;
}

.risk-text strong {
    color: var(--gold-light);
}





/* ========== 赠品板块 ========== */
.gift-section {
    background: linear-gradient(135deg, var(--orange) 0%, #ff7043 100%);
    padding: 10px 10px 50px 10px;
    position: relative;
    overflow: hidden;
}

.gift-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" opacity="0.1"><rect width="100" height="100" fill="%23fff"/><circle cx="50" cy="50" r="40" fill="%23ff9800" opacity="0.2"/></svg>');
    background-size: 100px;
}

/* 赠品容器 */
.gift-container {
    background: linear-gradient(135deg, #fff9e6, #fff5e0);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 20px 10px;
    margin: 30px 0 0 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.gift-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05), transparent);
    pointer-events: none;
}

.gift-container h4 {
    color: var(--brown);
    font-size: 32px;
    font-weight: 800;

    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

/*.gift-container h4::before {
    content: '🎁';
    font-size: 28px;
}*/

.gift-items {
    display: flex;
    flex-direction: column;
    gap: 0px;
    position: relative;
    z-index: 1;
}

.gift-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: white;
    transition: all 0.3s ease;
    /*border-bottom: 1px solid #f0e0c0;*/
    border-bottom: 1px dashed #f0e0c0;
    cursor: pointer;
}
.gift-item:last-child{
    border-bottom: none;
}
.gift-item:hover {
    border-color: var(--gold);
}

.gift-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gift-item:hover img {
    transform: scale(1.3);
}

.gift-info {
    flex: 1;
    display: flex;
    flex-direction: column;  /* 改为垂直排列 */
    justify-content: center;  /* 垂直居中 */
    gap: 6px;  /* 名称和描述之间的间距 */
}

.gift-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
}

.gift-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.3;
}
.gift-item:hover .gift-desc{
    color: var(--red);
}



/* ========== 16. 购买板块 ========== */
.purchase {
    width: 100%;
    padding: 0 0 20px;
    background: linear-gradient(to bottom, var(--brown), var(--light));
    overflow: hidden;
    position: relative;
}





.last-reminder {
    background: linear-gradient(135deg, var(--brown), var(--gold));
    color: white;
    padding: 30px 10px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    text-align: center;
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.last-reminder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shine 3s infinite;
}

.last-reminder h3 {
    margin-bottom: 15px;
    font-size: 28px;
    color: white;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.last-reminder p {
    margin: 0;
    font-size: 18px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.last-reminder strong {
    color: var(--gold-light);
    font-size: 24px;
}

.order-form {
    margin: 10px;
    border: 3px solid var(--brown);
    padding: 10px;
    position: relative;
    border-radius: 25px;
    background: white;
    box-shadow: 0 25px 60px rgba(139, 69, 19, 0.25);
    z-index: 10;
}

/* SKU 选择区域 */
.product-skus {
    width: 100%;
    overflow: hidden;
}

.sku-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
   
}

.sku-item {
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.sku-item:hover {
    border-color: var(--brown);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.sku-item.selected {
    border-color: var(--brown);
    background: linear-gradient(135deg, #fff9f0, #fff5e6);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.15);
}

.sku-item img {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
}

.sku-item span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}


.best-value {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    font-size: 12px;

    padding: 5px 10px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

/* 价格显示区域 */
.price-display {
    width: 100%;
    margin-top: 10px;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.final-price {
    font-size: 24px;
    color: var(--dark);
    font-weight: 600;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.final-price b {
    font-size: 36px;
    font-weight: 800;
    color: #a61c00;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}


.shipping-note {
    width: 100%;
    background: rgba(76, 190, 7, 0.1);
    border-top: 1px solid rgba(76, 190, 7, 0.3);
    padding: 12px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    color: green;
}


















/* 表单 */
.form-inputs {
    margin-top: 20px;
}

.form-inputs li {
    margin-bottom: 10px;
}

input{
    outline: none;
    font-size: 17px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #f0f0f0;
    padding: 0 10px;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    background: white;
    color: var(--dark);
    border-radius: 5px;
    
}
input::placeholder {
    color: #999;
}

input:focus {
    border-color: var(--brown);
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.15);
    background: #fffaf0;
}




/*省市区县 联动*/
.region-select {
    position: relative;
    width: 100%;
}

.region-select .clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red);
    cursor: pointer;
    display: none;
    font-size: 24px;
}
.region-select .menu {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    width: 100%;
    display: none;
}
.region-select .menu.show {
    display: block;
}
.region-select .option {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}
.region-select .option:hover {
    background: #f5f5f5;
}









/*提交按钮*/
.purchase-btn {
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #ff4d4d 0%, #d82626 50%, #a50000 100%);
    background-size: 200% 100%;
    color: white;
    height: 60px;
    line-height: 60px;
    margin: 30px auto 30px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    border: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 2px;
    box-shadow: 0 20px 40px rgba(215, 38, 38, 0.4);
    position: relative;
    overflow: hidden;
    animation: 
        gradientMove 3s infinite,
        pulseGlow 1.5s infinite alternate;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.purchase-btn:hover {
    background: linear-gradient(135deg, #ff5e5e 0%, #e63939 50%, #b30000 100%);
    box-shadow: 
        0 30px 60px rgba(215, 38, 38, 0.6),
        0 0 0 5px rgba(255,255,255,0.1);
    letter-spacing: 3px;
    transform: translateY(-3px);
}

.purchase-btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 10px 20px rgba(215, 38, 38, 0.4);
}



.secure-note {
    text-align: center;
    color: var(--med);
    font-size: 15px;
    padding: 15px;
    background: rgba(76, 190, 7, 0.1);
    border-top: 1px solid rgba(76, 190, 7, 0.3);
}

.secure-note small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* 支付方式样式 */
.payment-method {
    margin-bottom: 20px;
}

.payment-title {
    width: 100%;
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
    display: inline-block;
}

.payment > div {
    height: 50px;
    line-height: 50px;
    text-align: left;
    border: 1px solid #e2e2e2;
    margin-bottom: 10px;
    border-radius: 4px;
    cursor: pointer;
    /*transition: all 0.3s ease;*/
    display: flex;
    align-items: center;
    padding: 0 10px;
}



.payment > div img {
    height: 36px;
    width: 36px;
    margin-right: 10px;
    vertical-align: middle;
}

.payment > div span {
    font-size: 16px;
    color: #333;
    line-height: 1;
}

.current {
    position: relative;
    border-color: #07c160 !important;
    background-color: #f6ffed !important;
}

.current::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: block;
    background-image: url(../img/current.png);
    background-size: 20px 20px;
    background-repeat: no-repeat;
}








/* ========== 18. 安全保障板块 ========== */
.safety {
    background: #f5f5f5;
    padding: 10px;
    margin: 40px 0;
    text-align: center;
}


.company-info {
    text-align: center;
    margin: 40px 0;
    color: var(--med);
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.company-info > div {
    margin: 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

.company-info strong {
    color: var(--brown);
    font-weight: 700;
    margin-right: 10px;
}

.copyright {
    text-align: center;
    color: #999;
    font-size: 15px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    margin-top: 30px;
    line-height: 1.8;
}

.copyright > div {
    margin: 10px 0;
}

.copyright strong {
    color: var(--brown);
    font-weight: 600;
}


/********footer*********/
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 0.5px solid #e9e9e9;  /* 淘宝风格细边框 */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.02);
    /* 保证较高的层级，不被内容覆盖 */
    z-index: 1000;
    /* 适配iPhone底部安全区（刘海屏/灵动岛） */
    padding-bottom: env(safe-area-inset-bottom, 0);
    /* 内部布局容器使用flex，左右排列 */
    transition: opacity 0.3s ease;
}

/* 内部内容容器：左右分布，最大宽度仿淘宝居中，更美观 */
.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    max-width: 750px;
    margin: 0 auto;
    width: 100%;
}

/* 左侧功能区：查询、客服 横向排列，间距均匀 */
.footer-actions {
    display: flex;
    align-items: center;
    gap: 28px;   /* 间距参考淘宝左右两个图标舒适距离 */
}

/* 每个操作项：图标在上，文字在下，居中对齐 */
.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    padding: 0;
    min-width: 44px;  /* 增加触控区域，提升移动端体验 */
}

.action-item:active {
    opacity: 0.6;
}

/* 图标尺寸统一为24x24，模拟淘宝大小 */
.action-icon {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
    margin-bottom: 4px;
    /* 如果是背景图方式，也可以用background-size，但这里直接使用img标签加载本地图标 */
}

/* 文字样式 12px 常规灰色 */
.action-text {
    font-size: 11px;
    color: #666666;
    line-height: 1.2;
    font-weight: 400;
}

/* 右侧立即购买按钮 */
.buynow {
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b2c 100%);
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 9px 35px;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.1s ease, background 0.2s;
    box-shadow: 0 2px 6px rgba(255, 59, 48, 0.3);
    border: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
    animation: breathingEffect 2s infinite alternate ease-in-out; /* 应用动画效果 */
}

.buynow:active {
    transform: scale(0.96);
    background: linear-gradient(135deg, #e6352a 0%, #e65a1f 100%);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* 确保点击区域友好 */
.footer-actions, .buynow {
    user-select: none;
}




/*右侧-客服/查询订单*/
#Search{
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 320px;
    right: 10px;
    cursor: pointer;
    border-radius: 20px;
    background-color: #FFFFFF;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
    display: none;
}
#Help{
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 260px;
    right: 10px;
    cursor: pointer;
    border-radius: 20px;
    background-color: #FFFFFF;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
    display: none;
}
#Help::before,#Search::before {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    position: absolute;
    top: 7px;
    left: 7px;
    background-position: center;
    background-size: contain;
}
#Help::before {
    background-image: url(../img/comment.png);
}
#Search::before{
    background-image: url(../img/search.png);
}
/* 返回顶部 */

#Top {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 200px;
    right: 10px;
    cursor: pointer;
    border-radius: 20px;
    background-color: #cccccc;
    z-index: 1000;
    opacity: 0;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}
#Top.visible {
    opacity: 1;
    visibility: visible;
}
#Top:hover {
    background-color: #B8B8B8;
}

#Top::before {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    position: absolute;
    top: 7px;
    left: 7px;
    background-position: center;
    background-size: contain;
    background-image: url(../img/top.png);
}


/* 微信风格Toast弹窗样式 */
/* 保留原有container但修改定位方式 */

#showToast {
    text-align: center;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    height: 30px;
    line-height: 30px;
    z-index: 999999;
}

#showToast span {
    height: 30px;
    line-height: 30px;
    border-radius: 5px;
    background-color: #000000;
    opacity: 0.8;
    padding: 10px 30px;
    color: #ffffff;
    text-align: center;
}



/* 表单验证样式保持不变 */
.error-field {
    border-color: #fa5151 !important;
    box-shadow: 0 0 0 1px rgba(250, 81, 81, 0.2) !important;
}

.error-hint {
    color: #fa5151;
    font-size: 13px;
    margin-top: 6px;
    padding-left: 4px;
    display: none;
    font-weight: normal;
}

/* 提交按钮加载状态 */
.purchase-btn.loading {
    opacity: 0.8;
    pointer-events: none;
    position: relative;
}

.purchase-btn.loading:after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}