﻿    /* ------------------------------------- */
    /* CSS 样式部分 (核心优势/产品覆盖模块) */
    /* ------------------------------------- */

    :root {
        --main-color: #7F87AB; /* 主色调：优雅的灰蓝色 */
        --text-color: #333;
        --light-text: #666;
        --card-bg: #ffffff;
        --hover-shadow: rgba(127, 135, 171, 0.3); /* 主配色半透明阴影 */
    }

    .cp-wrapper {
        max-width: 1200px;
        margin: 50px auto;
        padding: 0 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* 标题样式 */
    .cp-section-title {
        text-align: center;
        color: var(--main-color);
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .cp-subtitle {
        text-align: center;
        color: var(--light-text);
        font-size: 18px;
        margin-bottom: 50px;
    }

    /* ------------------------------------- */
    /* 优势区块 (匠心传承) 布局 */
    /* ------------------------------------- */
    .cp-features {
        display: flex;
        flex-wrap: wrap; /* 手机端堆叠 */
        align-items: center;
        gap: 40px;
        margin-bottom: 40px;
    }

    .cp-feature-image {
        flex: 1 1 45%; /* 占据大约一半空间 */
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .cp-feature-image img {
        display: block;
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }

    .cp-feature-image:hover img {
        transform: scale(1.05); /* 图片悬停放大效果 */
    }

    .cp-feature-content {
        flex: 1 1 45%;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .cp-card {
        padding: 25px;
        background-color: var(--card-bg);
        border-radius: 8px;
        border-left: 5px solid var(--main-color); /* 主配色左边强调线 */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: box-shadow 0.3s ease;
    }
    
    .cp-card:hover {
        box-shadow: 0 8px 25px var(--hover-shadow);
    }

    .cp-card h3 {
        color: var(--secondary-color);
        font-size: 20px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .cp-card p {
        color: var(--light-text);
        font-size: 15px;
    }
    
    hr {
        border: none;
        border-top: 1px solid #eee;
        margin: 50px auto;
        width: 80%;
    }

    /* ------------------------------------- */
    /* 全品类覆盖 (产品网格) 布局 */
    /* ------------------------------------- */
    .cp-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* 自适应列 */
        gap: 20px;
        margin-top: 30px;
    }

    .cp-item {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .cp-item img {
        width: 100%;
        height: 250px; /* 统一高度 */
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .cp-item:hover img {
        transform: scale(1.1);
    }

    .cp-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(127, 135, 171, 0.85); /* 主配色半透明覆盖层 */
        color: var(--card-bg);
        padding: 15px;
        text-align: center;
        transition: height 0.3s ease;
    }
    
    .cp-overlay h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        /* 隐藏，悬停时显示 */
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .cp-item:hover .cp-overlay h4 {
        opacity: 1;
        transform: translateY(0);
    }

    /* 默认隐藏，悬停时完全显示 */
    .cp-item .cp-overlay {
        height: 0;
        opacity: 0;
    }
    .cp-item:hover .cp-overlay {
        height: 100%;
        opacity: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    /* ------------------------------------- */
    /* CTA 按钮样式 */
    /* ------------------------------------- */
    .cp-cta {
        text-align: center;
        padding: 60px 20px;
        margin-top: 60px;
        background-color: var(--light-bg);
        border-radius: 12px;
    }

    .cp-cta h2 {
        color: var(--main-color);
        font-size: 32px;
        margin-bottom: 15px;
    }

    .cp-btn {
        display: inline-block;
        padding: 14px 40px;
        margin-top: 20px;
        background-color: var(--main-color); /* 主配色作为按钮背景 */
        color: var(--card-bg);
        text-decoration: none;
        font-weight: 600;
        border-radius: 50px; /* 圆角按钮 */
        letter-spacing: 1px;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 6px 15px rgba(127, 135, 171, 0.4);
    }

    .cp-btn:hover {
        background-color: var(--secondary-color); /* 悬停时颜色稍微加深 */
        transform: translateY(-2px);
    }

    /* 媒体查询：手机端适配 */
    @media (max-width: 768px) {
        .cp-features {
            flex-direction: column;
        }
        .cp-feature-image, .cp-feature-content {
            flex: 1 1 100%;
        }
        .cp-grid {
             grid-template-columns: 1fr 1fr; /* 手机端显示两列 */
        }
    }

    /* ------------------------------------- */
    /* CSS 样式部分 (联系我们页面 - 最终配色版) */
    /* ------------------------------------- */

    :root {
        --main-color: #7F87AB; /* 主色调：按钮背景、按钮悬停、图标背景 */
        --secondary-color: #5d668f; /* 按钮悬停和地址卡片强调色 */
        --light-bg: #f8f8f8;
        --card-bg: #ffffff;
        --text-color: #333;
        --light-text: #777;
        
        /* 新的相近强调色 */
        --accent-whatsapp: #A8B2D0; /* 浅蓝 */
        --accent-email: #7F87AB; /* 主配色 */
        --accent-address: #5D668F; /* 深蓝 */
        --shadow-color: rgba(0, 0, 0, 0.05);
    }

    /* 容器样式 */
    .contact-info-section { 
        max-width: 1200px;
        margin: 40px auto;
        padding: 20px;
        font-family: Arial, sans-serif;
        background-color: var(--light-bg);
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* 标题样式 */
    .contact-info-section h2 {
        text-align: center;
        color: var(--text-color);
        margin-bottom: 30px;
        font-size: 28px;
        font-weight: 600;
    }

    /* Flexbox 容器：确保横向排列和换行 */
    .contact-grid-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between; 
        gap: 20px; 
    }

    /* 联系卡片通用样式：实现稳定的三列横排 */
    .contact-card {
        /* 核心修正：精确计算 PC 端三列宽度 */
        flex: 0 0 calc(33.33% - 14px); 
        min-width: 250px; 

        background-color: var(--card-bg);
        padding: 30px 20px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 4px 8px var(--shadow-color);
        transition: transform 0.3s ease;
    }

    .contact-card:hover {
        transform: translateY(-5px); 
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

    /* 图标容器通用样式 */
    .icon-circle {
        display: inline-block;
        width: 60px;
        height: 60px;
        line-height: 60px;
        margin-bottom: 15px;
        border-radius: 50%;
        color: var(--card-bg);
        font-size: 30px;
        font-weight: bold;
    }

    /* 特殊卡片样式：新配色方案 */
    .whatsapp-card { border-top: 5px solid var(--accent-whatsapp); }
    .whatsapp-card .icon-circle { background-color: var(--accent-whatsapp); }

    .email-card { border-top: 5px solid var(--accent-email); }
    .email-card .icon-circle { background-color: var(--accent-email); }

    .address-card { border-top: 5px solid var(--accent-address); }
    .address-card .icon-circle { background-color: var(--accent-address); }
    
    /* ------------------------------------- */
    /* 按钮 CSS 样式 (已补充) */
    /* ------------------------------------- */
    .contact-card a {
        display: inline-block;
        padding: 10px 20px;
        background-color: var(--main-color);
        color: var(--card-bg);
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .contact-card a:hover {
        background-color: var(--secondary-color); /* 悬停时颜色略微加深 */
    }

    /* 文本样式 (保持不变) */
    .contact-card h3 {
        color: var(--text-color);
        margin-top: 0;
        font-size: 20px;
    }
    .card-description {
        color: var(--secondary-text);
        font-size: 16px;
        margin-bottom: 25px;
    }
    .card-info {
        margin-top: 15px;
        color: var(--light-text);
    }

    /* 媒体查询：手机端自适应 (单列堆叠) */
    @media (max-width: 850px) { 
        .contact-grid-container {
            flex-direction: column; /* 强制垂直堆叠 */
        }
        .contact-card {
            flex: 1 1 100%; /* 卡片占据整行 */
        }
    }
    @media (max-width: 500px) {
        .contact-info-section {
            padding: 15px;
        }
    }



















/* ------------------------------------- */
/* CSS 样式部分 (电商 FAQ 页面) */
/* ------------------------------------- */

:root {
    --main-color: #7F87AB; /* 主色调：优雅的灰蓝色 */
    --light-bg: #f8f9fa; /* 浅背景色 */
    --text-color: #333;
    --secondary-color: #5d668f; /* 稍深的主色调 */
}

.faq-page-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-bg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-header {
    text-align: center;
    color: var(--main-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    padding-bottom: 10px;
}

.faq-subheader {
    text-align: center;
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 40px;
}

/* 手风琴容器 */
.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* 问题标题（可点击部分） */
.accordion-question {
    background-color: #ffffff;
    padding: 18px 25px;
    cursor: pointer; /* 确保鼠标是可点击状态 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}

.accordion-question:hover {
    background-color: #f0f2f5;
}

/* 展开/收起图标 */
.accordion-icon {
    font-size: 20px;
    color: var(--main-color);
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    font-style: normal;
}

/* 答案内容 */
.accordion-answer {
    background-color: #ffffff;
    padding: 0 25px;
    max-height: 0; /* 默认隐藏 */
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
    border-top: 1px dashed transparent; /* 预留给展开状态的分割线 */
}

/* JS 切换后，激活的样式：标题和答案的显示/动画 */

/* 激活状态的标题样式 */
.accordion-question.active {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

/* 激活状态的图标旋转 */
.accordion-question.active .accordion-icon {
    transform: rotate(45deg); /* '+' 变为 'x' 用于收起 */
    color: var(--secondary-color);
}

/* 答案展开状态 */
.accordion-answer.show {
    max-height: 2000px; /* 足够大的值来展示内容 */
    padding: 15px 25px 20px 25px;
    border-top: 1px dashed #e0e0e0; /* 显示分割线 */
}

/* 媒体查询：手机端适配 */
@media (max-width: 768px) {
    .faq-page-container {
        margin: 20px 10px;
        padding: 15px;
    }
    .faq-header {
        font-size: 30px;
    }
    .accordion-question {
        padding: 15px 20px;
        font-size: 16px;
    }
}


    /* ------------------------------------- */
    /* CSS 样式部分 (Return Policy 页面) */
    /* ------------------------------------- */

    :root {
        --main-color: #7F87AB; /* 主色调：优雅的灰蓝色 */
        --light-bg: #f8f9fa; /* 浅背景色 */
        --text-color: #333;
        --accent-color: #f44336; /* 强调/警告色 (用于重要期限) */
    }

    .policy-container {
        max-width: 950px;
        margin: 50px auto;
        padding: 40px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: var(--light-bg);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        line-height: 1.6;
    }

    .policy-header {
        text-align: center;
        color: var(--main-color);
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 10px;
		
    }

    .policy-date {
        text-align: center;
        color: #777;
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .policy-section {
        margin-bottom: 35px;
        padding: 20px;
        background-color: #ffffff;
        border-left: 5px solid var(--main-color);
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
		background: #F1F0F1;
    }
    
    .policy-section-title {
        color: var(--main-color);
        font-size: 24px;
        font-weight: 600;
        margin-top: 0;
        margin-bottom: 15px;
        padding-bottom: 5px;
        border-bottom: 1px dashed #e0e0e0;
    }

    .policy-paragraph {
        color: var(--text-color);
        margin-bottom: 15px;
		
    }
    
    /* 列表样式 */
    .policy-list {
        list-style-type: none;
        padding-left: 0;
		
    }
    
    .policy-list li {
        margin-bottom: 10px;
        color: #555;
        padding-left: 10px;
		margin-left:15px;
        position: relative;
    }
    
    .policy-list li::before {
        content: '✓';
        color: var(--main-color);
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
        position: absolute;
        left: 0;
    }

    /* 强调警告框 */
    .policy-alert {
        padding: 15px;
        background-color: #fff3cd; /* 浅黄色背景 */
        color: #856404; /* 深黄色文本 */
        border: 1px solid #ffeeba;
        border-radius: 4px;
        margin-top: 25px;
        font-weight: 600;
    }

    .policy-alert strong {
        color: var(--accent-color);
    }
    
    /* 媒体查询：手机端适配 */
    @media (max-width: 768px) {
        .policy-container {
            margin: 20px 10px;
            padding: 20px;
        }
        .policy-header {
            font-size: 30px;
        }
        .policy-section {
            padding: 15px;
        }
    }





