/* ==========================================
   页面主体内容区样式 (以 eat_ 开头)
   ========================================== */

.eat_main_content {
    width: 1200px;
    margin: 0 auto;
    padding: 60px 0 100px;
}

/* 标题区域（纯图片） */
.eat_page_title {
    text-align: center;
    margin-bottom: 50px;
}

.eat_page_title img {
    height: 60px;
    margin: 0 auto;
}

/* 核心系列分割块标题 */
.eat_series_title {
    text-align: center;
    font-size: 20px;
    color: #d26cff;
    margin: 60px 0 40px;
    letter-spacing: 2px;
    font-weight: normal;
}

/* 信息区两栏式组合布局 */
.eat_info_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

/* 纯图片区（表面不堆叠文本，底部标识在切图中直接包含） */
.eat_image_box {
    width: 48%;
}

.eat_image_box img {
    width: 100%;
}

/* 纯文字排版区 */
.eat_text_box {
    width: 46%;
}

/* ------------------------------------------
   严格按照效果图实现的4种文本样式标准
   ------------------------------------------ */

/* 样式1：大标题 (支持普通黑字与韩系专研的深紫字) */
.eat_style1_title {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.eat_style1_title.eat_purple_theme {
    color: #8f4dff;
}

/* 样式2：大标题右侧配套的胶囊型紫底白字标签 */
.eat_style2_tag {
    background-color: #8f4dff;
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;
    padding: 4px 12px;
    border-radius: 4px;
    margin-left: 15px;
    letter-spacing: 1px;
}

/* 样式3：带有“○”空心圆前缀的段落小标题 */
.eat_style3_sub {
    font-size: 16px;
    color: #b070ff;
    font-weight: bold;
    margin-top: 18px;
    margin-bottom: 8px;
}

/* 样式4：具体介绍正文说明（灰色小字，保证两端对齐与呼吸感行高） */
.eat_style4_desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.8;
    text-align: justify;
}

/* ==========================================
   商品详情页 - 纯图通栏内容区 (以 eat_ 开头)
   ========================================== */

/* 【基准样式】主体为 PC 端页面样式 */
.eat_detail_wrapper {
    width: 1080px;        /* 严格对齐全站通用的 1200px 核心版心宽度 */
    margin: 0 auto;       /* PC端左右居中 */
    background-color: #ffffff;
    overflow: hidden;
}

.eat_detail_img {
    width: 100%;          /* 撑满 1200px 的容器 */
    height: auto;
    display: block;       /* 核心关键：转为块级元素，彻底消除图片间的缝隙 */
    border: 0;
}

@media screen and (max-width: 1200px) {
/* 主体容器宽度变为满屏并留出安全边距 */
    .eat_main_content {
        width: 100%;
        padding: 0;
    }

    /* 顶部图片标题高度缩放，避免在手机上过大 */
    .eat_page_title {
        margin-bottom: 30px;
    }
    .eat_page_title img {
        height: 40px;
    }

    .eat_series_title {
        margin: 40px 0 25px;
        font-size: 18px;
    }

    /* 两栏布局转单栏布局 */
    .eat_info_row {
        flex-direction: column;
        margin-bottom: 50px;
        gap: 25px; /* 图片与文字块之间的上下间距 */
    }

    /* 核心处理：利用 Flexbox 的 order 属性
       强行规范移动端阅读顺序：无论PC端谁左谁右，手机端一律【图片在上，文字在下】 */
    .eat_image_box {
        width: 100%;
        order: 1; 
    }

    .eat_text_box {
        width: 100%;
        padding: 0px 10px;
        order: 2;
    }

    /* 移动端文字微调：标题换行适配，防长标签溢出屏幕 */
    .eat_style1_title {
        font-size: 20px;
        margin-bottom: 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .eat_style2_tag {
        margin-left: 0; /* 换行后靠左对齐 */
    }
    
    .eat_style3_sub {
        margin-top: 12px;
    }

    .eat_detail_wrapper {
        width: 100%;      /* 当屏幕小于1200px（如手机、平板）时，取消固定宽度，改为100%自适应满屏 */
        padding: 0;       /* 确保移动端长图无缝贴边，获得最佳视觉体验 */
    }
    
    .eat_detail_img {
        width: 100%;      /* 手机端图片自动随屏幕宽度等比缩放，高度自动适应 */
        height: auto;
    }
}