@charset "UTF-8";article,aside,blockquote,body,button,code,dd,details,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,html,input,legend,li,menu,nav,ol,p,pre,section,td,textarea,th,ul {
    margin: 0;
    padding: 0
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: #f5f6f7;
    color: #333;
    font-family: "Open Sans","Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",Arial,Verdana,Tahoma,sans-serif;
    font-size: 15px;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

a {
    outline: 0;
    text-decoration: none;
    color: #333;
    -moz-transition: ease-in-out .25s;
    -webkit-transition: ease-in-out .25s;
    -o-transition: ease-in-out .25s;
    -ms-transition: ease-in-out .25s;
    transition: ease-in-out .25s
}

a:hover {
    color: #a40e09
}

li {
    list-style: none
}

a img {
    border: none
}

img {
    max-width: 100%;
    height: auto
}

img,svg {
    vertical-align: middle
}

hr {
    border: none;
    border-bottom: 1px solid #eee
}

.clearfix::after {
    content: "";
    display: block;
    clear: both
}

*,::after,::before {
    box-sizing: border-box
}

.clear {
    clear: both
}

/* 容器样式 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #a40e09;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #8a0c07;
    color: #fff;
}

/* 标题样式 */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #a40e09;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* 头部导航 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background: hsla(0, 0%, 100%, .9);
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .1);
}

.header.active{
    background-color: #fff;
}

.header.active .mobile-menu-toggle{
    color: #333;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-width: 180px;
    z-index: 1001;
}

.logo img{
    width: 120px;
}

.nav-menu ul {
    display: flex;
}

.nav-menu li {
    margin-left: 60px;
    position: relative;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    display: block;
}

