.elementor-1231 .elementor-element.elementor-element-d1c9514{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-6e4e86b *//* --- 全局设置 --- */
:root {
    --primary-red: #A91E26; /* 品牌红 */
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #F9F7F5; /* 暖米色背景，比纯白更有质感 */
    --font-serif: "Songti SC", "SimSun", "Times New Roman", serif; /* 宋体/衬线体，增加文化感 */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: #fff;
    color: var(--text-dark);
    line-height: 1.8;
}

/* --- 顶部 Banner 区域优化 --- */
.brand-hero {
    /* 建议这里加一张暗调的背景图，比如老汤锅的特写，或者模糊的店铺环境 */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('你的背景图地址.jpg'); 
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.brand-hero h1 {
    font-family: var(--font-serif);
    font-size: 48px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: normal;
}

.brand-hero .subtitle {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* --- 通用章节样式 --- */
.section-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* 章节标题设计：增加装饰线 */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--primary-red);
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
    z-index: 1;
    background: #fff; /* 遮挡住后面的线条 */
    padding-left: 20px;
    padding-right: 20px;
}

/* 标题下方的装饰横线 */
.section-title::after {
    content: "";
    position: absolute;
    top: 24px; /* 调整横线高度 */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    z-index: 0;
}

/* 正文段落优化 */
.content-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-gray);
    text-align: justify; /* 两端对齐更整齐 */
}

/* --- 重点引用语（金句）样式 --- */
.quote-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-red);
    padding: 30px 40px;
    margin: 40px 0;
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-dark);
    font-style: italic;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* --- “七道工序”卡片区域优化 --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

/* 鼠标悬停效果：上浮 + 阴影加深 */
.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(169, 30, 38, 0.1);
    border-color: rgba(169, 30, 38, 0.2);
}

.process-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.process-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.process-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

/* --- 结尾 Slogan 区域 --- */
.footer-slogan {
    background-color: var(--primary-red);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    margin-top: 40px;
}

.footer-slogan h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 10px;
}

.footer-slogan p {
    opacity: 0.8;
    font-size: 14px;
    letter-spacing: 1px;
}

/* --- 移动端适配微调 --- */
@media (max-width: 768px) {
    .brand-hero h1 { font-size: 32px; }
    .section-title h2 { font-size: 24px; }
    .quote-box { padding: 20px; font-size: 16px; }
}/* End custom CSS */