
     :root {
            --primary-color: #004a99;    
            --secondary-color: #007bff;     
            --light-bg: #f9f9fb;            
            --card-bg: white;              
            --text-color: #2c3e50;          
            --soft-border: #e6e6e9;        
            --shadow-elevation: 0 4px 12px rgba(0, 0, 0, 0.08); 
            --radius: 8px;             
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
            margin: 0;
            padding: 0;
        }
        
        .tag-page-container a {
            text-decoration: none;
            color: var(--secondary-color);
            transition: color 0.3s;
        }
        .tag-page-container a:hover {
            color: var(--primary-color);
        }

        .tag-page-container {
            max-width: 1430px; 
            margin: 0 auto;
            padding: 120px 30px 60px 30px !important; 
        }
        
        header {
            background-color: var(--primary-color); 
            color: white; 
            padding: 20px 30px; 
            text-align: left; 
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .breadcrumb {
            background-color: var(--card-bg);
            padding: 15px 30px;
            font-size: 0.9em;
            border-bottom: 1px solid var(--soft-border);
        }

        .tag-hero-section {
            padding: 40px 0;
            margin-bottom: 30px;
        }

        .tag-title {
            font-size: 3.5em; 
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
            letter-spacing: -0.5px;
            text-align: center;
        }
        .tag-hero-section .hero-section-p {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
            color: var(--primary-color);
        }
        
        .editor-content-1 {
            font-size: 16px;
            color: #555;
            padding: 20px;
            background-color: #e6f0ff;
            border-radius: var(--radius);
            line-height: 1.8;
            border-left: 5px solid var(--secondary-color);
        }
        .editor-content-1 strong {
            font-weight: bold;
        }
        .product-preview-section .list {
  margin-top: 50px;
}


.product-preview-section .list span.swiper-notification {
  display: none;
}
.product-preview-section .list .box {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.product-preview-section .list .newbox1 {
  padding: 10px;
  background: #eeeeee;
}
.product-preview-section .box .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product-preview-section .list .box .con {
  margin-top: 20px;
}
.product-preview-section .list .box .con p {
    font-size: 14px;
}
.product-preview-section .list .box .con h6 {
  font-size: 16px;
  font-family: Roboto;
  font-weight: 700;
  color: #111111;
  line-height: 1.5;
  text-transform: capitalize;
}
        .content-matrix {
            display: grid;
            gap: 40px;
            grid-template-columns: 2fr 1fr; 
        }

        .editor-module {
            font-size: 14px;
            background-color: var(--card-bg);
            padding: 20px;
            border-radius: var(--radius);
            margin-bottom: 30px;
            box-shadow: var(--shadow-elevation);
            transition: transform 0.3s;
        }
        .editor-module:hover {
            transform: translateY(-2px);
        }
        .editor-module strong {
            font-weight: bold;
        }
        .editor-module h2 {
            font-size: 1.8em;
            color: var(--text-color);
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 10px;
            margin-top: 0;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .editor-module h3,.editor-module h4 {
             color: var(--primary-color);
             margin-bottom: 10px;
             font-weight: bold;
             font-size: 24px;
             text-align: center;
        }
        
        .editor-module ul {
            list-style: none;
            padding-left: 0;
        }
        .editor-module li {
            padding: 5px 0;
            border-bottom: 1px dotted var(--soft-border);
            position: relative;
            padding-left: 20px;
            line-height: 2;
        }
        .editor-module li::before {
            content: '✓';
            color: var(--secondary-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .info-column1 table th, .info-column1 table td{
            padding: 5px 10px;
    border: 1px solid #666;
    width: 50%;
        }
        .info-column1 table th {
            font-weight: bold;
        }
        .info-column1 table tbody tr td:first-of-type {
            font-weight: bold;
        }
        .spec-table {
            width: 100%;
            border-collapse: separate; 
            border-spacing: 0;
            margin-top: 15px;
            border-radius: var(--radius);
            overflow: hidden;
        }
        .spec-table th, .spec-table td {
            padding: 15px;
            text-align: left;
            font-size: 0.95em;
            border-bottom: 1px solid var(--soft-border);
        }
        .spec-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 400;
            text-transform: uppercase;
        }
        .spec-table tr:last-child td {
            border-bottom: none;
        }
        .product-preview-section {
            padding-top: 40px;
            border-top: 1px solid var(--soft-border);
            margin-bottom: 40px;
        }
        .product-preview-section h2 {
            font-size: 2.2em;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 30px;
        }
        
        .product-preview-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .preview-card {
            width: 300px;
            padding: 20px;
            background-color: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow-elevation);
            transition: box-shadow 0.3s;
            text-align: center;
        }
        .preview-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .preview-card img {
            border-radius: 4px;
            transition: opacity 0.3s;
        }
        .preview-card:hover img {
            opacity: 0.9;
        }
        .preview-card h3 {
            font-size: 1.2em;
            color: var(--text-color);
            margin: 15px 0 5px 0;
        }
        .preview-card a {
            display: inline-block;
            margin-top: 10px;
            padding: 8px 15px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 4px;
        }
        .preview-card a:hover {
            background-color: var(--primary-color);
        }
.editor-module1 {
            margin: 30px 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        .editor-module1 h3, .editor-module1 h4, .editor-module-faq h4{
            text-align: center;
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 25px;
            padding-top: 20px;
            font-weight: bold;
            position: relative;
            padding-bottom: 10px;
        }
        .editor-module1 h3::after,.editor-module1 h4::after, .editor-module-faq h4::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 8px auto 0;
            border-radius: 2px;
        }
        .jinfeng-ul-1 {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            justify-content: space-between;
            gap: 25px;
            flex-wrap: wrap;
            padding-bottom: 30px;
        }
        .jinfeng-ul-1 li {
            flex: 1 1 auto; 
            min-width: min-content; 
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }
        .jinfeng-ul-1 li:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border-color: #007bff;
        }
        .jinfeng-ul-1 li::before {
            content: '⭐';
            font-size: 36px; 
            margin-right: 15px;
            color: #ffc107;
            line-height: 1;
        }
        .jinfeng-ul-1 li span {
            font-size: 18px;
            color: #333;
            font-weight: 600;
            display: inline;
        }
.editor-module-service h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    font-weight: bold;
    text-align: left;
}
.editor-module-faq {
    background-color: #fcfcfc;
    padding: 15px 10px; 
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
    font-size: 14px;
}
.editor-module-faq h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    font-weight: bold;
}
.editor-module-faq ul {
    list-style: none;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden; 
}
.editor-module-faq li {
    padding: 15px;
    transition: background-color 0.3s ease;
}
.editor-module-faq li:first-child {
    font-weight: bold;
    cursor: pointer; 
    background-color: #f7f7f7;
    color: #333;
    border-bottom: 1px solid #ddd;
    position: relative; 
}
.editor-module-faq li:first-child::after {
    content: '+'; 
    position: absolute;
    right: 5px;
    font-size: 1.2em;
    line-height: 1;
    top: 50%; 
    transform: translateY(-50%); 
    transition: transform 0.3s ease, content 0.3s ease;
}
.editor-module-faq li:first-child.expanded::after {
    content: '-'; 
}
.editor-module-faq li:last-child {
    background-color: #ffffff;
    color: #555;
    max-height: 0; 
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.3s ease;
}
.editor-module-faq li:last-child.active {
    max-height: 500px; 
    padding: 15px;
    opacity: 1;
}
.more-info {
    background-color: #FFFFFF;
    border-radius: 8px;  
    border: 1px solid #E0E0E0; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); 
    padding: 25px 30px; 
    margin-top: 40px;
}
.more-info h2 {
    color: #2c3e50;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
}
.more-info p {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 20px;
}
.more-info ul {
    list-style: none; 
    padding: 0;
    margin: 0;
    
    display: flex; 
    flex-wrap: wrap; 
    justify-content: flex-start; 
}
.more-info li {
    margin: 0;
    padding: 0;
    margin-right: 15px;
    margin-bottom: 10px;
}
.more-info a {
    display: block; 
    text-decoration: none; 
    color: #2980b9;
    background-color: #ecf0f1;
    border: 1px solid #bdc3c7; 
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    
    white-space: nowrap; 
    transition: all 0.2s;
}

