    :root {
            --reded:#9A1F1A;			
            --redchinese: #CD1318;
            --primary: #be002f;
            --primary-light: #F8F1E5;
            --primary-dark: #8c1a16;
            --secondary: #D4A76A;
            --accent: #CD1318;
            --text-dark: #2c3e50;
            --text-medium: #666666;
            --text-light: #999999;
            --background: #FFFFFF;
            --background-alt: #f9O9f9;
            --border: #E2E8F0;
            --shadow: 0 4px 6px rgba(154, 31, 28, 0.05);
            --shadow-hover: 0 10px 15px rgba(154, 31, 28, 0.1);
            --radius: 8px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: "HarmonyOS Sans SC", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--background);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        a {
            color: #333333;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        a:hover {
            color: #be002f;
            text-decoration: underline;
            text-decoration-thickness: 2px;
            text-underline-offset: 3px;
        }

        .container { 
            width: 90%; 
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 0 20px; 
        }

/* 添加在文件最下方 - H1至H6样式 */

/* 基础标题样式 */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8em;
    position: relative;
}

/* H1 主标题 - 页面标题 */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 0.5em;
    margin-bottom: 0.8em;
    padding-bottom: 0.5em;
    text-align: center; /* 居中 */
    color: var(--primary); /* 引用大红色 */
    width: 100%;
    border-bottom: 1px solid var(--primary);
}

/* H2 副标题 */
h2 {
    font-size: 2rem;
    font-weight: 650;
    color: var(--primary-dark);
    margin-top: 2em;
    margin-bottom: 0.7em;
    padding-left: 0.5em;
}

/* H3 三级标题 */
h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.8em;
    margin-bottom: 0.6em;
    padding-bottom: 0.3em;
    border-bottom: 1px solid var(--border);
}

/* H4 四级标题 */
h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-top: 1.6em;
    margin-bottom: 0.5em;
}

/* H5 五级标题 */
h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    padding: 0.3em 0.3em  0.5em 1em  ;
}

/* H6 六级标题 */
h6 {
    font-size: 1rem;
    font-weight: 300;
    margin-top: 0.3em;
    margin-bottom: 0.3em;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3em 0.3em  0.5em 1em  ;
}

/* 特殊容器内的标题样式调整 */
.colorcase h1,
.colorcase h2,
.colorcase h3,
.colorcase h4,
.colorcase h5,
.colorcase h6 {
    margin-bottom: 0.6em;
}

/* 响应式设计 */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        padding-bottom: 0.4em;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.3rem;
    }
    
    h5 {
        font-size: 1.15rem;
    }
    
    h6 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
        padding-bottom: 0.3em;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    h4 {
        font-size: 1.2rem;
    }
    
    h5 {
        font-size: 1.1rem;
    }
    
    h6 {
        font-size: 0.95rem;
    }
}

/* 特殊样式变体 */
h1.primary {
    color: var(--primary);
}

h1.secondary {
    color: var(--secondary);
}

h1.accent {
    color: var(--accent);
}

/* 装饰性标题 */
h1.decorative {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.2em 0;
}

/* 边框标题 */
h2.bordered {
    padding: 0.5em;
    border: 2px solid var(--secondary);
    border-radius: var(--radius);
    background-color: var(--background-alt);
}
	
.ColorBottom {
    border-bottom: 2px solid #9A1F1C;
    padding-bottom: 11px;
}

    /* 全局容器 */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
