@charset "utf-8";
/* CSS Document */
body {
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  font-family: "微软雅黑";
  color: white;
  background: #323232;
}
 
/* 标题样式 */
h1 {font-size: 36px;color: #FFFFFF;margin-bottom: 20px; }
h2 {font-size: 32px;color: #FFFFFF;margin-bottom: 15px; }
h3 {font-size: 24px;color: #FFFFFF;margin-bottom: 10px;}
h4 {font-size: 22px;color: #FFFFFF;margin-bottom: 5px;}
h5 {font-size: 20px;color:#FFFFFF;margin-bottom: 0;}
h6 {font-size: 18px;color: #FFFFFF;text-transform: uppercase;margin-bottom: 0;}

/* 主要容器 */
.container { 
  margin: 0 auto; 
  padding: 0 30px; 
  max-width: 1200px;
}

/* 万能清除浮动开始 */ 
.clearfix:after {
  visibility: hidden; 
  display: block; 
  font-size: 0; 
  content: " ";
  clear: both; 
  height: 0;
}
 
.clearfix { 
  display: inline-table; /* Hides from IE-mac */
} 
 
* html .clearfix { 
  height: 1%;
}
 
.clearfix { 
  display: block;
} 

/* 当屏幕宽度小于 600px 时应用以下样式 */
@media (max-width: 599px) {
  .column {
    width: 100%; /* 在小屏幕上，每列都占据全部宽度 */
    float: none; /* 取消浮动，使列堆叠显示 */
  }
  /* 其他小屏幕适配样式 */
}

/* 当屏幕宽度在 600px 到 900px 之间时应用以下样式 */
@media (min-width: 600px) and (max-width: 899px) {
  .column {
    /* 在此范围内可以稍微调整列宽，比如分为两列 */
    width: 50%;
    float: left; /* 恢复浮动 */
  }
  /* 其他中等屏幕适配样式 */
}

/* 当屏幕宽度在 900px 到 1200px 之间时应用以下样式 */
@media (min-width: 900px) and (max-width: 1199px) {
  .column {
    /* 可以是三列布局或者其他适应此范围的布局 */
    width: 33.3333%; /* 三等分 */
    float: left;
  }
  /* 其他平板或桌面小屏适配样式 */
}

/* 当屏幕宽度大于或等于 1200px 时应用以下样式 */
@media (min-width: 1200px) {
  .column {
    /* 适用于大屏幕显示器的布局，比如四列布局 */
    width: 25%; /* 四等分 */
    float: left;
  }
  /* 其他桌面大屏适配样式 */
}

/* 横向屏幕适配（例如iPad横屏） */
@media (orientation: landscape) {
  /* 在这里添加横向屏幕时的特殊样式 */
}

/* 还可以根据高宽比适配 */
@media (aspect-ratio: 16/9) {
  /* 适用于高宽比为16:9的屏幕的样式 */
}

/* 注意：高宽比媒体查询目前在一些浏览器中可能不受支持 */

/* 导航栏 */
.navbar {
    background-color: #937f81;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 118px;
    padding: 0;
    z-index: 100;
}

/* logo 容器 */
.logo {
    position: relative;
    width: 250px;
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 175px;
}

/* logo 覆盖层 */
.logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

/* logo 图片 */
.logo img {
    width: 70%;
    height: auto;
    position: relative;
    z-index: 20;
}

/* 菜单 */
.menu {
    list-style-type: none;
    display: flex;
    padding-right: 20px;
    margin-right: 180px;
}

.menu li {
    padding: 10px;
}

.menu a {
    color: white;
    text-decoration: none;
}

/* 汉堡菜单按钮 */
.toggle-button {
    display: none;
    background-color: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.5em;
}

.toggle-button:focus {
    outline: none;
}

/* 移动端样式 */
@media (max-width: 767px) {
    .navbar {
        background-color: #5a4e4f;
        height: 65px;
    }

    .logo-overlay {
        display: none;
    }

    .logo {
        left: 5px;
        height: 65px;
    }
    
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #323232;
        text-align: center;
        margin-right: 0;
    }

    .menu.active {
        display: flex;
    }

    .toggle-button {
        display: block;
    }
}
/* 主图 */
.banner {
    position: relative;
    overflow: hidden;
    margin-top: 118px; /* 让主图下移，避免被导航栏覆盖 */
}

/* 主图图片 */
.banner img {
    width: 100%; /* 使图片宽度自适应容器 */
    height: auto; /* 保持图片的原始宽高比 */
    display: block; /* 移除图片下方的默认间隙 */
}

/* 主图覆盖层 */
.banner-overlay {
    position: absolute;
    top: 0; /* 让覆盖层保持在正确位置 */
    left: 175px; /* 与导航栏覆盖层的位置一致 */
    width: 250px; /* 确保覆盖层宽度始终是 250px */
    height: 100%; /* 让覆盖层高度与主图一致 */
    background-color: rgba(0, 0, 0, 0.5); /* 与导航栏覆盖层颜色一致 */
    z-index: 10; /* 确保覆盖层在图片上方 */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #D1D1D1;
    padding: 20px 30px; /* 增加左右间距，让文字远离边缘 */
    box-sizing: border-box; /* 确保 padding 不影响宽度计算 */
}

/* 让文字向上移动 */
.banner-overlay h1,
.banner-overlay .subtitle,
.banner-overlay p {
    margin-top: 20px; /* 让标题、副标题、段落整体向上移动 */
}

/* 标题样式 */
.banner-overlay h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
    color: white !important;
}

/* 副标题样式 */
.banner-overlay .subtitle {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 15px;
    color: #fff;
    display: block;
}

/* 段落样式 */
.banner-overlay p {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
}

/* 移动端适配 */
@media (max-width: 767px) {
    .banner {
        margin-top: 65px; /* 让主图紧贴移动端导航栏 */
        height: 500px; /* 让主图在移动端保持固定高度 */
    }

    .banner img {
        width: 150%; /* 让图片宽度超出容器，截取中间部分 */
        height:500px; /* 让主图高度保持不变 */
        object-fit: cover; /* 让图片填充容器，截取宽度的一部分 */
        object-position: center; /* 让图片居中显示 */
    }

    .banner-overlay {
        left: 10px; /* 让覆盖层在移动端稍微向左移动 */
        width: 50%; /* 让覆盖层在移动端变宽 */
        height: 500px; /* 让覆盖层高度与主图一致 */
        padding: 15px 35px; /* 移动端时减少 padding，保持适当间距 */
    }



    /* 移动端文字缩小 */
    .banner-overlay h1 {
        font-size: 28px; /* 电脑端36px → 移动端28px */
    }
    .banner-overlay .subtitle {
        font-size: 16px; /* 电脑端18px → 移动端16px */
    }
    .banner-overlay p {
        font-size: 14px; /* 电脑端16px → 移动端14px */
    }
}






/* 宴会案例：六图横排 */
/* 标题和副标题统一居中 */
.case_section h4,
.case_section .subtitle {
  text-align: center;
  display: block;
  color: #000;
  margin-bottom: 5px;
}


.case_wrapper {
  background-color: #fff;
  padding: 60px 0;
}
.case_flex_gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-left: 15px;
  margin-right: 15px;
}

.case_flex_gallery a {
  flex: 0 0 calc((100% - 5 * 16px) / 6); /* 一排六个 */
  display: block;
  text-align: center;
  text-decoration: none;
  color: #000; /* 文字颜色改为黑色 */
  background-color: transparent; /* 移除框背景 */
  transition: none; /* 移除 hover 动效 */
}

.case_flex_gallery a img {
  width: 90%;
  height: auto;
  display: block;
}

.case_flex_gallery a span {
  display: block;
  padding: 10px 0;
  background: none; /* 移除底色 */
  font-size: 14px;
  line-height: 1.4;
  color: #000; /* 字体颜色黑色 */
}

.case_flex_gallery a:hover span {
  background: none; /* 取消 hover 背景 */
}

@media (max-width: 768px) {
  .case_flex_gallery {
    flex-direction: column;
    align-items: center;
  }

  .case_flex_gallery a {
    flex: 0 0 90%;
    max-width: 90%;
    margin: 0 auto; /* 保证链接块水平居中 */
    text-align: center; /* 同时居中图片和文字 */
  }

  .case_flex_gallery a img {
    width: 75%;
    height: auto;
    display: block;
    margin: 0 auto; /* 关键：让图片本身水平居中 */
  }
}


/* 服务类型展示模块 */
.service_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 12px;
  background-color: #766667;
  padding: 60px 0;
  color: #fff;
  position: relative;
  padding-left: 500px; /* 避开遮罩区域 */
  box-sizing: border-box;
}

/* 遮罩层固定贴左 */
.service_overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 175px;
  width: 250px;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.overlay_content {
  padding: 30px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  font-weight: bold;
}

.overlay_line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.overlay_line img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.overlay_line a {
  color: inherit;
  text-decoration: none;
}

.overlay_record {
  font-size: 12px;
  color: #d1d1d1;
  line-height: 1.5;
  font-weight: normal;
  margin-top: 10px;
}

/* 卡片结构 */
.service_item {
  flex: 0 0 19%;
  max-width: 19%;
  text-align: center;
}


.service_box {
  max-width: 100px;
  margin: 0 auto;
  text-align: center;
}
.service_box a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service_box img {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.label-cn,
.label-en {
  display: block;
  max-width: 100px;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.label-cn {
  font-size: 15px;
  font-weight: bold;
  margin: 6px 0 2px;
}

.label-en {
  font-size: 13px;
  color: #d1d1d1;
  margin: 0;
}
@media (max-width: 768px) {
  .service_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 8px;
    padding: 32px 12px;
    box-sizing: border-box;
    justify-content: space-between;
  }

  .service_overlay {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    padding: 24px 16px;
    box-sizing: border-box;
    height: auto;
    display: flex;
    align-items: flex-start;
    pointer-events: auto;
    z-index: 1;
  }

  .overlay_content {
    padding: 0;
  }

  .service_item {
    flex: 0 0 48%;
    max-width: 48%;
    box-sizing: border-box;
    margin-bottom: 20px;
  }

  .service_box {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .service_box img {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .label-cn,
  .label-en {
    display: block;
    max-width: 100%;
    margin: 6px auto 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
  }

  .label-en {
    color: #d1d1d1;
    margin: 0 auto;
  }
}



/* 新闻资讯样式 */
.about_news_wrapper {
    width: 100%;
    padding: 40px 0; /* 增加上下内边距 */
    background-color: #FFF; /* 修改背景色 */
    color: #323232; /* 设置基础文字颜色 */
}

.about_news_wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about_news_wrapper h4,
.about_news_wrapper .subtitle {
    text-align: center;
    display: block;
    color: #000;
    margin: 5px 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .about_news_wrapper {
        padding: 30px 0;
    }
}


/* 图文介绍模块整体样式 */
.section_intro {
  background-color: #766667;
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  
  box-sizing: border-box;
}

/* 遮罩九宫格区域 */
.intro_overlay {
  position: absolute;
  top: 0;
  left: 175px;
  width: 250px;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.social_grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 30px 20px;
  width: 200px;
  margin: 0 auto;
  justify-items: center;
}

.social_grid img {
  width: 30px;
  height: 30px;
  pointer-events: auto;
}
.intro_content {
  display: flex;
  align-items: flex-start;
  margin-left: calc(175px + 250px + 125px);
}


.intro_label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}

.intro_label-sub {
  font-size: 12px;
  color: #d0c0c2;
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.intro_label-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.intro_label-image {
  width: 60%;
  max-width: 220px;
  margin-top: 12px;
  display: block;
}
.intro_detail {
  margin-left: 50px;        /* 和左侧 intro_label 拉开距离 */
  max-width: 470px;         /* 防止段落太宽阅读困难 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;  /* ✅ 左对齐 */
  color: #fff;
}


.intro_detail-paragraph {
  font-size: 14px;
  line-height: 1.8;
}

.intro_detail h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}


.subtitle {
  display: block;
  font-size: 12px;
  color: #d0c0c2;
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* 图文介绍模块主标题样式（h5） */
.intro_label h5 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  color: #fff;
}



@media (max-width: 767px) {
  .intro_overlay {
    display: none; /* ✅ 小屏隐藏遮罩层 */
  }

  .intro_content {
  flex-direction: column;
  align-items: center;    /* ✅ 居中所有子元素，包括 .intro_label 和 .intro_detail */
  margin-left: 0;
  padding: 0 16px;
  gap: 24px;
}

.intro_label {
  align-items: center;
  text-align: center;
  width: 100%;
}


  .intro_label h5 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .intro_label .subtitle {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .intro_label-image {
  display: block;
  margin: 0 auto;
  width: 60%;
  max-width: 160px;
}

  .intro_detail {
    align-items: flex-start;
    text-align: left;
    margin-left: 0;
    max-width: 100%;
  }
.intro_detail h5 {
  font-size: 18px;
  margin-bottom: 8px;
}

  .intro_detail-paragraph {
    font-size: 14px;
    line-height: 1.6;
  }
}



/* 原有样式完全保留 */
.index_kdj { 
    margin-top: 40px; /* 调整顶部间距 */
    text-align: center;
}

.index_kdj .title, 
.index_kdj .subtitle {
    text-align: center;
    color: #fff; /* 确保标题为白色 */
}

.index_kdj_img { 
    display: inline-block;
}

.index_kdj_img ul { 
    list-style-type: none;
    padding: 0;
}

.index_kdj_img li { 
    display: inline-block;
    margin-right: 200px;
    vertical-align: top;
}

.index_kdj_img img {
    max-width: 420px;
    width: 100%;
    height: auto;
}

.index_kdj_img .text-box {
    text-align: center;
    margin-top: 10px;
    max-width: 400px;
    width: 100%;
    height: auto;
    white-space: normal;
    background-color: #808080;
    padding: 10px;
}

.index_kdj_img .text-box h4 {
    color: #fff; /* 确保标题为白色 */
    margin-bottom: 10px;
}

.index_kdj_img .text-box p {
    font-size: 14px;
    text-align: left;
    margin: 0;
    line-height: 28px;
    color: #fff; /* 确保文本为白色 */
}

.index_kdj_img li:last-child { 
    margin-right: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .knowledge_wrapper {
        padding: 40px 0;
    }
    
    .index_kdj_img li {
        display: block;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .index_kdj_img li:last-child {
        margin-bottom: 0;
    }
}
 

/* 关于我整体样式 */
.about {
    background-color: #FFF; /* 保持白色背景 */
    background-repeat: no-repeat;
    background-position: center top;
    padding: 20px 0;
}

/* 主页标题区域 */
.about .home-title {
    margin-bottom: 50px; /* 增加间距，使标题更突出 */
    text-align: center;
}

/* 副标题样式 */
.about .subtitle {
    font-size: 18px; /* 让副标题稍大，使其醒目 */
    font-weight: normal;
    color: #6B7280;
    display: block;
    margin-bottom: 20px;
}

/* 修改 h2 颜色为黑色 */
.about h2 {
    font-size: 32px; /* 让标题更突出 */
    font-weight: bold;
    color: #000; /* 确保 h2 颜色正确 */
}

/* 主要内容区域，优化结构，使图片和文字均衡 */
.about .content-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px; /* 增加间距，使图片和文字更协调 */
}

/* 图片样式 - 让它自动调整大小但保持比例 */
.about .info-image {
    flex-grow: 1;
    max-width: 45%; /* 适当调整，使图片不会过大 */
    height: auto;
}

/* 文字内容样式 */
.about .text-content {
    flex-grow: 1;
    max-width: 48.3%; /* 让文字区域稍微窄一点 */
    font-size: 14px; /* 调整文字大小，使其清晰可读 */
    font-weight: 500;
    line-height: 2.0;
    text-align: justify;
    color: #000; /* 确保文字是黑色 */
}


/* 数据展示区域 */
.about .shuju {
    margin: 50px 0;
}

/* 数据展示的圆形元素 */
.about .shuju figure {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.50);
}

/* 鼠标悬停时的数据展示变化 */
.about .shuju figure:hover {
    transform: scale(1.15);
    background-color: #c96;
    border: 3px solid #c96;
}

/* 数据展示中的标题样式 */
.about .shuju figure h3 {
    font-size: 24px;
    margin: 30px 0 0 0;
    color: #fff;
}

/* 鼠标悬停时的数据展示颜色变化 */
.about .shuju figure:hover h3,
.about .shuju figure:hover p {
    color: #fff;
}
/* 移动端适配 */
@media (max-width: 767px) {
    .about .content-box {
        flex-direction: column; /* 让图片在上，文字在下 */
        align-items: center; /* 居中对齐 */
        text-align: center; /* 让文字居中 */
    }

    .about .info-image {
        width: 95%; /* 让图片填满容器 */
        max-width: 600px; /* 限制最大宽度，避免画质拉伸 */
        height: auto;
        display: block;
        margin-bottom: 20px; /* 让图片和文字之间有间距 */
    }

    .about .text-content {
        width: 100%;
        max-width: 90%; /* 让文字区域稍微宽一点 */
        font-size: 14px;
        font-weight: 500;
        line-height: 2.2;
        text-align: center;
        padding: 0 20px; /* 添加左右内边距 */
        box-sizing: border-box; /* 确保 padding 不影响宽度布局 */
    }
}

/* 关于我们 */
.secondary_wrapper {
    background: #766667; /* 修改背景色 */
    width: 100%;
    padding: 20px 0;
    color: #FFF; /* 主要内容设为白色 */
    position: relative; /* 确保覆盖层正确显示 */
}

/* 遮罩层（仅PC端显示） */
.secondary-overlay {
    position: absolute;
    top: 0;
    left: 175px;
    width: 250px;
    height: 100%; /* 确保遮罩层覆盖整个区域 */
    background: rgba(0, 0, 0, 0.5); /* 添加半透明黑色遮罩 */
    z-index: 1; /* 确保遮罩层在最底层 */
}

/* 遮罩层上的文字（仅PC端显示） */
.secondary-overlay-text {
    position: absolute;
    top: 50%;
    left: 12.5%;
    width: 230px;
    transform: translateY(-50%);
    z-index: 2; /* 确保文字在遮罩层上方 */
    text-align: center;
    pointer-events: none;
}

.secondary-overlay-text h3 {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
}

.secondary-overlay-text p {
    font-size: 14px;
    color: #d1d1d1;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* 默认隐藏移动端标题 */
.mobile-title {
    display: none;
}

/* 图文内容区域 */
.secondary-wrapper .dl-horizontal {
    display: flex;
    align-items: flex-start;
    max-width: 960px;
    margin: 0 auto;
    padding-left: 290px; /* 增加左侧间距，让图片远离覆盖层 */
}

/* 图片样式 */
.image-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 30px; /* 让图片向右移动，避免被遮挡 */
    margin-top: 40px; /* 让图片远离上边沿 */
}

.image-wrapper img {
    width: 180px; /* 修正图片大小 */
    height: auto;
    display: block;
}

/* 文字内容样式 */
.index_secondary_con {
    line-height: 34px;
    width: 78%;
    margin: 35px auto 0; /* 增加上边距，让文字远离顶部 */
    text-align: left; /* 修正文字左对齐 */
    color: #FFF; /* 主要内容设为白色 */
}

/* 移动端适配 */
@media (max-width: 767px) {
    /* 隐藏 PC 端的遮罩层 */
    .secondary-overlay,
    .secondary-overlay-text {
        display: none;
    }

    /* 移动端标题样式（仅移动端显示） */
    .mobile-title {
        display: block;
        text-align: center;
        margin-top: 20px; /* 让标题远离顶部 */
    }

    .mobile-title h3 {
        font-size: 22px;
        font-weight: bold;
        color: #FFF;
        margin-bottom: 5px;
    }

.subtitle {
  font-size: 14px;
  color: #d1d1d1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}


    /* 让内容纵向排列 */
    .secondary-wrapper .dl-horizontal {
        flex-direction: column;
        padding-left: 0; /* 移除左侧间距 */
        align-items: center; /* 居中对齐 */
    }

    /* 图片样式 */
    .image-wrapper {
        margin-left: 0; /* 移除左侧间距 */
        margin-top: 20px; /* 适当调整上边距 */
        text-align: center;
    }

    .image-wrapper img {
        width: 90%; /* 让图片适应屏幕 */
        max-width: 300px; /* 限制最大宽度 */
        height: auto;
    }

    /* 文字内容样式 */
    .index_secondary_con {
        width: 90%; /* 让文字区域适应屏幕 */
        margin: 20px auto 0; /* 适当调整上边距 */
        text-align: center; /* 让文字居中 */
    }
}


 
/* 客服微信框架样式 */
.wx_wrapper {
    width: 100%;
    padding: 60px 0; /* 上下间距 */
    background: #FFF; /* 白色背景 */
}

.wx_container {
    width: 100%;
    max-width: 1200px; /* 最大宽度限制 */
    margin: 0 auto;
    padding: 0 15px; /* 左右内边距 */
    box-sizing: border-box;
}

/* 原有样式完全保留 */
.index_wx { 
    margin-top: 40px; /* 调整上边距 */
    text-align: center;
}

.index_wx .title {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.index_wx_img { 
    display: inline-block;
}

.index_wx_img ul { 
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.index_wx_img li { 
    display: inline-block;
    margin-right: 200px;
    vertical-align: top;
}

.index_wx_img img {
    width: 150px;
    height: 150px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.index_wx_img li:last-child { 
    margin-right: 0;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .index_wx_img li {
        margin-right: 100px;
    }
}

@media (max-width: 768px) {
    .wx_wrapper {
        padding: 40px 0;
    }
    
    .index_wx_img li {
        display: block;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .index_wx_img li:last-child {
        margin-bottom: 0;
    }
}

/* 清除浮动 */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
 


/* 原有样式完全保留 */
.lianxi {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    background-color: #333;
    margin-top: 40px; /* 调整顶部间距 */
}

.icon-item {
    flex: 1 0 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.icon-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 5px;
}

.text {
    text-align: center;
    color: #fff; /* 保持白色文字 */
}

.text p, 
.text a {
    color: #fff; /* 保持白色文字 */
    margin: 5px 0;
    font-size: 14px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* 响应式调整 */
@media (min-width: 769px) {
    .icon-item {
        flex: 1 0 30%;
        max-width: 30%;
        flex-direction: row;
        align-items: center;
        margin-bottom: 0;
    }
    
    .icon-item img {
        margin-bottom: 0;
        margin-right: 10px;
    }
    
    .text {
        text-align: left;
    }
}
/* 图片集 */
.index_tpk { 
  margin-top: 100px; /* 上边距140px */
  text-align: center; /* 使内部内容居中 */
}
 
/* 标题样式 */
.index_tpk .title, .index_tpk .subtitle {
  text-align: center; /* 标题居中对齐 */ 
} 

.left-align p {
    text-align: left;
}

/* 图片列表样式 */ 
.index_tpk_img { 
  display: inline-block; /* 将容器设置为行内块元素，以便它可以响应父元素的text-align */
} 
 
.index_tpk_img ul { 
  list-style-type: none; /* 去除默认列表样式 */ 
  padding: 0; /* 去除默认的内边距 */
}
 
 
/* 图片样式 */ 
.index_tpk_img img {
  width: 100%; /* 设置图片宽度为容器的百分比 */
  max-width: 600px; /* 设置最大宽度，以防止图片在大屏幕上过大 */
  height: auto; /* 自动调整高度，保持图片比例 */
  border: 1px solid #ddd; /* 边框 */ 
} 
  
/* 媒体查询：在小屏幕上垂直排列图片列表 */ 
@media (max-width: 768px) {
  .index_tpk_img li {
    display: block; /* 将列表项设置为块级元素，以便它们可以垂直排列 */ 
    margin-right: 0; /* 移除右外边距，因为它们现在是垂直排列 */ 
    margin-bottom: 10px; /* 添加底部外边距以创建图片间的间距 */
  } 
} 

/* 宴会菜单推荐 */
.site-wrapper {
  overflow-x: hidden;
}

.site-main {
  padding-top: 100px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.menu_section {
  padding: 120px 0 60px;
  background-color: #fff;
  color: #333;
  text-align: center;
}

.menu_section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
  scroll-margin-top: 100px;
}

.menu_section .subtitle {
  display: block;
  font-size: 14px;
  color: #937f81;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.menu_row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.menu_item {
  flex: 0 0 48%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.menu_item img {
  width: 180px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.menu_text {
  text-align: left;
}

.menu_text h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  text-align: left;
}

.menu_text p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  text-align: left;
}
@media (max-width: 767px) {
  .menu_row {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
  }

  .menu_item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .menu_item img {
    width: 80%;
    max-width: 260px;
    margin-bottom: 16px;
  }

  .menu_text {
    text-align: center;
    padding: 0 12px;
  }

  .menu_text h3 {
    font-size: 18px;
    text-align: center;
  }

  .menu_text p {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
  }
}

/* 宴会图库：四图横排 */
.gallery_wrapper {
  background-color: #fff;
  padding: 120px 0 60px;  /* ✅ 顶部腾空，避免标题被遮 */
}

.gallery_section h4,
.gallery_section .subtitle {
  text-align: center;
  display: block;
  color: #000;
  margin-bottom: 15px;
}

.gallery_flex_gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-left: 15px;
  margin-right: 15px;
}

.gallery_flex_gallery a {
  flex: 0 0 calc((100% - 3 * 16px) / 4); /* ✅ 一排四个 */
  display: block;
  text-align: center;
  text-decoration: none;
  color: #000;
  background-color: transparent;
  transition: none;
}

.gallery_flex_gallery a img {
  width: 90%;
  height: auto;
  display: block;
}

.gallery_flex_gallery a span {
  display: block;
  padding: 10px 0;
  background: none;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
}

.gallery_flex_gallery a:hover span {
  background: none;
}
.gallery_tags {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 20px 0 30px;
  flex-wrap: wrap;
}

.gallery_tags a {
  text-decoration: none;
  font-size: 25px;
  color: #444;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.gallery_tags a:hover {
  color: #000;
  border-bottom: 1px solid #000;
}




/* ✅ 移动端适配 */
@media (max-width: 768px) {
  .gallery_flex_gallery {
    flex-direction: column;
    align-items: center;
  }

  .gallery_flex_gallery a {
    flex: 0 0 90%;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  .gallery_flex_gallery a img {
    width: 75%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}

.article_wrapper {
  padding: 60px 0;
  background-color: #fff;
  overflow: hidden;
  margin-top: 80px;
}

.article-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  color: #333;
}

.article-section .subtitle {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #999;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.article-section h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #222;
}

.article-item {
  margin-bottom: 40px;
}

.article-item .item-title {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin-bottom: 12px;
  text-align: left;
}

.article-item .item-body {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

.article-item .item-body p {
  margin-bottom: 1em;
  text-indent: 2em;
}

/* 地图指引样式 */
.map_wrapper {
  background-color: #fff;
  padding: 120px 0 60px;
}

.map_section .subtitle {
  text-align: center;
  display: block;
  color: #000;
  margin-top: 50px;     /* 与页面上方的间距 */
  margin-bottom: 5px;   /* 与主标题的距离，贴近一点 */
}

.map_section h4 {
  text-align: center;
  display: block;
  color: #000;
  margin-top: 5px;      /* 接近副标题 */
  margin-bottom: 15px;  /* 与地图模块保持良好距离 */
}

.google-map-container {
  margin-top: 60px;
}

.google-map-container iframe {
  display: block;
  margin-left: 15px;
}

/*  菜单列表  */
.menu_wrapper {
  background-color: #fff;
  padding: 120px 0 60px;
}

.menu_section .subtitle {
  text-align: center;
  display: block;
  color: #000;
  margin-bottom: 14px; /* 副标题和主标题之间的距离 */
}

.menu_section h4 {
  text-align: center;
  display: block;
  color: #000;
  margin-top: 0;       /* 贴近副标题 */
  margin-bottom: 20px; /* 主标题与菜单内容之间的距离 */
}


.menu_list {
  max-width: 600px;
  margin: 40px 0 0 40px; /* 顶部40px，右0，底0，左侧40px */
  padding-left: 10px; /* 控制左对齐偏移程度 */
  list-style: none;   /* 移除小圆点 */
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  text-align: left;
}

.menu_list li {
  margin-bottom: 4px;
}
/*  图片列表  */
.image_wrapper {
  background-color: #fff;
  padding: 120px 0 60px;
}

.image_section h5 {
  text-align: center;
  font-size: 20px;
  color: #000;
  margin-bottom: 40px;
}

.image_column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.image_column img {
  width: 60%;
  max-width: 600px; /* 限制最大显示尺寸不超过原始图像宽度 */
  height: auto;
  display: block;
  border-radius: 4px;
}