.more-info a:hover {
    background-color: #3498db;
    border-color: #3498db;
    color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3); 
}
        @media (max-width: 900px) {
            .content-matrix {
                grid-template-columns: 1fr; 
                gap: 20px;
            }
            .tag-title {
                font-size: 2.5em;
            }
            .editor-module {
                margin-bottom: 20px;
            }
            .tag-page-container, header, .breadcrumb {
                padding-left: 15px;
                padding-right: 15px;
            }
        }
        @media (max-width: 768px) {
            .jinfeng-ul-1 {
                flex-direction: column;
                gap: 15px;
            }
            .jinfeng-ul-1 li {
                width: 100%;
                min-width: unset;
                justify-content: flex-start;
                padding: 15px;
            }
        }

 








  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
  }
  h1 { font-size: 32px; font-weight: 700; color: #8B5A2B; }
  h2 { font-size: 26px; font-weight: 600; border-bottom: 2px solid #D4A76A; padding-bottom: 8px; }
  h3 { font-size: 20px; font-weight: 600; color: #8B5A2B; margin-top: 28px; }
  h4 { font-size: 18px; font-weight: 600; color: #4A90E2; }
  .spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 15px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(212, 167, 106, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.spec-table th {
  background: #D4A76A;
  color: white;
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
}

.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

.spec-table tr:nth-child(even) {
  background-color: #fcfbf8;
}

.spec-table tr:hover {
  background-color: #f5f2ed;
}
.feature-card {
  background: #F9F7F3;
  border-left: 4px solid #D4A76A;
  padding: 16px 20px;
  margin: 18px 0;
  border-radius: 0 6px 6px 0;
  position: relative;
}

.feature-card:before {
  content: "✓";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  color: #5CB85C;
  font-size: 18px;
}
.faq-question {
  cursor: pointer;
  font-weight: 600;
  color: #8B5A2B;
  padding: 12px 0;
  font-size: 16px;
  position: relative;
}
.faq-question::after {
  content: "+"; position: absolute; right: 0; font-size: 20px;
}
.faq-question.active::after { content: "−"; }
.faq-answer { display: none; padding-top: 8px; color: #555; }
footer {
  background: #F9F7F3;
  color: #333;
  padding: 40px 0 20px;
}
footer h3 { color: #8B5A2B; font-size: 18px; }
footer a { color: #D4A76A; }
footer .contact-info li { color: #555; }
.tag-cloud { margin: 20px 0; }
.tag {
  display: inline-block;
  margin: 5px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #D4A76A;
  border-radius: 20px;
  font-size: 13px;
  color: #8B5A2B;
  transition: all 0.3s;
}
.tag:hover {
  background: #D4A76A;
  color: white;
}
/* === GOOBAGEL CLEAN LABEL PAGE STYLING === */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background-color: #F9F7F3;
}

h1 { font-size: 32px; font-weight: 700; color: #8B5A2B; }
h2 { font-size: 26px; font-weight: 600; border-bottom: 2px solid #D4A76A; padding-bottom: 8px; margin-top: 40px; }
h3 { font-size: 20px; font-weight: 600; color: #8B5A2B; margin-top: 30px; }

/* 规格表格 */
.spec-table {
  width: 100%; border-collapse: collapse; margin: 25px 0;
  background: #fff; box-shadow: 0 4px 12px rgba(212,167,106,0.1); border-radius: 8px;
}
.spec-table th {
  background: #D4A76A; color: white; font-weight: 600; padding: 14px 16px; text-align: left;
}
.spec-table td {
  padding: 14px 16px; border-bottom: 1px solid #eee;
}
.spec-table tr:nth-child(even) { background-color: #fcfbf8; }

/* 特性区块 */
.feature-card {
  background: #F9F7F3; border-left: 4px solid #D4A76A;
  padding: 16px 20px; margin: 18px 0; border-radius: 0 6px 6px 0;
}
.feature-card:before {
  content: "✓"; position: absolute; left: -20px; top: 50%;
  transform: translateY(-50%); font-weight: bold; color: #5CB85C; font-size: 18px;
}

/* FAQ */
.faq-question {
  cursor: pointer; font-weight: 600; color: #8B5A2B; padding: 12px 0; font-size: 16px;
}
.faq-question::after { content: "+"; position: absolute; right: 0; font-size: 20px; }
.faq-question.active::after { content: "−"; }
.faq-answer { display: none; padding-top: 8px; color: #555; }

/* 标签云 */
.tag-cloud { margin: 20px 0; }
.tag {
  display: inline-block; margin: 5px; padding: 6px 14px;
  background: #fff; border: 1px solid #D4A76A; border-radius: 20px;
  font-size: 13px; color: #8B5A2B; transition: all 0.3s;
}
.tag:hover { background: #D4A76A; color: white; }

/* 页脚 */
footer {
  background: #F9F7F3; color: #333; padding: 40px 0 20px;
}
footer h3 { color: #8B5A2B; font-size: 18px; }
footer a { color: #D4A76A; }

/* =========================================
   About Goobagel 区域样式优化
   ========================================= */

/* 1. 整体容器调整：增加上下间距，防止与上方内容粘连 */
.Auxil-about {
    margin-top: 60px;      /* 增加顶部距离 */
    margin-bottom: 60px;   /* 增加底部距离 */
    padding: 20px 0;
}

/* 2. 标题样式：增加颜色识别度和下方间距 */
.Auxil-about .title.color_3 {
    font-size: 28px;       /* 加大标题字号 */
    font-weight: 700;      /* 加粗 */
    color: #D4A76A;        /* 使用品牌金棕色，呼应贝果主题 */
    margin-bottom: 30px;   /* 标题与下方内容的间距 */
    text-align: center;    /* 居中对齐更美观 */
    position: relative;
}

/* 可选：给标题加一个下划线装饰 */
.Auxil-about .title.color_3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #D4A76A;
    margin: 10px auto 0;
}

/* 3. 左右分栏布局调整：解决图片和文字过近的问题 */
.Auxil-about .box.grid-box.two {
    gap: 50px;             /* 【关键】设置左右两列之间的间距，原图太近了 */
    align-items: center;   /* 让图片和文字垂直居中对齐 */
}

/* 左侧图片框调整 */
.Auxil-about .left.column.img-box {
    border-radius: 12px;   /* 图片圆角，看起来更柔和 */
    overflow: hidden;      /* 确保图片不溢出圆角 */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* 添加轻微阴影，增加立体感 */
}

.Auxil-about .left.column img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 4. 右侧文字内容排版优化 */
.Auxil-about .right.column {
    padding-left: 10px;    /* 增加左侧内边距，作为视觉缓冲 */
}

/* 公司名称小标题 */
.Auxil-about .h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;   /* 公司名与正文的间距 */
}

/* 正文段落优化：解决文字密集问题 */
.Auxil-about .text {
    font-size: 15px;       /* 正文字号调整为15px，更易阅读 */
    line-height: 1.8;      /* 【关键】行高设置为1.8倍，大幅增加呼吸感 */
    color: #555;           /* 使用深灰色代替纯黑，减少视觉疲劳 */
    text-align: justify;   /* 两端对齐，使右侧边缘整齐 */
}

/* 链接样式优化 */
.Auxil-about .text a {
    color: #D4A76A;        /* 链接使用品牌色 */
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.Auxil-about .text a:hover {
    color: #8B5A2B;        /* 悬停变深棕色 */
    border-bottom-color: #8B5A2B;
}

/* 5. 移动端适配 (手机屏幕) */
@media (max-width: 768px) {
    .Auxil-about .box.grid-box.two {
        flex-direction: column; /* 改为上下排列 */
        gap: 30px;
    }
    
    .Auxil-about .right.column {
        padding-left: 0;
    }
    
    .Auxil-about .title.color_3 {
        font-size: 24px;
    }
}
/* 表格整体容器 */
.specs-table-container {
    background: #fff;
    border-radius: 8px; /* 圆角 */
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.08); /* 淡淡的棕色阴影 */
    overflow: hidden;
    margin-bottom: 40px;
}

/* 标题样式 */
.specs-title {
    color: #8B4513; /* 深烘焙棕 */
    font-family: 'Playfair Display', serif; /* 衬线体 */
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
}
/* 标题下加一个麦穗色的短横线装饰 */
.specs-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #D4A76A; /* 麦穗金 */
    margin: 10px auto 0;
}

/* 表格本身 */
table.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Lato', sans-serif;
}

/* 表头 */
table.specs-table th {
    background-color: #FDFBF7; /* 极淡的奶油色背景 */
    color: #5D4037;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px;
    border-bottom: 2px solid #D4A76A; /* 金色底边框 */
}

/* 单元格 */
table.specs-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

/* 第一列（属性名）加粗并设为深棕色 */
table.specs-table td:first-child {
    font-weight: 600;
    color: #8B4513;
    width: 30%; /* 固定宽度，防止文字换行过多 */
    background-color: #FAFAFA;
}

/* 鼠标悬停效果 - 增加互动感 */
table.specs-table tr:hover td {
    background-color: #FFF8E7; /* 悬停时显示淡黄色，像面团的颜色 */
}

/* 通用章节标题 */
.section-header {
    color: #8B4513;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 25px;
    border-left: 5px solid #D4A76A; /* 左侧金色竖条装饰 */
    padding-left: 15px;
}

/* --- Application 部分优化 --- */
.application-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 响应式网格 */
    gap: 20px;
}

.application-list li {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #eee;
    position: relative;
    padding-left: 50px; /* 给图标留位置 */
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    transition: transform 0.2s;
}

/* 给每个应用项加一个小图标（这里用伪元素模拟面包图标） */
.application-list li::before {
    content: '??'; /* 或者使用图片 url('icon-bread.png') */
    position: absolute;
    left: 15px;
    top: 20px;
    font-size: 20px;
}

.application-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #D4A76A;
}

/* --- Advantages 部分优化 --- */
.advantages-box {
    background-color: #FDFBF7; /* 奶油色背景块 */
    padding: 30px;
    border-radius: 12px;
    border: 1px dashed #D4A76A; /* 虚线边框，像缝纫线或面团切割线 */
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* 自定义蓝色的勾为金色的勾或麦穗 */
.advantages-list li::before {
    content: '?'; 
    color: #D4A76A; /* 金色勾 */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
}
@media (max-width: 900px) {
    .content-matrix{

       display: inline;
          gap: 20px;

}