/* 全局容器 - 高度满页 */
.container60 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 60vh; /* 最小高度占满整个视口高度 */
    display: flex;
    flex-direction: column;
}


  
/* 基础hero样式 */
.hero {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url('../photos/pics/7tcm2.png');
    background-size: cover;
    background-position: center;
    padding: 1rem 1rem ;
    text-align: center;
    color: #333;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* 文字内容样式 */
.hero h1 {
    color: #9A1F1C;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.hero-description {
    color: #5a5a5a;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* CTA按钮 */
.hero-cta-button {
    display: inline-block;
    width: 30%;
    min-width: 220px;
    max-width: 260px;
    padding: 0.9rem 1.5rem;
    background: #9A1F1C;
    color: white;
    text-align: center;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1.1rem;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(154, 31, 28, 0.15);
    text-decoration: none;
    margin: 0 auto 3rem;
}

.hero-cta-button:hover {
    background: #9A1F0A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(154, 31, 28, 0.25);
}

/* 品牌图片区域 */
.hero-brand-container {
    background: rgba(249, 245, 240, 0.8);
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2rem;
    position: relative;
    border-radius: 4px;
}

.hero-brand-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, #9A1F1C, #e0a944);
}

.hero-brand-image {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 300px;
    display: block;
    margin: 0 auto;
    padding: 1rem;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    transition: all 0.5s ease;
}

.hero-brand-image:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero {
        padding: 3rem 5%;
    }
    
    .hero-brand-container {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 5%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-button {
        width: 60%;
        margin-bottom: 2rem;
    }
    
    .hero-brand-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-cta-button {
        width: 80%;
        padding: 0.8rem;
    }
    
    .hero-brand-container::before {
        width: 100px;
    }
    
    .hero-brand-image {
        max-height: 200px;
    }
}

 /* 图片自适应样式 */
.responsive-img {
    max-width: 100%; /* 图片最大宽度为父容器的宽度 */
    height: auto; /* 高度自动调整，保持图片比例 */
    display: block; /* 防止图片下方出现空白间隙 */
    margin: 0 auto; /* 图片居中显示 */
    border-radius: 10px; /* 可选：为图片添加圆角 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 可选：为图片添加阴影 */
}

/* 核心价值部分样式 */
.values {
    padding: 1rem 1%;
    background-color: #f8f9fa; /* 浅灰色背景 */
    text-align: center;
}

.value-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 自适应列数 */
    gap: 2rem; /* 格子之间的间距 */
    margin-top: 2rem;
}

.value-item {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);

}

.value-item h3 {
    color: #B5171C; /* 标题颜色 */
    margin-bottom: 1rem;
}

