/* ==========================================
   页面主体内容区样式 (以 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;
}