.header.scrolled .nav-menu a {
    color: #333;
    text-shadow: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fff;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.header.scrolled .nav-menu a::after {
    background-color: #a40e09;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* 子菜单样式 */
.nav-menu .submenu {
    position: absolute;
    top: 100%;
    left: -40px;
    width: 150px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 5px;
    margin-top: 10px;
    text-align: left;
    display: block;
}

.nav-menu li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 68px;
    width: 12px;
    height: 12px;
    background-color: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}

.submenu li {
    margin: 0;
    width: 100%;
    display: block;
}

.submenu li a {
    color: #333 !important;
    padding: 10px 20px;
    text-shadow: none;
    font-size: 14px;
    font-weight: normal;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    display: block;
    writing-mode: horizontal-tb;
}

.submenu li a:hover {
    background-color: #f5f5f5;
    color: #DA0F2B !important;
}

.submenu li a::after {
    display: none;
}

/* 有子菜单的导航项添加小箭头 */
.nav-menu li:has(.submenu) > a {
    padding-right: 15px;
}

.nav-menu li:has(.submenu) > a::before {
    content: '\25BC';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    opacity: 0.8;
}

/* 子菜单活动状态 */
.nav-menu li.submenu-active > a::before {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    z-index: 1001;
}

.header.scrolled .mobile-menu-toggle {
    color: #333;
}

/* 轮播图 */
.banner {
    width: 100%;
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.swiper-wrapper {
    height: 100%;
}

.swiper-slide {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    background-color: rgba(0, 0, 0, 0.3);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
}

.index-banner .swiper-pagination-bullet-active {
    background-color: #EB0029;
    border-color: #fff;
    transform: scale(1.2);
}

/* 页脚 */
.footer {
    background-color: #DA0F2B;
    color: #fff;
    padding: 30px 0 20px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 20px;
}

.footer-nav a {
    color: #fff;
    font-size: 16px;
    margin: 0 15px;
    position: relative;
}

.footer-nav a:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.5);
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-info {
    flex: 0 0 33%;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 14px;
    max-width: 300px;
}

.footer-contact-info {
    flex: 0 0 33%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.foot_link{
    padding-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.foot_link a{color: #ffffff;margin-right: 5px;}

.hotline {
    display: flex;
    align-items: center;
}

.hotline i {
    font-size: 36px;
    margin-right: 15px;
    color: #fff;
}

.hotline-info h3 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.hotline-info p {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.footer-qrcode {
    flex: 0 0 33%;
    display: flex;
    justify-content: flex-end;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    background-color: #fff;
    padding: 5px;
    border-radius: 4px;
}

.qrcode-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

.copyright p {
    margin-bottom: 8px;
}

.copyright p>a {
    color: #f5f6f7;
}

/* 回到顶部按钮 */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-color: #a40e09;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
}

.back-to-top:hover {
    background-color: #8a0c07;
}

/* 淡入动画效果 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 加盟采访 */
.franchisee-interviews {
    padding: 60px 0;
    background-color: #EB0029;
    color: #fff;
}

.franchisee-interviews .container {
    max-width: 1240px;
}

.franchisee-interviews .section-title {
    color: #fff;
}

.franchisee-interviews .section-title::after {
    background-color: #fff;
}

.interview-list {
    display: flex;
    flex-wrap: wrap;
    margin: 40px -10px 0;
}

.interview-item {
    width: 25%;
    padding: 0 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.interview-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.interview-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.interview-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.interview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.interview-card:hover .interview-image img {
    transform: scale(1.05);
}

.interview-content {
    padding: 20px;
    background-color: #fff;
    color: #333;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.interview-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.interview-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.interview-date {
    font-size: 14px;
    color: #999;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.interview-date span {
    color: #666;
}

/* 宣传视频 */
.xuanchuan {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #000;
    margin: 0;
    padding: 0;
}

.xc-video {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
}

.xc-video video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 菜品轮播 */
.food-slider {
    background-color: #fff;
    width: 100%;
    overflow: hidden;
}

.food-swiper {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    height: auto;
}

.food-swiper .swiper-slide {
    width: 100%;
    text-align: center;
}

.food-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* 分页器样式 */
.food-swiper .swiper-pagination {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.food-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.food-swiper .swiper-pagination-bullet-active {
    background-color: #EB0029;
    border-color: #fff;
    transform: scale(1.2);
}

/* 导航按钮样式 */
.food-button-next,
.food-button-prev {
    color: #fff !important;
    background-color: rgba(235, 0, 41, 0.7);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.food-button-next:hover,
.food-button-prev:hover {
    background-color: rgba(235, 0, 41, 1);
}

.food-button-next:after,
.food-button-prev:after {
    font-size: 18px !important;
}

/* 通栏图片展示 */
.fullwidth-image {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
}

.fullwidth-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* 推荐文章 */
.recommended-articles {
    padding: 60px 0;
    background-color: #f5f6f7;
}

.article-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.article-item {
    width: 33.33%;
    padding: 0 15px;
}

.article-link {
    display: block;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.article-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-link:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 20px;
}

.article-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.article-link:hover .article-title {
    color: #EB0029;
}

.article-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 新闻资讯列表 */
.news-categories {
    padding: 60px 0;
    background-color: #fff;
}

.news-category-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.news-category-item {
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.category-header {
    border-bottom: 2px solid #EB0029;
    margin-bottom: 20px;
    position: relative;
}

.category-title {
    display: inline-block;
    background-color: #EB0029;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 20px;
    margin: 0;
    position: relative;
}

.category-article-list {
    margin-bottom: 15px;
}

.category-article {
    margin-bottom: 20px;
}

.category-article a {
    display: flex;
    align-items: baseline;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.category-article a:hover {
    color: #EB0029;
}

.article-dot {
    color: #EB0029;
    font-size: 18px;
    margin-right: 8px;
    line-height: 1;
    flex-shrink: 0;
}

.article-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}

.article-date {
    color: #999;
    font-size: 12px;
    flex-shrink: 0;
}

.category-more {
    text-align: center;
    margin-top: 20px;
}

.more-btn-text {
    display: inline-block;
    color: #666;
    font-size: 14px;
    padding: 5px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.more-btn-text:hover {
    color: #EB0029;
    border-color: #EB0029;
}

/* 关于我们页面样式 */
.page-title {
    background-color: #EB0029;
    color: #fff;
    padding: 80px 0 30px;
    text-align: center;
}

.page-title h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 14px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 公司简介部分 */
.about-section {
    padding: 60px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    color: #EB0029;
    font-size: 24px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* 企业文化部分 */
.culture-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.culture-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    justify-content: space-between;
}

.culture-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-10px);
}

.culture-icon {
    font-size: 48px;
    color: #EB0029;
    margin-bottom: 20px;
}

.culture-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.culture-philosophy {
    margin-top: 50px;
}

.culture-philosophy h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

.philosophy-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.philosophy-item {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.philosophy-item h4 {
    color: #EB0029;
    margin-bottom: 10px;
    font-size: 18px;
}

/* 发展历程部分 */
.history-section {
    padding: 50px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #EB0029;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.timeline-year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #EB0029;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    z-index: 1;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    margin-top: 30px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content h3 {
    color: #EB0029;
    margin-bottom: 10px;
    font-size: 20px;
}

/* 荣誉资质部分 */
.honors-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.honors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

.honor-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.honor-image {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.honor-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.honor-item:hover .honor-image img {
    transform: scale(1.05);
}

.honor-name {
    font-weight: bold;
    color: #333;
}

/* 加盟优势 */
.advantage-section {
    padding: 50px 0;
    background-color: #fff;
}

.advantage-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.advantage-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advantage-image img {
    width: 100%;
    height: auto;
    display: block;
}

.advantage-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.advantage-item {
    display: flex;
    margin-bottom: 35px;
    transition: transform 0.3s ease;
    width: 50%;
    padding-right: 10px;
}

.advantage-item:nth-last-child(2){
    margin-bottom: 0;
}

.advantage-item:last-child{
    margin-bottom: 0;
}

.advantage-item:hover {
    transform: translateX(10px);
}

.advantage-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: #EB0029;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
}

.advantage-info {
    flex: 1;
}

.advantage-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.advantage-info p {
    color: #666;
    line-height: 1.6;
}

/* 加盟流程 */
.process-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    flex: 0 0 calc(25% - 30px);
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #EB0029;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.step-icon {
    font-size: 40px;
    color: #EB0029;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 投资分析 */
.investment-section {
    padding: 50px 0;
    background-color: #fff;
}

.investment-content {
    margin-top: 30px;
}

.investment-table {
    overflow-x: auto;
    margin-bottom: 30px;
}

.investment-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #eee;
}

.investment-table th,
.investment-table td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #eee;
}

.investment-table th {
    background-color: #EB0029;
    color: #fff;
    font-weight: bold;
}

.investment-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.investment-table .total-row {
    background-color: #f5f5f5;
    font-weight: bold;
}

.investment-table .profit-row {
    background-color: #fff8f8;
    color: #EB0029;
}

.investment-notes {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.investment-notes h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.investment-notes ul {
    padding-left: 20px;
}

.investment-notes li {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
    list-style-type: disc;
}

/* 加盟问答 */
.faq-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-question .faq-icon {
    background-color: #EB0029;
    color: #fff;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 24px;
    color: #EB0029;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-box{
    display: flex;
    align-items: center;
}

.faq-answer .faq-icon {
    background-color: #f0f0f0;
    color: #EB0029;
    margin-top: 3px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* 加盟申请 */
.join-apply-section {
    padding: 50px 0;
    background-color: #fff;
}

.join-apply-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.join-apply-form {
    flex: 0 0 65%;
}

.form-group {
    margin-bottom: 20px;
    width: 48%;
    display: inline-block;
    vertical-align: top;
    margin-right: 2%;
}

.form-group.full-width {
    width: 100%;
    margin-right: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group .required {
    color: #EB0029;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.join-contact-info {
    flex: 0 0 30%;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.join-hotline {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.join-hotline i {
    font-size: 36px;
    color: #EB0029;
    margin-right: 15px;
}

.join-hotline .hotline-info h3 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 5px;
    color: #666;
}

.join-hotline .hotline-info p {
    font-size: 24px;
    font-weight: bold;
    color: #EB0029;
}

.join-qrcode {
    text-align: center;
    margin-bottom: 30px;
}

.join-qrcode img {
    width: 150px;
    height: 150px;
    background-color: #fff;
    padding: 5px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.join-qrcode p {
    color: #666;
}

.join-note {
    background-color: #fff8f8;
    padding: 15px;
    border-radius: 4px;
    border-left: 3px solid #EB0029;
}

.join-note h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #EB0029;
}

.join-note p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 菜品分类导航 */
.dish-category-nav {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.category-tab {
    padding: 8px 25px;
    margin: 0 8px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
}

.category-tab:hover {
    color: #EB0029;
    background-color: #f9f9f9;
    border-color: #EB0029;
}

.category-tab.active {
    color: #fff;
    background-color: #EB0029;
    border-color: #EB0029;
}

/* 菜品区块 */
.dish-section {
    padding: 60px 0;
}

.dish-section.bg-light {
    background-color: #f9f9f9;
}

.dish-description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #666;
    line-height: 1.8;
}

.dish-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.dish-item {
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.dish-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dish-item:hover .dish-image img {
    transform: scale(1.05);
}

.dish-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.dish-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.dish-brief {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    height: 45px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.dish-tags {
    display: flex;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    background-color: #f5f5f5;
    color: #EB0029;
    font-size: 12px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 5px;
}

.more-link {
    text-align: center;
    margin-top: 20px;
}

/* 翻页导航 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.page-num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 4px;
    background-color: #f5f5f5;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-num:hover {
    background-color: #e0e0e0;
    color: #333;
}

.page-num.page-num-current {
    background-color: #EB0029;
    color: #fff;
    cursor: default;
}

.page-num.next, 
.page-num.prev {
    font-size: 18px;
}

/* 查看更多按钮 */
.more-btn-wrapper {
    text-align: center;
    margin-top: 30px;
}

.btn-more-news {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    background-color: #fff;
    color: #EB0029;
    border: 2px solid #EB0029;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-more-news i {
    margin-left: 8px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-more-news:hover {
    background-color: #EB0029;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(235, 0, 41, 0.3);
}

.btn-more-news:hover i {
    transform: translateX(5px);
}

/* 新闻分类导航 */
.news-category-nav {
    background-color: #fff;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* 新闻列表页面样式 */
.news-list-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.news-list {
    margin-bottom: 40px;
}

.news-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    background-color: #fff;
    border-radius: 8px;
    height: 220px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    overflow: hidden;
}

/* 移除新闻列表项的hover效果 */
.news-item:hover {
    transform: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

.news-image {
    flex: 0 0 30%;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* 保留图片hover效果 */
.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    flex: 0 0 70%;
    padding: 22px;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    transition: color 0.3s ease;
    line-height: 1.4;
}

/* 保持标题hover效果 */
.news-item:hover .news-title {
    color: #EB0029;
}

.news-meta {
    display: flex;
    margin-bottom: 12px;
    color: #999;
    font-size: 14px;
}

.news-date, .news-views {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.news-date i, .news-views i {
    margin-right: 5px;
    font-size: 16px;
}

.news-summary {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    color: #EB0029;
    border: 1px solid #EB0029;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background-color: #EB0029;
    color: #fff;
}

/* 新闻板块标题间距调整 */
.news-section {
    padding: 50px 0;
}

.news-section.bg-light {
    background-color: #f9f9f9;
}

.news-section .section-title {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.news-section .section-title::after {
    width: 50px;
}

.news-section .news-list {
    margin-top: 15px;
}

/* 联系我们页面样式 */
.contact-info-section {
    padding: 60px 0;
    background-color: #fff;
}

.contact-info-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    justify-content: center;
}

.contact-info-item {
    flex: 0 0 calc(25% - 30px);
    margin: 0 15px 30px;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #EB0029;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 32px;
}

.contact-text h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* 地图和表单区域 */
.contact-form-map-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-form-map-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.contact-map, 
.contact-form {
    flex: 0 0 calc(50% - 30px);
    margin: 0 15px;
}

.section-title-left {
    text-align: left;
    margin-bottom: 25px;
    position: relative;
}

.section-title-left h2 {
    font-size: 28px;
    padding-bottom: 10px;
    position: relative;
}

.section-title-left h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #EB0029;
    bottom: 0;
    left: 0;
}

.map-container {
    height: 535px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.map-container img {
    width: 100%;
    height: 100%;
}

/* 表单样式 */
.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.btn-submit {
    background-color: #EB0029;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-submit:hover {
    background-color: #d00025;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(235, 0, 41, 0.3);
}

/* 加盟流程简介 */
.join-process-brief {
    padding: 60px 0;
    background-color: #fff;
}

.process-steps-brief {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px -15px 0;
}

.process-step-brief {
    flex: 0 0 calc(16.666% - 30px);
    margin: 0 15px 30px;
    text-align: center;
}

.process-step-brief .step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #EB0029;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.process-step-brief:hover .step-icon {
    background-color: #EB0029;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(235, 0, 41, 0.2);
}

.process-step-brief .step-icon i {
    font-size: 36px;
}

.process-step-brief .step-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.process-step-brief .step-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.join-action {
    text-align: center;
    margin-top: 20px;
}

.btn-primary {
    background-color: #EB0029;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d00025;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(235, 0, 41, 0.3);
}

/* 全国门店 */
.store-locations {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.region-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.region-tab {
    padding: 8px 20px;
    margin: 0 5px 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #ddd;
}

.region-tab:hover {
    color: #EB0029;
    border-color: #EB0029;
}

.region-tab.active {
    color: #fff;
    background-color: #EB0029;
    border-color: #EB0029;
}

.region-content {
    max-width: 900px;
    margin: 0 auto;
}

.region-stores {
    display: none;
}

.region-stores.active {
    display: block;
}

.store-city {
    margin-bottom: 30px;
}

.store-city h3 {
    font-size: 20px;
    color: #EB0029;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.store-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.store-list li {
    flex: 0 0 calc(33.333% - 30px);
    margin: 0 15px 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.store-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.store-list h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.store-list p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* 新闻详情页样式 */
.news-detail-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.news-detail-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.news-detail-main {
    flex: 0 0 calc(70% - 30px);
    margin: 0 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.news-detail-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.news-detail-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-detail-meta {
    color: #999;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
}

.news-detail-meta span {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.news-detail-meta i {
    margin-right: 5px;
    font-size: 16px;
}

.news-detail-content {
    padding: 30px;
    color: #333;
    line-height: 1.8;
}

.news-detail-content p {
    margin-bottom: 20px;
}

.news-detail-content h2 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #333;
}

.news-detail-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.news-detail-content ul li {
    list-style-type: disc;
    margin-bottom: 10px;
    color: #333;
}

.news-detail-share {
    padding: 20px 30px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.share-title {
    margin-right: 15px;
    color: #666;
}

.share-links {
    display: flex;
}

.share-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #666;
    transition: all 0.3s ease;
}

.share-link:hover {
    color: #fff;
}

.share-link.weixin:hover {
    background-color: #07C160;
}

.share-link.weibo:hover {
    background-color: #E6162D;
}

.share-link.qq:hover {
    background-color: #1DA1F2;
}

.share-link.link:hover {
    background-color: #333;
}

.news-detail-nav {
    padding: 20px 30px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
}

.news-nav-prev,
.news-nav-next {
    max-width: 45%;
}

.news-nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    color: #999;
    margin-bottom: 5px;
    font-size: 14px;
}

.nav-title {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.news-nav-prev a:hover .nav-title,
.news-nav-next a:hover .nav-title {
    color: #EB0029;
}

/* 侧边栏样式 */
.news-detail-sidebar {
    flex: 0 0 calc(30% - 30px);
    margin: 0 15px;
}

.sidebar-widget {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #EB0029;
    bottom: -1px;
    left: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list a {
    display: block;
    padding: 8px 15px;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.category-list a:hover,
.category-list a.active {
    background-color: #EB0029;
    color: #fff;
}

.recent-news-list li {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-news-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-news-img {
    width: 80px;
    height: 60px;
    margin-right: 15px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-news-list li:hover .recent-news-img img {
    transform: scale(1.05);
}

.recent-news-info {
    flex: 1;
}

.recent-news-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
    line-height: 1.4;
    max-height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recent-news-info h4 a {
    color: #333;
    transition: color 0.3s ease;
}

.recent-news-info h4 a:hover {
    color: #EB0029;
}

.recent-news-date {
    color: #999;
    font-size: 12px;
}

.contact-widget .contact-info {
    margin-bottom: 20px;
}

.contact-widget .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-widget .contact-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #EB0029;
    font-size: 18px;
}

.contact-widget .contact-text h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: #333;
}

.contact-widget .contact-text p {
    color: #666;
    font-size: 14px;
}

.btn-contact {
    display: block;
    text-align: center;
    background-color: #EB0029;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #d00025;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(235, 0, 41, 0.3);
}

/* 相关推荐 */
.related-news-section {
    padding: 60px 0;
    background-color: #fff;
}

.related-news-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.related-news-item {
    flex: 0 0 calc(25% - 30px);
    margin: 0 15px 30px;
}

.related-news-img {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.related-news-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-news-item:hover .related-news-img img {
    transform: scale(1.05);
}

.related-news-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-news-content h3 a {
    color: #333;
    transition: color 0.3s ease;
}

.related-news-content h3 a:hover {
    color: #EB0029;
}

.related-news-meta {
    color: #999;
    font-size: 12px;
    display: flex;
}

.related-news-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.related-news-meta i {
    margin-right: 5px;
}

/* 响应式样式 */
@media (max-width: 1200px) {
    .interview-item {
        width: 33.33%;
    }
    
    .contact-info-item {
        flex: 0 0 calc(50% - 30px);
    }
    
    .process-step-brief {
        flex: 0 0 calc(33.333% - 30px);
    }
    
    .store-list li {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 992px) {
    .footer-info, 
    .footer-contact-info, 
    .footer-qrcode {
        flex: 0 0 100%;
        margin-bottom: 25px;
        text-align: center;
        justify-content: center;
    }
    
    .footer-logo p {
        max-width: 100%;
    }
    
    .footer-qrcode {
        justify-content: center;
    }
	
	 .swiper-container {
        height: 100%;
    }
	
	.interview-item {
        width: 50%;
    }
    
    .interview-image {
        height: 180px;
    }
	
	.article-item {
        width: 50%;
    }
	
	.news-category-item {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .category-title {
        font-size: 16px;
    }
	
	.timeline:before {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
	
	.advantage-content {
        flex-direction: column;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 30px);
    }
    
    .join-apply-form,
    .join-contact-info {
        flex: 0 0 100%;
    }
	
	.dish-item {
        width: 50%;
    }
    
    .category-tab {
        padding: 8px 20px;
        margin: 0 5px 10px;
    }
	
	.news-image {
        flex: 0 0 40%;
    }
    
    .news-content {
        flex: 0 0 60%;
        padding: 20px;
    }
    
    .news-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
	
	.contact-map, 
    .contact-form {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .store-list li {
        flex: 0 0 calc(100% - 30px);
    }
	
	.news-detail-main,
    .news-detail-sidebar {
        flex: 0 0 calc(100% - 30px);
    }
    
    .news-detail-sidebar {
        margin-top: 30px;
    }
    
    .related-news-item {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 25px 0 15px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .footer-nav a {
        margin: 0 10px 10px;
        font-size: 14px;
    }
    
    .footer-nav a:not(:last-child)::after {
        right: -10px;
    }
    
    .hotline i {
        font-size: 30px;
        margin-right: 10px;
    }
    
    .hotline-info h3 {
        font-size: 14px;
    }
    
    .hotline-info p {
        font-size: 20px;
    }
    
    .qrcode-item img {
        width: 100px;
        height: 100px;
    }
    
    .copyright {
        font-size: 12px;
    }
	
	.nav-menu {
        position: fixed;
        top: 61px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 61px);
        background-color: rgba(255, 255, 255, 0.95);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        transition: all 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 5px 0;
        width: 100%;
    }
    
    .header .nav-menu a,
    .header.scrolled .nav-menu a {
        color: #333;
        text-shadow: none;
        font-size: 16px;
        padding: 10px 0;
    }
    
    .submenu {
        position: static;
        width: 100%;
        background-color: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0 0 0 20px;
        margin-top: 0;
    }
    
    .nav-menu li:hover .submenu {
        display: none; /* 移动端hover不展开子菜单 */
    }
    
    .nav-menu li.submenu-active .submenu {
        display: block; /* 点击后才展开子菜单 */
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        position: relative;
        width: 100%;
        left: 0;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        background: none;
    }
    
    .submenu::before {
        display: none;
    }
    
    .submenu li {
        width: 100%;
        padding-left: 15px;
    }
    
    .submenu li a {
        padding: 8px 15px;
        font-size: 14px;
        color: #000000 !important;
        display: block;
        text-align: left;
    }
    
    .submenu li a:hover {
        background-color: transparent;
    }
    
    /*.nav-menu li:has(.submenu) > a::before {*/
    /*    content: '\25BC';*/
    /*    transform: translateY(-50%) rotate(0deg);*/
    /*    transition: transform 0.3s ease;*/
    /*}*/
    
    /*.nav-menu li.submenu-active > a::before {*/
    /*    transform: translateY(-50%) rotate(180deg);*/
    /*}*/
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .swiper-container {
        width: 100%;
    }
    
    .section-title {
        font-size: 28px;
    }
	
	.interview-item {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .interview-image {
        height: 220px;
    }
	
	.food-button-next,
    .food-button-prev {
        width: 35px !important;
        height: 35px !important;
    }
    
    .food-button-next:after,
    .food-button-prev:after {
        font-size: 16px !important;
    }
	
	.recommended-articles {
        padding: 40px 0;
    }
    
    .article-item {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .article-image {
        height: 200px;
    }
	
	.news-categories {
        padding: 40px 0;
    }
    
    .news-category-item {
        margin-bottom: 30px;
    }
	
	.about-content {
        flex-direction: column;
    }
    
    .culture-content {
        flex-direction: column;
        align-items: center;
    }
    
    .culture-item {
        max-width: 100%;
    }
    
    .philosophy-content {
        flex-direction: column;
    }
    
    .honors-list {
        gap: 20px;
    }
    
    .honor-item {
        min-width: 150px;
    }
	
	.advantage-item {
        margin-bottom: 20px;
        padding: 0;
        width: 100%;
    }

    .advantage-item:nth-last-child(2) {margin-bottom: 20px;}
    
    .advantage-icon {
        flex: 0 0 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 15px;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .form-group {
        width: 100%;
        margin-right: 0;
    }
	
	.dish-category-nav {
        top: 60px;
        padding: 12px 0;
    }
    
    .dish-section {
        padding: 40px 0;
    }
    
    .dish-item {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .dish-image {
        height: 200px;
    }
    
    .category-tab {
        padding: 6px 18px;
        margin: 0 5px 8px;
        font-size: 14px;
        border-radius: 20px;
    }
	
	.more-btn-wrapper {
        margin-top: 25px;
    }
    
    .btn-more-news {
        padding: 8px 24px;
        font-size: 15px;
        border-width: 1.5px;
    }
    
    .btn-more-news i {
        font-size: 16px;
    }
	
	.news-list-section {
        padding: 40px 0;
    }
    
    .news-item {
        margin-bottom: 20px;
        height: auto;
    }
    
    .news-image {
        flex: 0 0 100%;
        height: 200px;
    }
    
    .news-content {
        flex: 0 0 100%;
        padding: 18px;
    }
    
    .news-title {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .news-meta {
        margin-bottom: 8px;
    }
    
    .news-summary {
        margin-bottom: 12px;
    }
	
	.contact-info-section,
    .contact-form-map-section,
    .join-process-brief,
    .store-locations {
        padding: 40px 0;
    }
    
    .contact-info-item {
        flex: 0 0 calc(100% - 30px);
    }
    
    .process-step-brief {
        flex: 0 0 calc(50% - 30px);
    }
    
    .section-title-left h2 {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .region-tab {
        padding: 6px 15px;
        font-size: 14px;
    }
    
    .store-city h3 {
        font-size: 18px;
    }
	
	.news-detail-section,
    .related-news-section {
        padding: 40px 0;
    }
    
    .news-detail-header,
    .news-detail-content,
    .news-detail-share,
    .news-detail-nav {
        padding: 20px;
    }
    
    .news-detail-title {
        font-size: 24px;
    }
    
    .news-detail-cover {
        padding: 15px 20px 0;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .related-news-item {
        flex: 0 0 calc(100% - 30px);
    }
    
    .related-news-img img {
        height: 200px;
    }
}

@media (max-width: 576px) {
        .footer-nav {
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    
    .footer-nav a {
        margin: 0 8px 8px;
    }
    
    .footer-nav a:not(:last-child)::after {
        right: -8px;
        height: 12px;
    }
    
    .footer-logo img {
        max-width: 100px;
    }
    
    .hotline {
        flex-direction: column;
        text-align: center;
    }
    
    .hotline i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .qrcode-item img {
        width: 80px;
        height: 80px;
    }
	
	.swiper-container {
        width: 100%;
    }
    
    .section-title {
        font-size: 24px;
    }
	
	.interview-image {
        height: 180px;
    }
    
    .interview-content {
        padding: 15px;
    }
    
    .interview-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .interview-text {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .interview-date {
        font-size: 12px;
    }
	
	.food-button-next,
    .food-button-prev {
        width: 30px !important;
        height: 30px !important;
    }
    
    .food-button-next:after,
    .food-button-prev:after {
        font-size: 14px !important;
    }
	
	.recommended-articles {
        padding: 30px 0;
    }
    
    .article-image {
        height: 180px;
    }
    
    .article-content {
        padding: 15px;
    }
    
    .article-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
	
	.news-categories {
        padding: 30px 0;
    }
    
    .category-title {
        font-size: 15px;
        padding: 6px 15px;
    }
    
    .category-article a {
        font-size: 13px;
    }
	
	.page-title {
        padding: 70px 0 20px;
    }
    
    .page-title h1 {
        font-size: 28px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .honor-item {
        min-width: 130px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-answer {
        padding: 0 15px 15px;
    }
    
    .join-hotline {
        flex-direction: column;
        text-align: center;
    }
    
    .join-hotline i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .join-qrcode img {
        width: 120px;
        height: 120px;
    }
	
	.dish-image {
        height: 180px;
    }
    
    .dish-info {
        padding: 15px;
    }
    
    .dish-name {
        font-size: 16px;
    }
    
    .dish-brief {
        font-size: 13px;
    }
	
	.page-num {
        width: 35px;
        height: 35px;
        margin: 0 3px;
        font-size: 14px;
    }
	
	.more-btn-wrapper {
        margin-top: 20px;
    }
    
    .btn-more-news {
        padding: 7px 20px;
        font-size: 14px;
        border-width: 1.5px;
    }
    
    .btn-more-news i {
        font-size: 15px;
        margin-left: 6px;
    }
	
	.news-list-section {
        padding: 30px 0;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .news-meta {
        margin-bottom: 8px;
        font-size: 12px;
    }
    
    .news-summary {
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .btn-more {
        padding: 6px 15px;
        font-size: 13px;
    }
	
	.contact-info-section,
    .contact-form-map-section,
    .join-process-brief,
    .store-locations {
        padding: 30px 0;
    }
    
    .process-step-brief {
        flex: 0 0 calc(100% - 30px);
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 28px;
    }
    
    .section-title-left h2 {
        font-size: 22px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .btn-submit,
    .btn-primary {
        padding: 10px 25px;
        font-size: 15px;
    }
    
    .region-tab {
        padding: 5px 12px;
        font-size: 13px;
        margin: 0 3px 8px;
    }
    
    .store-city h3 {
        font-size: 17px;
    }
    
    .store-list li {
        padding: 15px;
    }
    
    .news-detail-section,
    .related-news-section {
        padding: 30px 0;
    }
    
    .news-detail-title {
        font-size: 20px;
    }
    
    .news-detail-meta {
        flex-direction: column;
    }
    
    .news-detail-meta span {
        margin-bottom: 5px;
    }
    
    .news-detail-content h2 {
        font-size: 18px;
    }
    
    .news-detail-nav {
        flex-direction: column;
    }
    
    .news-nav-prev,
    .news-nav-next {
        max-width: 100%;
    }
    
    .news-nav-next {
        text-align: left;
        margin-top: 15px;
    }
    
    .related-news-img img {
        height: 180px;
    }
}