.value-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .values {
        padding: 2rem 5%;
    }

    .value-card {
        grid-template-columns: 1fr; /* 移动端单列显示 */
    }

    .value-item {
        padding: 1.5rem;
    }
}

    /* 产品系列部分样式 */
    .products {
        padding: 4rem 5%;
        background: #fafcff; /* 淡蓝色背景 */
    }

    .products h2 {
        text-align: center;
        color: #2c3e50;
        margin-bottom: 2rem;
        font-size: 2rem;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .product-card {
        background: white;
        padding: 1.5rem;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .product-card:hover {
        transform: translateY(-5px);
    }

    .product-card h3 {
        color: #9A1F1C;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .product-card p {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .product-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .product-links a {
        color: #2c3e50;
        text-decoration: none;
        font-size: 0.95rem;
        padding: 0.5rem;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .product-links a:hover {
        background: #f0f0f0;
        color: #9A1F1C;
    }

    .product-links a strong {
        color: #9A1F1C;
        font-weight: 600;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .products {
            padding: 2rem 5%;
        }

        .product-grid {
            grid-template-columns: 1fr;
        }

        .product-card {
            padding: 1rem;
        }
    }

    /* 全球信赖部分 */
    .global {
        padding: 4rem 5%;
        background: #fafcff; /* 淡蓝色背景 */
        text-align: center;
    }

    .global h2 {
        text-align: center;
        color: #2c3e50;
        margin-bottom: 2rem;
        font-size: 1.5rem;
    }

    .global p {
        color: #7f8c8d;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 2rem;
    }

    /* 公司联系信息部分 */
 .contact-section {
    padding: 40px 0;
    background: #f9f5f0;
}
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-card, .business-hours {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.contact-card h3, .business-hours h3 {
    color: #9A1F1C;
    border-bottom: 1px solid #eae0d5;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
address {
    font-style: normal;
    line-height: 1.8;
}
.fas {
    margin-right: 8px;
    color: #9A1F1C;
    width: 20px;
    text-align: center;
}
.contact-img {
    height: 20px;
    vertical-align: middle;
}


    /* 响应式调整 */
    @media (max-width: 768px) {
        .global, .contact-info {
            padding: 3rem 5%;
        }

        .contact-info {
            text-align: left;
        }
    }


        /* 响应式调整 */
        @media (max-width: 768px) {
            .global {
                padding: 3rem 5%;
            }
            

        }
	    .product-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .product-links a {
            color: #2c3e50;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 0.5rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .product-links a:hover {
            background: #f0f0f0;
            color: #9A1F1C;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .product-links {
                gap: 0.3rem;
            }

            .product-links a {
                font-size: 0.9rem;
                padding: 0.3rem;
            }
        }
		
		
  /* 轮播图容器 */
        .carousel {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            height: 500px; /* 根据图片高度设置 */
        }

        /* 图片列表 */
        .carousel-inner {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        /* 单张图片 */
        .carousel-item {
            min-width: 100%;
            box-sizing: border-box;
        }

        .carousel-item img {
            width: 100%;
            height: 500px; /* 根据图片高度设置 */
            object-fit: cover;
        }

        /* 导航按钮 */
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 24px;
            z-index: 10;
        }

        .carousel-control.prev {
            left: 10px;
        }

        .carousel-control.next {
            right: 10px;
        }

        /* 指示器 */
        .carousel-indicators {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .carousel-indicators span {
            width: 10px;
            height: 10px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
        }

        .carousel-indicators span.active {
            background-color: white;
        }
		
		

/* 公司介绍容器 */
.company-intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 自适应列数 */
    gap: 20px; /* 格子之间的间距 */
    padding: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 每个介绍项 */
.intro-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* 标题样式 */
.intro-item h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #9A1F1C;
    padding-bottom: 10px;
}

/* 段落样式 */
.intro-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

/* 列表样式 */
.intro-item ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.intro-item ul li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.intro-item ul li::before {
    content: "。";
    color: #9A1F1C;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}



.ShopCase {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 1rem auto; 
    max-width: 1200px;
    overflow: hidden;
    border: 1px solid #e0d6c2;
}

.contd {
    padding: 1rem 1rem;
}


hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4a76a, transparent);
    margin: 30px 0;
}

strong {
    color: #2c3e50;
    font-weight: bold;
}



.about-us-images {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 40px 0;
}

.about-us-images img {
    max-width: 48%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.about-us-images img:hover {
    transform: scale(1.02);
}


#nav2 {
    padding: 5px 2%;
    font-size: 0.9rem;
    color: #777; 
    margin-bottom: 20px;
    border-top: 1px dashed #E0ECD6; 
    border-bottom: 1px dashed #D7E3EF; 
}

#nav2 a {
    color: #777; 
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 2px 5px;
    border-radius: 3px;
}

#nav2 a:hover {
    color: #666; 
    text-decoration: none;
}

#nav {
    padding: 8px 5%;
    font-size: 0.9rem;
    color: #FFFFFF; /* 白色文字 */
    background-color: #9A1F1C; /* 主色深红背景 */
    border-bottom: 1px solid #8A1A16; /* 深红色边框 */
    margin-bottom: 20px;
}

#nav a {
    color: #F8F1E5; /* 米白色链接 */
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 2px 5px;
    border-radius: 3px;
}

#nav a:hover {
    color: #FFFFFF; /* 纯白悬停 */
    background-color: rgba(255,255,255,0.15); /* 浅色悬停背景 */
    text-decoration: none;
}

#nav i.icon-chevron-right {
    color: #E8C8C6; /* 浅红色分隔符 */
    margin: 0 8px;
    font-size: 0.8em;
}

/* 当前页面名称样式 */
#nav > :last-child {
    color: #FFFFFF; /* 纯白当前页 */
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.underline {
    color: var(--reded);
    font-weight: 500;
    text-decoration: underline;
}
.lead {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #555;
}

@media (max-width: 768px) {
    .company-intro {
        grid-template-columns: 1fr; /* 移动端单列显示 */
    }

    .intro-item {
        padding: 15px;
    }

    .intro-item h2 {
        font-size: 1.3rem;
    }

    .intro-item p {
        font-size: 0.95rem;
    }
}
   .contd2 {
        padding: 20px;
    }
    
    .about-us-images img {
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    #nav {
        padding: 12px 5%;
        font-size: 0.85rem;
    }
    
    #nav i.icon-chevron-right {
        margin: 0 5px;
    }
}



/* Service Process Section */
.service-process {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
}


.service-process h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: #9A1F1C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.step h3 {
    color: #9A1F1C;
    margin-bottom: 1rem;
    padding-right: 3rem;
}

.step ul {
    list-style: none;
}

.step li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
    text-align: left;
}

.step li::before {
    content: "•";
    color: #9A1F1C;
    position: absolute;
    left: 0;
}

.step li strong {
    color: #333;
}
.step  p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Custom Options Section */
.custom-options {
    margin: 3rem 0;
}

.custom-options h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.option-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-card h3 {
    color: #9A1F1C;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.option-card ul {
    list-style: none;
}

.option-card li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
    text-align: left;
}

.option-card li::before {
    content: "•";
    color: #9A1F1C;
    position: absolute;
    left: 0;
}

.option-card li strong {
    color: #333;
}

/* Technical Standards Section */
.technical-standards {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
}

.technical-standards h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 800px;
}

.spec-table th, .spec-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.spec-table th {
    background-color: #f9f9f9;
    color: #9A1F1C;
    font-weight: 600;
}

.spec-table tr:hover {
    background-color: #f5f5f5;
}

.spec-table td:first-child {
    font-weight: 500;
}

.spec-table td:nth-child(2) {
    color: #9A1F1C;
    font-weight: 600;
}

/* Case Showcase Section */
.case-showcase {
    margin: 3rem 0;
}

.case-showcase h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.case-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-gallery figure {
    margin: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.case-gallery figure:hover {
    transform: translateY(-5px);
}

.case-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-gallery figcaption {
    padding: 1.5rem;
}

.case-gallery figcaption h3 {
    color: #9A1F1C;
    margin-bottom: 1rem;
}

.case-gallery figcaption p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.case-gallery figcaption ul {
    list-style: none;
    margin-top: 1rem;
}

.case-gallery figcaption li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: #555;
    text-align: left;
}

.case-gallery figcaption li::before {
    content: "•";
    color: #9A1F1C;
    position: absolute;
    left: 0;
}

/* Icons */
.icon-craft, .icon-wood, .icon-ruler, .icon-case {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    margin-right: 0.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-craft {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239A1F1C'%3E%3Cpath d='M12 2L4 7v10l8 5 8-5V7L12 2zm-1 14.5v-5l5-2.5V14l-5 2.5z'/%3E%3C/svg%3E");
}

.icon-wood {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239A1F1C'%3E%3Cpath d='M12 3L2 12h3v8h14v-8h3L12 3zm0 4.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z'/%3E%3C/svg%3E");
}

.icon-ruler {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239A1F1C'%3E%3Cpath d='M3 5v14h18V5H3zm16 2v2H5V7h14zm0 4v2H5v-2h14zm0 4v2H5v-2h14z'/%3E%3C/svg%3E");
}

.icon-case {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239A1F1C'%3E%3Cpath d='M14 6V4h-4v2h4zM4 8v11h16V8H4zm16-2c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2h4z'/%3E%3C/svg%3E");
}
.benefits-section {
    margin: 2rem 0;
    padding: 2rem 0;
    background-color: var(--background-alt);
    border-radius: var(--radius);
}

.benefits-section .section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.benefits-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
    padding: 0 1rem;
}

.benefit-item {
    background: white;
    padding: 1.8rem 1.2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--border);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
    text-align: center;
}

/* 自定义图标样式（如果使用 FontAwesome 或其他图标库） */
.icon-custom {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: rgba(154, 31, 28, 0.1);
    border-radius: 50%;
    display: inline-block;
}
@media (max-width: 768px) {
    .benefits-section {
        margin: 1.5rem 0;
        padding: 1.5rem 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .benefits-section .section-title {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        gap: 1rem;
        padding: 0 0.8rem;
        grid-template-columns: 1fr; /* 移动端强制单列 */
    }
    
    .benefit-item {
        padding: 1.2rem 0.8rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .benefit-item h4 {
        font-size: 1rem;
    }
    
    .benefit-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .benefits-section .section-title {
        font-size: 1.3rem;
    }
    
    .benefit-item i {
        font-size: 2rem;
    }
    
    .benefits-grid {
        padding: 0 0.5rem;
        gap: 0.8rem;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .process-steps, .option-grid, .case-gallery {
        grid-template-columns: 1fr;
    }
    
    .spec-table {
        font-size: 0.9rem;
    }
    
    .step, .option-card {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    .step-number {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .spec-table th, .spec-table td {
        padding: 0.8rem;
    }
}
       /* Accordion styles */
 .accordion {
    width: 100%;
    max-width: 1200px; /* 保持最大宽度限制 */
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    box-sizing: border-box; /* 确保边框包含在宽度内 */
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-title {
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
    color: #333;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    transition: background-color 0.3s ease;
    gap: 5px; /* 标题和元数据之间的间距 */
}

.accordion-title:hover {
    background-color: #e9e9e9;
}

/* 标题和元数据样式 */
.review-title {
    font-weight: bold;
    margin-right: 30px; /* 为+/-符号留出空间 */
}

.review-meta {
    font-weight: normal;
    font-size: 0.85em;
    color: #666;
}

/* 展开/收起指示器 */
.accordion-title::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-title::after {
    content: '-';
}

/* 内容区域 */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
}

.accordion-item.active .accordion-content {
    max-height: 100%; /* 根据实际内容调整 */
    transition: max-height 0.5s ease-in;
}

.accordion-content-inner {
    padding: 20px;
}

/* 评价内容样式 */
.review-details p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
    font-size: 1em;
}

.review-rating {
    color: #ffc107; /* 星星颜色 */
    font-size: 1.1em;
}

.review-rating i {
    margin-right: 2px;
}

.review-rating span {
    color: #333;
    margin-left: 8px;
    font-weight: bold;
}

/* 响应式调整 */
@media (max-width: 600px) {
    .accordion {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .accordion-title {
        padding: 12px 15px;
    }
    
    .review-title {
        font-size: 0.95em;
    }
    
    .review-meta {
        font-size: 0.8em;
    }
    
    .accordion-content-inner {
        padding: 15px;
    }
    
    .accordion-title::after {
        right: 15px;
        font-size: 1.4rem;
    }
}
        
        /* Country list styles */
        .country-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 10px;
        }
        
        .country-list a {
            display: flex;
            align-items: center;
            padding: 8px 10px;
            color: #333;
            border-radius: 3px;
            transition: background-color 0.2s;
            gap: 8px;
        }
        
        .country-list a:hover {
                color: #9A1F1C; /* 更亮的红色作为悬停色 */
    text-decoration: underline; /* 悬停时显示下划线 */
    text-decoration-thickness: 2px; /* 下划线粗细 */
    text-underline-offset: 3px; /* 下划线偏移 */
        }
        
        .flag-icon {
            width: 20px;
            height: 15px;
            border: 1px solid #eee;
        }

        
        /* Responsive adjustments */
        @media (max-width: 600px) {
            .country-list {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
            
            .accordion-title {
                padding: 12px 15px;
            }
            
            .accordion-content-inner {
                padding: 15px;
            }
        }
		
/* 增强产品目录样式 */
#product-catalog .product-card {
    background: white;
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#product-catalog .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

#product-catalog .product-card h3 {
    color: #9A1F1C;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.8rem;
}

#product-catalog .product-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

#product-catalog .product-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.6rem 0;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.2rem;
}

#product-catalog .product-links a:hover {
    color: #9A1F1C;
    background-color: #f9f9f9;
    padding-left: 1.5rem;
}

#product-catalog .ColorBottom {
    color: #9A1F1C;
    font-weight: 600;
    position: relative;
}

#product-catalog .ColorBottom:before {
    content: "";
    position: absolute;
    left: -1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #9A1F1C;
    border-radius: 50%;
}

/* 响应式调整 */
@media (max-width: 768px) {
    #product-catalog .product-grid {
        grid-template-columns: 1fr;
    }
    
    #product-catalog .product-card {
        padding: 1.2rem;
    }
}

        
  .hero-custom {
        display: inline-block;
        background-color: #9A1F1C; /* 指定的深红色 */
        color: #fff !important;
        padding: 12px 30px;
        border-radius: #333;
        text-decoration: none;
        font-weight: 600;
        transition: #666;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        margin-left: 15px; /* 如果与其他按钮并排，添加间距 */
    }
    
    .hero-custom:hover {
        background-color: #8c1a16; /* 悬停时稍深的红色 */
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    /* 如果按钮需要与主CTA按钮并排 */
    .hero-actions {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
        /* Product Detail Section */
        .product-detail {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .product-gallery {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: #666;
            box-shadow: #333;
            overflow: hidden;
        }
        
        .product-info {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: #333;
            box-shadow: #666;
            padding: 30px;
        }
        
        .product-info_title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #333;
            border-bottom: 2px solid var(#666);
            padding-bottom: 10px;
        }
        
        .product-specs {
            margin-bottom: 25px;
        }
        
        .spec-item {
            margin-bottom: 12px;
            display: flex;
        }
        
        .spec-label {
            font-weight: 600;
            min-width: 120px;
            color: #333;
        }
        
        .spec-value {
            flex: 1;
        }
        
        /* Product Overview */
        .product-overview {
            background: white;
            border-radius: #333
            box-shadow: #333;
            padding: 40px;
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #333;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;

            width: 80px;
            height: 3px;
            background: #333;
            margin: 15px auto 0;
        }
        
        .product-description {
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .product-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .gallery-image {
            width: 100%;
            border-radius: #666;
            box-shadow: #333;
            transition: all 0.3s ease;;
        }
        
        .gallery-image:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }
 
        
        hr.divider {
            border: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, #ddd, transparent);
            margin: 30px 0;
        }
        
        @media (max-width: 768px) {
            .product-hero_title {
                font-size: 2rem;
            }
            
            .product-detail {
                flex-direction: column;
            }
            
            .product-gallery, .product-info {
                min-width: 100%;
            }
        }
		
/* Private Health Consultant Specific Styles */
.intro-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: center;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: #9A1F1C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.highlight-card h3 {
    color: #9A1F1C;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.highlight-card ul {
    list-style: none;
    padding: 0;
}

.highlight-card li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.highlight-card li::before {
    content: "•";
    color: #9A1F1C;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-header {
    background: #9A1F1C;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.package-header h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 600;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
}

.package-features {
    padding: 1.5rem;
    list-style: none;
}

.package-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-features li::before {
    content: "✓";
    color: #9A1F1C;
    position: absolute;
    left: 0;
}

.package-btn {
    display: block;
    background: #9A1F1C;
    color: white;
    text-align: center;
    padding: 0.8rem;
    margin: 0 1.5rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.package-btn:hover {
    background: #8c1a16;
    color: white;
    text-decoration: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    padding-bottom: 1.5rem;
}

.team-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-card h4 {
    color: #9A1F1C;
    margin-bottom: 0.5rem;
}

.title {
    color: #777;
    margin-bottom: 1rem;
}

.bio {
    padding: 0 1.5rem;
    color: #555;
    line-height: 1.6;
}

.tcm-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;

    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 0.5rem;
	  display: flex;
  align-items: center; 
  gap: 0.5rem; 
}
.form-note {
    margin: 1.5rem;
    text-align: center;
  font-size: 0.9rem;
    color: #555;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

.form-group input {
  flex: 1; /* 让 input 自动填充剩余空间 */
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}
.form-group select,
.form-group textarea {
    flex: 1; 
    padding: 0.3rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}



.form-submit {
    background: #9A1F1C;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    background: #8c1a16;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
    color: #555;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.fas {
    margin-right: 0.5rem;
    color: #9A1F1C;
}

@media (max-width: 768px) {
    .service-highlights,
    .package-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-card,
    .package-card,
    .team-card {
        margin-bottom: 1.5rem;
    }
    
    .tcm-form {
        padding: 1.5rem;
    }
}

/* 常见问题折叠面板样式 */
.accordion2 {
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}
.accordion2 .container > p {
    text-align: center;
    margin: 15px auto 30px;
    color: #777;
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
}
.accordion2-item {
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.accordion2-button {
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    background-color: #f8f8f8;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion2-button:hover {
    background-color: #f0f0f0;
}

.accordion2-title {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.accordion2-button .icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: transform 0.3s;
    margin-left: 10px;
}

.accordion2-button[aria-expanded="true"] .icon {
    transform: rotate(-135deg);
}

.accordion2-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
    font-size: 0.9rem;
}

.accordion2-content-inner {
    padding: 20px;
}

.accordion2-button[aria-expanded="true"] + .accordion2-content {
    max-height: none; /* 足够大的值以容纳内容 */
}


.responsive-table-container {
  width: 100%;
  overflow-x: auto;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
  display: table;
}

.table-header {
  display: table-header-group;
}

.table-body {
  display: table-row-group;
}

.table-row {
  display: table-row;
}

.table-cell {
  display: table-cell;
  padding: 12px 15px;
  border: 1px solid #ddd;
  vertical-align: top;
}

.header-cell {
  font-weight: bold;
  background-color: #f5f5f5;
}

/* 响应式处理 - 小屏幕下变为垂直布局 */
@media screen and (max-width: 600px) {
  .responsive-table {
    display: block;
  }
  
  .table-header {
    display: none;
  }
  
  .table-body {
    display: block;
  }
  
  .table-row {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #ddd;
  }
  
  .table-cell {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    border: none;
    border-bottom: 1px solid #eee;
  }
  
  .table-cell:before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 10px;
  }
  
  .table-cell:last-child {
    border-bottom: 0;
  }
}

/* ===== 全局医疗主题样式 ===== */
.treatment-plan {
  background-color: #f9f5f0;
  padding: 30px 0;
  color: #333;
  line-height: 1.6;
}

/* ===== 治疗计划区块 ===== */
.plan-section {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(175, 31, 27, 0.1);
  padding: 20px;
  margin-bottom: 25px;
}

.plan-section h3 {
  color: #A71F1B;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

/* ===== 中药处方项样式 ===== */
.plan-item {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px dashed #999;
  transition: transform 0.3s;
}

.plan-item:hover {
  transform: translateY(-2px);
}

.herb-image {
  width: 120px;
  height: 120px;
  border: 1px solid #f0e6e6;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.herb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.herb-image:hover img {
  transform: scale(1.05);
}

.herb-details {
  flex: 1;
}

.herb-details h4 {
  color: #333;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 16px;
}

.herb-details p {
  color: #666;
  font-size: 13px;
  margin-bottom: 10px;
}

/* ===== 服务项目样式 ===== */
.service-item {
  padding: 15px 0;
  border-bottom: 1px dashed #999;
}

.service-item h4 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
}

.service-item p {
  color: #666;
  font-size: 13px;
  margin-bottom: 10px;
}

/* ===== 价格操作区 ===== */
.herb-actions, .service-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.price {
  color: #A71F1B;
  font-weight: bold;
  font-size: 16px;
}

.btn-remove, .btn-reschedule {
  color: #666;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
  padding: 0;
}

.btn-remove:hover {
  color: #d32f2f;
}

.btn-reschedule:hover {
  color: #1976d2;
}

/* ===== 结算汇总卡 ===== */
.checkout-summary {
  position: sticky;
  top: 20px;
}

.summary-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(175, 31, 27, 0.1);
  padding: 25px;
}

.summary-card h3 {
  color: #A71F1B;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
}

.summary-row.total {
  border-top: 1px solid #eee;
  padding-top: 12px;
  font-weight: bold;
  font-size: 18px;
  color: #A71F1B;
}

/* ===== 结算按钮 ===== */
.btn-checkout {
  display: block;
  background: #A71F1B;
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-weight: 500;
  margin: 25px 0 15px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-checkout:hover {
  background: #8c1a1a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(167, 31, 27, 0.2);
}

.security-note {
  font-size: 13px;
  color: #666;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-note i {
  margin-right: 5px;
  color: #4CAF50;
}

/* ===== 动画效果 ===== */
@keyframes subtlePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.btn-checkout {
  animation: subtlePulse 3s infinite;
}

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {
  .plan-item {
    flex-direction: column;
  }
  
  .herb-image {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
  }
  
  .checkout-summary {
    position: static;
    margin-top: 30px;
  }
  
  .herb-details h4,
  .service-item h4 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .herb-actions, .service-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .price {
    font-size: 15px;
  }
  
  .herb-details h4,
  .service-item h4 {
    font-size: 15px;
  }
  
  .herb-details p,
  .service-item p {
    font-size: 12px;
  }
  
  .btn-checkout {
    padding: 10px;
    font-size: 15px;
  }
}
.fixedTop {
	position:sticky;
	top: 0px;
	width:100%;
	float: right;
	line-height: 1.5em;
	border-bottom-width: 0px;
	border-bottom-style: dashed;
	z-index:9998;
}
.fixedBottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    gap: 1rem;
    border-top: 1px solid var(--border);
}
.fixedBottom .btn {
    background: var(--primary);
    border: none;
    padding: 0;
}

.fixedBottom .btn:hover {
    background: var(--primary-dark);
}
ul {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    padding-left: 0.2em !important;
    font-size: 0.9rem;
}

/* 去掉所有列表项的点 */
li {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    background-image: none !important;
  color: #666 !important;
}

/* 保持有序列表的数字 */
ol {
    list-style-type: decimal !important;
    padding-left: 0.5em !important;
}

@media (max-width: 768px) {
    .container {
        width: 99.4%;      /* 100% - 0.3%*2 = 99.4% */
        padding: 0 0.3%;   /* 左右各0.3% */
    }
}

@media (max-width: 480px) {
    .container {
        width: 99.4%;
        padding: 0 0.3%;
    }
}
@media (max-width: 768px) {
    .container,
    .container60 {
        width: 99.4%;
        padding: 0 0.3%;
    }
    
    .hero {
        padding: 2rem 0.3%;
    }
    
    .values,
    .products,
    .global {
        padding: 2rem 0.3%;
    }
    
    .contact-info {
        padding: 0 0.3%;
    }
    
    .contd {
        padding: 0.5rem 0.5rem;
    }
}