body a{
    transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}
input[type="button"]{
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}

h1,h2,h3,h4,h5,h6{
	padding:0 0;
	margin:0 0;
}
p{
	padding:0 0;
	margin:0 0;
}
ul{
	padding:0 0;
	margin:0 0;	
}
body{
	padding:0 0;
	margin:0 0; 
	font-family: 'Times New Roman', Times, serif;
                margin: 0; overflow-x: hidden;
}



.header{
	background: url("../images1/背景-1128.svg") no-repeat; 
	background-size:cover; 
	width: 100% !important;
   	 max-width: none !important;
	background-position: center center;
	position: relative;
   	height: auto;
                overflow: hidden;
	display: flex; /* 使用 Flexbox 布局，使子元素水平排列 */ 
	flex-direction: column; /* 设置主容器的子元素垂直排列 */ 
	align-items: flex-start; /* 设置子元素在垂直方向对齐到容器顶部 */
}


.header-top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  width: 100%;
  background: rgba(255,255,255,.2);
  display: flex;                          /* 关键：用 flex */
  align-items: center;                     /* 关键：垂直居中 */
  justify-content:center;           /* ← 从 space-between 改成 center */
  gap: clamp(24px, 6vw, 80px);      /* ← 控制 LOGO 与菜单之间的距离 */
  padding: 10px 24px;
  min-height: 68px;                        /* 统一条高，按需改 */
  box-sizing: border-box;
   z-index: 3000;              /* 提高到页面内容之上 */
  overflow: visible;          /* 关键：别裁切下拉菜单 */
}


.header-top.scrolled {
    background-color:rgba(255, 255, 255, 1);
    color: #fff;
}

.logo{
                flex: 0 0 auto; margin: 0; 
               }


.logo img{
  display: block;
  height: clamp(40px,5vw,80px) ;                           /* 或 clamp(40px,5vw,64px) */
  width: auto;                             /* 等比例 */
}


.logo a{
      color:#eee;
}


.top-menu{
	flex: 0 0 auto;                          /* ← 关键：不要 1 1 auto */
                display: flex;
               align-items: center;
              gap: clamp(12px, 2vw, 28px);
               flex-wrap: nowrap;
            white-space: nowrap;
             font-size: 13px; 
}

.top-menu > ul{
  display:flex;              /* 横排 */
  list-style:none;
  margin:0;
  padding:0;
  position:static;           /* 避免吃到小屏的 fixed */
  transform:none;            /* 覆盖小屏的 translateY */
}


.hamburger{ display:none; } 

.top-menu ul li{
	display: inline;
}
.top-menu ul li a{
	font-size: 1.5em;
	color: #000000;
	text-decoration: none;
	text-transform: capitalize;
	margin: 0 1em;
	font-family: 'Times New Roman', Times, serif;
	font-weight: 800;
}
.top-menu ul li i{
	margin-right: 5px;
}


.top-menu ul li a:hover{
	color:#27738A;
                text-transform: capitalize;
}
.top-menu ul li a.active {
    color: #27738A; /* 高亮颜色 */
    font-weight: bold; /* 使选中的项加粗 */
}

 .icon-home { color: #27738A; }
  .icon-browse { color: #2c3e50; }
  .icon-search { color: #c0392b; }
  .icon-Tools { color: #2980b9; }
  .icon-stats { color: #b03a64; }
  .icon-Download{ color: #3498db; }
  .icon-Help{ color: orange; }



.header1 {
  background: url("../images1/背景-0909.svg") no-repeat;
  background-size: cover;
  min-height: 150px;
  width: 100%;
  position: relative; /* ✅ 让子元素绝对定位基于它 */
  background-position: center center;
}

.header-top1 {
  position:absolute;
  top:15px; left:50%; transform:translateX(-50%);
  width:min(1280px, 96vw);      /* 宽一些，避免挤爆 */
  padding:10px 20px;
  display:flex; align-items:center; justify-content:space-between;
  gap: clamp(8px,2vw,28px);
  border-radius:10px;
  background:#fff; 
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
  min-height:72px;
  z-index: 3000;              /* 提高到页面内容之上 */
  overflow: visible;          /* 关键：别裁切下拉菜单 */
}


.logo1{
               width: 20%;
               margin-top:20px;
               margin-left:0px;
               height: 80px;
               }

.logo1 a{
      color:#eee;
}


.top-menu1{
                flex:1 1 auto;
                margin:0; padding:0;
               display:flex;
               align-items:center;
               justify-content:flex-end;
               gap: clamp(12px,2vw,28px);
               flex-wrap: nowrap;             /* ← 关键：不换行 */
               min-width:0;
               font-size: 13px;
}


.top-menu1 ul {
  list-style: none; /* 确保没有默认的列表样式 */
}

.top-menu1 ul li{
	display: inline;
}
.top-menu1 ul li i{
	margin-right: 5px;
}

  .icon-home { color: #27738A; }
  .icon-browse { color: #2c3e50; }
  .icon-search { color: #c0392b; }
  .icon-Tools { color: #2980b9; }
  .icon-stats { color: #b03a64; }
  .icon-Download{ color: #3498db; }
  .icon-Help{ color: orange; }

.top-menu1 ul li a{
	font-size: 1.5em;
	color: #000000;
	text-decoration: none;
	text-transform: capitalize;
	margin: 0 1em;
	font-family: 'Times New Roman', Times, serif;
	font-weight: 800;
               line-height: 1.5; /* 确保行高一致 */
                vertical-align: middle; /* 添加垂直对齐 */
}
.top-menu1 ul li a:hover{
	color:#27738A;
                text-transform: capitalize;
}
.top-menu1 ul li a.active {
    color: #27738A; /* 高亮颜色 */
    font-weight: bold; /* 使选中的项加粗 */
}	

.dropdown{
  position: relative;
  display: inline-block;
  overflow: visible;              /* ← 不要 hidden，会把菜单裁掉 */
  font-family: 'Times New Roman', Times, serif;
}


.dropdown-menu {
    display: none;
    top: 100%;       /* 菜单贴着按钮下方 */
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    z-index: 4000;               /* 高于任何正文 */
   font-size: 10px;
}

.dropdown-menu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
   
}

.dropdown-menu a:hover {
    background-color: #000;
}



/* ========== 汉堡按钮（桌面隐藏） ========== */
.hamburger{
  display:none;           /* 小屏才显示 */
  width:44px; height:44px; border:0; background:transparent; cursor:pointer;
  place-items:center;
  border: 2px solid #f0f0f0;
  border-radius: 10px;      /* 可按需调圆角 */
  box-sizing: border-box;   /* 边框算在 44x44 内部，不会变大 */
}
.hamburger span{
  display:block; width:24px; height:2px; background:#27738A; margin:5px 0; transition:.2s;
}

/* 可选：悬停/打开时略有底色反馈 */
.hamburger:hover,
.top-menu.open .hamburger{
  background: rgba(176, 58, 100, .08); /* #b03a64 的浅背景 */
}

/* 可选：键盘可见焦点 */
.hamburger:focus-visible{
  outline: 3px solid #f0f0f0;
  outline-offset: 2px;
}

/* ========== 小屏覆盖（汉堡抽屉） ========== */
/* 桌面端：hover 展开二级 */
@media (min-width: 993px) and (hover: hover) and (pointer: fine){
  .dropdown:hover > .dropdown-menu{ display:block; }
}



/* 小屏：抽屉 + 点击展开二级 */
@media (max-width: 992px){
   .logo{ height:auto; width:auto; margin-top:0; }
  .hamburger{ display:grid;  border: 2px solid #f0f0f0;
    border-radius: 10px;
    box-sizing: border-box;}
  
  .top-menu{ position:relative; z-index:999; white-space:normal; gap:8px; }
  .top-menu > ul{
    position:fixed; left:0; right:0; bottom:0;
    top: var(--menu-top, 64px);                /* ← 防止被头部盖住 */
    background:#fff; margin:0; padding:12px 16px 24px;
    display:flex; flex-direction:column; align-items:flex-start;
    transform:translateY(-110%); transition:.25s ease; overflow:auto;
    z-index: 5000;                              /* 盖过 .header-top(1000) */
  }
  .top-menu.open > ul{ transform:translateY(0); }

  .top-menu ul li{ display:block; width:100%; }
  .top-menu ul li a{ display:block; margin:0; padding:12px 4px; font-size:1.1em; }

  /* 禁止小屏 hover 触发下拉 */
  .dropdown:hover > .dropdown-menu{ display:none !important; }

  /* 二级菜单：默认隐藏，父 li 有 .open 时显示 */
  .dropdown-menu{
    position:static; display:none; box-shadow:none; background:#fff;
    min-width:0; padding-left:12px; margin:0; font-size:1em;
  }
  .top-menu li.open > .dropdown-menu{ display:block !important; }

  /* 小箭头按钮样式（一级标题右侧） */
  .submenu-toggle{
    margin-left: 6px;
    border:0; background:transparent; cursor:pointer;
    font-size: 1.1em; line-height: 1;
    padding: 8px 6px;
  }
  .top-menu li.open > .submenu-toggle{ transform: rotate(180deg); }
}

/* 这句放在媒体查询外，确保有默认背景色 */
.dropdown-menu{ background:#fff; }



.copyrights{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}

/* 确保按钮永远在最上层、可点 */
.hamburger{
  position: relative;
  z-index: 4000;               /* 比头部任何装饰/遮罩都高 */
  font-size: 0;                /* 防止有字体/字符撑出“>” */
  line-height: 0;
}
.hamburger::before,
.hamburger::after{             /* 清理历史样式里可能加的箭头/字符 */
  content: none !important;
}


/* 桌面端隐藏右侧按钮 */
@media (min-width: 993px){
  .submenu-toggle{ display:none; }
}

/* 小屏显示：一级项左右排布，右侧是按钮；下拉用“点击” */
@media (max-width: 992px){
    .logo{ height:auto; width:auto; margin-top:0; }
  /* 一级项一行内左右分布 */
  .top-menu > ul > li{
    display: flex;
    align-items: center;
    width: 100%;
  }
  .top-menu > ul > li > a{
    flex: 1 1 auto;            /* 链接占据左侧剩余空间 */
    display: block;
    padding-right: 8px;
  }

  /* 右侧子菜单按钮样式 */
  .submenu-toggle{
    flex: 0 0 auto;
    margin-left: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 8px 6px;
    line-height: 1;
    font-size: 1.1em;
  }
  /* 旋转小箭头的动画 */
  .top-menu li.open > .submenu-toggle .bi{
    transform: rotate(180deg);
    transition: transform .2s;
  }

  /* 小屏：彻底关闭 hover 展开，统一走“点击” */
  .dropdown:hover > .dropdown-menu{ display:none !important; }

  /* 小屏：二级菜单默认隐藏，父 li 有 .open 时显示 */
  .dropdown-menu{
    position: static;
    display: none;
    box-shadow: none;
    background: #fff;      /* 你要什么底色都行 */
    min-width: 0;
    padding-left: 16px;    /* 稍微缩进一点更清晰 */
    margin: 4px 0 0;
    font-size: 1em;
  }
  .top-menu li.open > .dropdown-menu{ display:block !important; }

  /* 如果之前给 a::after 生成过三角，这里关掉，避免重复 */
  .top-menu li.dropdown > a::after{ content: none !important; }
}










/* === 汉堡按钮（桌面隐藏） === */
.hamburger{
  display:none;
  width:40px; height:34px;
  padding:0; margin:0 8px 0 0;
  border:0; background:transparent; cursor:pointer;
  position:relative; z-index:4000;
}
.hamburger span{
  position:absolute; left:6px; right:6px; height:3px; background:#0b2031;
  border-radius:2px; transition:transform .25s, top .25s, opacity .2s;
}
.hamburger span:nth-child(1){ top:8px; }
.hamburger span:nth-child(2){ top:16px; }
.hamburger span:nth-child(3){ top:24px; }
/* 打开时变 X */
.hamburger[aria-expanded="true"] span:nth-child(1){ top:16px; transform:rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ top:16px; transform:rotate(-45deg); }

/* 避免被裁切 */
.header-top1{ overflow:visible; }

/* 兜底：确保下拉有白底 */
.dropdown-menu{ background:#fff; }

/* === 小屏（≤992px）：抽屉 + 点击展开二级 === */
@media (max-width: 992px){
  .top-menu1{ position:relative; z-index: 999; gap:8px; white-space:normal; }
  .hamburger{ display:inline-flex; align-items:center; justify-content:center; }

  /* 抽屉（覆盖屏幕；顶部跟随 --menu-top） */
  .top-menu1 > ul#main-nav-2{
    position: fixed; left:0; right:0; bottom:0;
    top: var(--menu-top, 64px);
    height: calc(100dvh - var(--menu-top, 64px)); /* 抽屉自身高度 */
    background:#fff;
    margin:0; padding:12px 16px 24px;
    display:flex; flex-direction:column; align-items:flex-start;
    transform: translateY(-110%);                 /* 默认收起 */
    transition: transform .25s ease;
    box-shadow:0 12px 24px rgba(0,0,0,.15);
    overflow:auto; overscroll-behavior:contain;   /* 抽屉内部滚动 */
    -webkit-overflow-scrolling: touch;
    z-index:9999; pointer-events:auto;
  }
  .top-menu1.open > ul#main-nav-2{ transform: translateY(0); } /* 打开 */

  /* 一级项：左文字右按钮 */
  .top-menu1 ul#main-nav-2 > li{ display:flex; align-items:center; width:100%; }
  .top-menu1 ul#main-nav-2 > li > a{ flex:1 1 auto; display:block; padding:12px 4px; font-size:1.1em; }

  /* 小屏禁用 hover 展开，统一点击 */
  .dropdown:hover > .dropdown-menu{ display:none !important; }

  /* 二级菜单：父 li.open 时显示（内联展示） */
  .top-menu1 .dropdown-menu{
    position:static; display:none; box-shadow:none;
    background:#fff; min-width:0; padding-left:16px; margin:4px 0 0; font-size:1em;
  }
  .top-menu1 li.open > .dropdown-menu{ display:block !important; }

  /* 右侧子菜单按钮 */
  .submenu-toggle{
    flex:0 0 auto; margin-left:6px; border:0; background:transparent; cursor:pointer;
    padding:8px 6px; line-height:1; font-size:1.1em;
  }
  .top-menu1 li.open > .submenu-toggle{ transform: rotate(180deg); transition: transform .2s; }
}

/* === 桌面（≥993px）：横排 + hover 二级 === */
@media (min-width: 993px){
  #main-nav-2{
    display:flex !important; position:static; padding:0;
    background:transparent; box-shadow:none;
  }
  .submenu-toggle{ display:none; }
  .dropdown-menu{
    position:absolute; top:100%;
    background:#fff; min-width:160px; box-shadow:0 8px 16px rgba(0,0,0,.2);
    display:none; z-index:4000; font-size:10px;
  }
}
/* 只在真正支持鼠标悬停的设备启用 hover 展开 */
@media (min-width: 993px) and (hover: hover) and (pointer: fine){
  .dropdown:hover > .dropdown-menu{ display:block; }
}

/* 抽屉打开时锁住页面滚动 */
body.menu-open{ overflow:hidden; }

/* ==== 手机端样式：去掉头部阴影 + 放大 LOGO ==== */
@media (max-width: 992px){

  /* 1) 关掉头部卡片阴影，避免黑色条带 */
  .header-top1{
    box-shadow: none;
    padding: 8px 12px;          /* 可按需缩小内边距 */
    min-height: auto;
  }

  /* 2) 让 logo 区域自适应，并尽量占宽，顶部不留空 */
  .logo1{
    flex: 1 1 auto;             /* 左侧占剩余空间 */
    width: auto;
    height: auto;
    margin: 0;                   /* = 你的“margin-top:0” */
  }
  .logo1 img{
    display: block;
    height: auto;
    max-width: calc(100% - 60px);/* 预留 ~60px 给右侧汉堡按钮 */
    max-height: 90px;            /* 想更大就调这个值，如 110px */
  }

  /* 3) 右侧菜单区固定宽度，避免被挤换行 */
  .top-menu1{
    flex: 0 0 auto;
    gap: 8px;
  }
  .hamburger{
    width: 44px; height: 44px;  /* 按需调整按钮大小 */
  }

/* （可选）抽屉菜单的阴影也可变淡一点 */
  .top-menu1 > ul#main-nav-2{
    box-shadow: 0 8px 16px rgba(0,0,0,.12);
  }
}




:root{
  --drawer-gap: 8px;        /* 抽屉与卡片之间的间距 */
  --drawer-top: 88px;       /* JS 会动态覆盖 */
}

/* 桌面端保持 hover 下拉 */
@media (min-width: 993px) and (hover:hover) and (pointer:fine){
  .dropdown:hover > .dropdown-menu{ display:block; }
  .submenu-toggle{ display:none; }
}

/* ====== 小屏（≤992px）：全屏覆盖抽屉，但视觉锚定在卡片下方 ====== */
@media (max-width: 992px){
  /* 1) 让头部上方有真实留白（和大屏一致的“悬浮卡片”效果） */
  .header1{ padding: 12px 8px 0;} 
  .header-top1{
    top: 0;                          /* 间隙交给父容器 padding 控制 */
    border-radius: 12px;
    /* 若你不想阴影可去掉下一行；想和大屏一致可保留 */
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
  }

  /* 2) 汉堡按钮显示 */
  .hamburger{ display:inline-flex; align-items:center; justify-content:center; }

  .top-menu1{ position:relative; z-index:1000; gap:8px; }

  /* 3) 抽屉：fixed 覆盖，但 top=卡片底部+间距（由 JS 写入 --drawer-top） */
  .top-menu1 > ul#main-nav-2{
    position: fixed;
    left: max(8px, env(safe-area-inset-left));
    right: max(8px, env(safe-area-inset-right));
    top: var(--drawer-top, 88px);                          /* 关键 */
    max-height: calc(100dvh - var(--drawer-top, 88px) - 12px);
    background:#fff;
    margin:0; padding: 8px 0;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,.16);
    overflow:auto; overscroll-behavior:contain;
    -webkit-overflow-scrolling: touch;

    /* 入场动画（关闭状态） */
    transform: translateY(-6px) scale(.985);
    opacity: 0; pointer-events: none;
    transition: transform .22s ease, opacity .18s ease;
    z-index: 5000;
  }
  .top-menu1.open > ul#main-nav-2{
    transform: none; opacity:1; pointer-events:auto;
  }

  /* 4) 一级项竖排 */
  #main-nav-2 > li{ display:block; }
  #main-nav-2 > li > a{
    display:flex; align-items:center; justify-content:space-between;
    padding: 12px 16px; margin:0; font-size:16px; line-height:1.3;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  #main-nav-2 > li:last-child > a{ border-bottom:none; }

  /* 5) Tools 二级：在抽屉内部流式展开（父 li.open 时显示） */
  .top-menu1 .dropdown-menu{
    position: static; display:none; box-shadow:none;
    background:#fff; min-width:0; padding: 4px 0 8px; font-size:14px;
  }
  .top-menu1 li.open > .dropdown-menu{ display:block !important; }
  .dropdown-menu li a{ display:block; padding:10px 20px; }

  /* 右侧小箭头 */
  .submenu-toggle{
    display:inline-flex; margin-left:8px; border:0; background:transparent;
    cursor:pointer; padding:6px 6px; font-size:16px; line-height:1;
  }
  .top-menu1 li.open > .submenu-toggle{ transform: rotate(180deg); transition:transform .2s; }

  /* 6) 打开抽屉时锁住页面滚动 */
  body.menu-open{ overflow:hidden; }
}







/* ===== 固定尺寸参数，按需要改 ===== */

 :root{
  --gap: 28px;
  --box-h: 48vh;             /* 左右白色背景统一高度 */
  --font-body: 20px;
  --font-title: 20px;
}

*{ box-sizing: border-box; }
html, body{ margin:0; }


/* 整块容器：居中显示、两列并排、用 gap 控间距 */
.botto-container{
 inline-size: 98%; /* 居中且不超过 1550/1500 */
  margin-inline: auto;
  display: flex;
  gap: var(--gap);
  align-items: stretch;        /* 等高；若要随内容高度，改 flex-start 并把 --box-h 改为 min-height */
}


/* ===== 左：文字块（固定宽高 + 内部滚动，背景不会变形） ===== */
.baneer-center{
  min-height: 48vh; /* 统一高度；若要自适应，改为 height:auto 或 min-height */
  background: rgba(255,255,255,.3);
  border-radius: 10px;
  padding: 16px;
  margin: 0;
  text-align: justify;
  font-size: var(--font-body);
  overflow-wrap: break-word;
  hyphens: auto;
}


.baneer-center h1{
  font-size: var(--font-title);
  line-height: 1.4;
  margin: 0 0 16px;
  text-indent: 2em;
  color: rgba(0,0,0,.8);
}



/* 不再使用 float */
.baneer-center, .owl-carousel1{ float:none; width: calc((100% - var(--gap)) / 2);
  min-width: 0; }


/* ===== 小屏：上下堆叠 ===== */

@media (max-width: 900px){
  .botto-container{
    flex-wrap: wrap;
    gap: 16px;
    width: 100vw;
  }
  .baneer-center,
  .owl-carousel1{
    width: 100%;
    height: auto;
  }
  .owl-carousel1 .item{ height: auto; }
  .owl-carousel1 .item img{
    width: 100%; height: auto;
    max-height: var(--box-h); 
    object-fit: contain;
  }
}

/* 手机端需要上下堆叠时再启用 */
/* 小屏堆叠 */
@media (max-width: 760px){
  .baneer-center,
  .owl-carousel1{
    width: 100%;
    height: auto;
  }
  .owl-carousel1{ height: auto; }
  .owl-carousel1 .item{ height: auto; }
  .owl-carousel1 .item img{
    height: auto;
    max-height: 420px;        /* 可按需给个上限 */
  }
}


	
.igredients{
	background:url("../images/背景-0407") no-repeat;
	background-size:cover;
                background-repeat: no-repeat;
                background-position: center center;
	width: 105%; /* 设置宽度为100%，即占满整个容器的宽度 */
	height: 1050px; /* 设置高度为视口高度的100%，即全屏高度 */
	
}
.two-igredients{
               background: rgba(255, 255, 255, 0);
               width: 100%;
               height:100%;
}
.igredients-img {
	float: left;
	margin: 0px 12px 0 15px;
}


.footer-section {
    background: #009393; /* 设置背景颜色为 #009393 */
    padding: 3em 0; /* 设置上下内边距为 3em，左右内边距为 0 */
    text-align: center; /* 设置文本居中对齐 */
    
}

.footer-grid h5{
	font-size: 1.5em;
	color: #ffffff;
	font-family: 'Times New Roman', Times, serif;
	padding: 0 0 20px 0;
	text-transform: capitalize;
}
.footer-grid p{
	font-size: 1.2em;
	color: #ffffff;
	font-family: 'Times New Roman', Times, serif;
	line-height: 1.5em;
	padding: 0.3em 0;
                text-align: left;
}

.footer-grid p span {
	font-weight: bold;
	font-family: 'Times New Roman', Times, serif;
}
.footer-grid a {
                font-size: 19px;
	color: #ffffff;
	font-weight: 400;
	text-transform: capitalize;
                display: inline; /* 使超链接显示为行内元素 */
               margin-left: 0; /* 移除图片左边距 */
              padding: 0; /* 移除图片的内边距 */
              margin-left: 10px; /* 在图片和文本之间添加一些间距 */
}

.footer-grid a img {
    /* 移除或调整这里的 padding 以紧贴文本 */
    vertical-align: middle; /* 使图片与文本垂直居中对齐 */
    margin-left: 30px; /* 在图片和文本之间添加一些间距 */
}





.footer-socialicons{
	padding-top: 3.0em;
}
.footer-socialicons a i{
	width:16px;
	height: 16px;
	background: url("../images/img-sprite.png") no-repeat 0px -40px;
	display: inline-block;
}
.footer-socialicons a i .icon4{
	background-position: -0px -40px;
}
.footer-socialicons a i.icon4:hover {
	opacity: 0.5;
}
.footer-socialicons a i.icon5{
	background-position: -16px -40px;
}
.footer-socialicons a i.icon5:hover {
	opacity: 0.5;
}
.footer-socialicons a i.icon6{
	background-position: -32px -40px;
}
.footer-socialicons a i.icon6:hover {
	opacity: 0.5;
}
.footer-bottom {
	text-align: center;
	padding-top: 2em;
}
.footer-bottom p {
	font-weight: 400;
	font-size: 1.2em;
	color: #ffffff;
	font-family: 'Times New Roman', Times, serif;
}
.footer-bottom a {
	font-size: 19px;
	color: #ffffff;
	font-weight: 400;
	text-transform: capitalize;
}
.footer-bottom a:hover {
	color: #d5d6d7;
}
.footer-bottom p a {
	margin: 0 6px 0 6px;
}


/* =============== 桌面端优先：逐级“降级” =============== */

/* ≤1499px：整体收紧一点，盒高稍降，字号略小 */
@media (max-width: 1499px){
  :root{
    --wrap-w: 1200px;
    --box-h: 420px;
    --font-body: 15px;
    --font-title: 22px;
    /* --left-w 无需改，会按新 --wrap-w 自动重算为一半 */
  }
}

/* ≤1199px：继续收紧 */
@media (max-width: 1199px){
  :root{
    --wrap-w: 1100px;
    --box-h: 380px;
  }
}

/* ≤992px：仍保持两栏，但再收紧一些尺寸 */
@media (max-width: 992px){
  :root{
    --wrap-w: 960px;
    --box-h: 340px;
    --font-title: 21px;
  }
}

/* ≤768px：切换为上下堆叠，小屏阅读体验更好 */
@media (max-width: 768px){
  /* 允许小屏缩放，不再强制固定最小宽度 */
  body{ min-width: 0; }

  .botto-container{
    width: 100%;
    max-width: 720px;        /* 视觉宽度上限，可按需调或删掉 */
    margin: 0 auto;
    padding: 0 12px;
    flex-direction: column;  /* 两块上下堆叠 */
    align-items: stretch;
    gap: 16px;
  }

  /* 两块都用自适应高度（或给个最低高度） */
  .baneer-center,
  .owl-carousel1{
    width: 100%;
    height: auto;
    min-height: 300px;       /* 想更紧凑可调小或去掉 */
  }

  /* 小屏字号用 clamp 更柔和 */
  :root{
    --font-body: clamp(15px, 3.6vw, 16px);
    --font-title: clamp(20px, 4.8vw, 24px);
  }

  /* 小屏如果更想看全图而非铺满，可切换为 contain */
  .owl-carousel1 .item{ height: 100%; position: relative; }
  .owl-carousel1 .item img{
    position: static;
    width: 100%;
    height: auto !important;
    object-fit: contain;     /* 想继续铺满可改回 cover */
    inset: auto;
  }
}

/* ≤576px：再紧凑一点（间距、内边距等微调） */
@media (max-width: 576px){
  .botto-container{ gap: 12px; }
  .baneer-center{ padding: 12px; }
  .baneer-center h1{
    margin-bottom: 12px;
    text-indent: 1.5em;      /* 首行缩进稍小，避免挤压 */
  }
}

/* 小屏：上下堆叠 + 左右两块都占满整行 */
@media (max-width: 768px){
  /* 允许小屏压缩页面宽度 */
  body{ min-width: 0; }

  /* 容器不再用桌面的固定宽度 */
  .botto-container{
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 12px;
    display: flex;
    flex-direction: column;   /* 上下堆叠 */
    align-items: stretch;     /* 子项拉满容器宽度 */
    gap: 16px;
  }

  /* 关键：覆盖桌面的一半宽度，改为整行 */
  .baneer-center,
  .owl-carousel1{
    width: 100% !important;
    height: auto;             /* 小屏高度自适应 */
    min-height: 300px;        /* 可按需调整/删除 */
    margin: 0;
  }

  /* 避免 justify 在窄屏出现夸张空隙（按需选择其一） */
  .baneer-center{ 
    text-align: left;         /* 方案 A：改回左对齐，最稳 */
    /* 或者保留两端对齐但开启断词：
    text-align: justify; 
    hyphens: auto; 
    overflow-wrap: anywhere; 
    text-align-last: left;   */
  }
}

/* 桌面端维持你的方案（可保持原有设置） */
.owl-carousel1{
  height: var(--box-h, 360px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-carousel12 .item{ height: 100%; position: relative; }
.owl-carousel1 .item img{
  position: absolute; inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px) !important;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* ===== 小屏修复：保证一定能显示出来 ===== */
@media (max-width: 768px){
  body{ min-width: 0; }

  /* 容器上下堆叠 & 宽度铺满 */
  .botto-container{
    width: 100%;
    padding: 0 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  /* 1) 解除固定高/隐藏 */
  .owl-carousel1{
    height: auto;
    min-height: 260px;          /* 给个兜底高度，避免高度被算成 0 */
    overflow: visible;
  }
  /* 2) 解除整个 Owl 高度链 */
  .owl-carousel1 .owl-stage-outer,
  .owl-carousel1 .owl-stage,
  .owl-carousel1 .owl-item,
  .owl-carousel1 .item{
    height: auto !important;
  }

  /* 3) 取消绝对定位，用文档流撑开高度；完整显示图像 */
  .owl-carousel1 .item{ position: static; padding: 0; }
  .owl-carousel1 .item img{
    position: static !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;   /* 想继续铺满可改回 cover */
    /* 4) 万一 SVG 文件没有内置比例，用这个保证有高度 */
    aspect-ratio: 16 / 9;
  }
}



#toTop {
	display: none;
	text-decoration: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	overflow: hidden;
	width: 48px;
	height: 48px;
	border: none;
	text-indent: 100%;
	background: url("../images/to-top2.png") no-repeat 0px 0px;
}
			/*-- responsive-mediaquries --*/
			@media(max-width:1366px){
			.header {
				min-height: 620px;
			}
			.baneer-center {
				padding-top: 6em;
			}
			.igredients {
				min-height: 640px;
			}
			.footer-bottom {

				padding-top: 1.7em;
			}
			}
			@media(max-width:1280px){
			.header {
				min-height: 590px;
			}
			.baneer-center {
				padding-top: 4em;
			}
			.about-rightgrid img {
				width: 100%;
			}
			.about-leftgrid img.cook {
				width: 33%;
			}
			.igredients {
				min-height: 591px;
			}
			.fine-igredients {
				margin: 3em auto 0;
				padding: 3em 5em;
			}
			.reviews {
				min-height: 592px;
			}
			.review-info{
				margin: 3em auto 0;
				padding: 3em 4em;
			}
			}
		@media(max-width:1024px){
			.logo {
				margin-right: 3%;
			}
			.top-menu ul li a{
				margin: 0 0.7em;
			}
			.header{
				min-height:470px;
			}
			.top-menu ul li a {
				font-size: 1.4em;
			}
			.baneer-center {
				padding-top:3.5em;
			}
			.baneer-center img {
				width: 30%;
			}
			.baneer-center h1 {
				font-size: 3.8em;
				padding-bottom: 25px;
			}
			.about{
				min-height:520px;
			}
			.about-leftgrid {
				padding-top: 1em;
			}
			.about-leftgrid h2 {
				font-size: 2.5em;
			}
			.about-leftgrid p {
				font-size: 1.19em;
				line-height: 1.5em;
				padding: 1em 1em;

			}
			.about-leftgrid img {
				width: 50%;
			}
			.about-rightgrid img {
				width:100%
			}
			.about-leftgrid img.cook {
				width: 30%;
			}
			.about-leftgrid img {
				width: 40%;
			}
			.igredients{
				min-height: 477px;
			}
			.fine-igredient h3 {
				font-size: 2.5em;
			}
			.fine-igredient p {
				font-size:1em;
				padding: 1.2em 0;
			}
			.fine-igredient img {
				width: 40%;
			}
			.fine-igredients {
				padding: 1em 2em;
				margin: 3em auto 0;
			
			}
			.igredients-img {
				float: left;
				margin: 10px 10px 20px 8px;
			}
			.menu9{
				min-height: 795px;
			}
			.menu-grids h3 {
				font-size: 2.5em;
			}
			.menu-grids1 h3 {
				font-size: 2.5em;
			}
			.tzatsiki h4 {
				font-size: 1.4em;
			}
			.dollar h4 {
				font-size: 1.4em;
			}
			.menu1-grid a {
			font-size: 1.15em;
			}
			.menu-grid p {
				font-size: 1.06em;
			}
			.reviews{
				min-height: 477px;
			}
			.review-info img {
				width: 40%;
			}
			.review-info{
				padding: 2em 1em;
				margin: 2.5em auto 0;
				width: 50%;
			}
			.review-info h3 {
				font-size: 2.5em;
				padding: 15px 0;
			}
			.review-info p {
				font-size: 1.19em;
				padding: 1.2em 0;
			}
			.reservations{
				min-height: 520px;
				padding-top: 4.5em;
			}
		
			.reservation-rightgrid h4 {
				font-size: 2.5em;
			}
			.reservation-rightgrid {
				text-align: center;
				padding: 0 1em;
			}
			.reservation-rightgrid p {
				font-size: 1.19em;
				padding: 0.5em 0 0.4em 0;
				line-height: 1.3em;
				overflow: hidden;
				height: 69px;
			}
			.contact {
				padding-top: 0.8em;
			}
			.contact-text{
				padding-bottom: 3%;
			}
			input[type="button"] {
				width: 18%;
				margin: 0px 7em;
			}
			.footer-section {
				padding: 2em 0;
			}
			.footer-grid h5 {
				font-size: 1.4em;
			}
			.footer-grid p {
				font-size: 1.13em;
				
			}
			.footer-grid img {
				width: 50%;
			}
			.footer-socialicons {
				padding-top: 4.5em;
			}
			.footer-grid a img {
				padding: 4.5em 0 0;
			}
			.footer-bottom {
				text-align: center;
				padding-top: 1.5em;
			}
		}
			
	@media(max-width:800px){		
				.header {
					min-height: 360px;
				}
				.logo {
						margin-right: 2%;
				}
				.top-menu {
					float: left;
					padding-top: 1.57em;
				}
				.top-menu ul li a {
					font-size: 1.08em;
				}
				.social-icon {
					float: right;
					padding-top: 1em;
				}
				.baneer-center {
					padding-top: 2.5em;
				}
				.baneer-center h1 {
					font-size: 2.9em;
					padding-bottom: 25px;
					line-height: 1.3em;
				}
			
				a.button {
					
					font-size: 13px;
				}
				a.button1 {
				
					font-size: 13px;
				}
				.about {
					min-height: 420px;
				}
				.about-leftgrid p {
					font-size: 1em;
					line-height: 1.5em;
					padding: 1em 0em;
					height: 83px;
					overflow: hidden;
				}
				.about-leftgrid{
					float:left;
					width:50%;
				}
				.about-leftgrid img {
					width: 60%;
				}
				.about-leftgrid img.cook {
					width: 40%;
				}
				.about-rightgrid{
					float:left;
					width:50%;
				}
				.igredients {

					min-height: 363px
				}
				.fine-igredient h3 {
					font-size: 2.3em;
					padding: 15px 0;
				}
				.fine-igredients {
					
				}
				
				.about-leftgrid h2 {
					font-size: 2.3em;
				}
				.igredients-img {
					width: 25%;
					margin: 0px 10px 0 10px;
				}
				.fine-igredient p {
					height: 82px;
					overflow: hidden;
					font-size: 1em;
					padding: 1em 0;
				}
				.menu9 {
					min-height: 730px;
					padding-top:2.5em;
				}
				.menu-grids{
					float:left;
				}
				.menu-grids1{
					float:left;
				}
				.menu-grids img {
					width: 60%;
				}
				.menu-grids img {
					width: 60%;
				}
				.menu-grids1 img {
					width: 60%;
				}
				.menu-grids h3 {
					font-size: 2em;
					padding-bottom: 10px;
				}
				.menu-grids1 h3 {
					font-size: 2em;
					padding-bottom: 10px;
				}
				.tzatsiki h4 {
					font-size: 1.3em;
				}
				.dollar h4 {
					font-size: 1.3em;
				}
				.menu-grid p {
					font-size: 1em;
					height: 20px;
					overflow: hidden;
				}
				.reviews {
					min-height: 363px;
				}
				.review-info h3 {
					font-size: 2.3em;
				}
				.review-info {
					padding: 1em 1em;
					margin: 2em auto 0;
				}
				.review-info img {
					width: 50%;
				}
				.review-info p {
					font-size: 1em;
					line-height: 1.5em;
					padding:0.9em 0;
				}
				.reservations {
					min-height: 430px;
				}
				.grid-section {
					width: 50%;
					float: left;
				}
				.reservation-rightgrid{
					float:left;
					width:50%;
				}
				.reservation-rightgrid h4 {
					font-size: 2.3em;
				}
				.reservation-rightgrid p {
					overflow: hidden;
					height: 45px;
					font-size: 1em;
				}
				.reservation-rightgrid span{
					display: none;
                                                                                
				}
				.footer-grid {
					margin-bottom: 2em;
				}
				.footer-grid h5 {
					
					padding:0 0 15px 0;
				}
				.footer-grid img {
					width: 25%;
					margin-bottom: 1em;
				}
				.footer-grid p {
					font-size: 1em;
					padding: 0 5em;
				}
				.footer-grid a img {
					padding: 1.5em 0 0 0;
				}
				.footer-socialicons {
					padding-top: 1.5em;
				}
				.footer-bottom p {
					font-weight: 400;
					font-size: 1.1em;
				}
				.footer-bottom a {
					font-size: 15px;
				}
			}
	/* 
	 @media(max-width:768px){
		.logo {
			width: 18%;
		}
		.header-top {
		padding-top:0em;
		}
		span.menu:before {
			content: url(../images/nav.png) no-repeat 0px 0px;
			cursor: pointer;
		}
		.top-menu {
			float:none;
			width: 100%;
			text-align:right;
		}
		.top-menu  ul
		{
			display:none;
		}
		.top-menu  ul li 
		{
			font-size: 14px;
			display:block;
			
		}
		.top-menu ul li{
			display:block;
			float:none;
			margin: 0em;
			border-bottom: 1px solid #4B6075;
			border-right:none;
		}
		.top-menu ul li {
	
			padding:10px 0 ;
		}
		.top-menu  ul
		{
			margin:15px 0;
			z-index: 999;
			position: absolute;
			width: 96%;
			background:#2e3e4e;
			text-align: center;
		}
		.top-menu ul li a {
			display: block;
			font-size: 1.2em;
		}
		
		.baneer-center {
			width: 60%;
		}
		.header {
			min-height: 348px;
		}
		.social-icon {
	
			padding-top: 0em;
			display:none
		}
		.baneer-center h1 {
			font-size: 2.5em;
			padding-bottom: 10px;
			line-height: 1.5em;
		}
	a.button {
		font-size: 12px;
		padding: 1em 2em;
	}
	a.button1 {
		font-size: 12px;
		padding: 1em 2em;
		}
	} 
 */
	
	
	@media(max-width:640px){
		.header {
			min-height: 290px;
		}
		.top-menu ul li {
			padding: 5px 0;
		}
		.top-menu  ul
		{
			width:95%;
		}
		.baneer-center{
			width: 58%;
		}
		.baneer-center h1 {
			font-size: 2em;
		}
		.baneer-center img {
			width: 35%;
		}
		a.button {
			font-size: 10px;
			padding: 1em 2em;
		}
		a.button1 {
			font-size: 10px;
			padding: 1em 2em;
		}
		.about {
			min-height: 315px;
			padding-top: 2em;
		}
		.about-leftgrid h2 {
			font-size: 2em;
			padding-bottom: 4px;
		}
		.about-leftgrid p{
			padding: 0.8em 0em;
			height: 58px;
		}
		.igredients {
			min-height: 295px;
		}
		.fine-igredients {
			padding: 1.5em 2em;
			margin: 1.9em auto 0;
		}
		.fine-igredient h3 {
			font-size: 2em;
			padding: 0 0 10px 0;
		}
		.fine-igredient p {
			height: 75px;
			overflow: hidden;
			font-size: 1em;
			padding: 0.5em 0;
		}
		.menu9 {
			min-height: 655px;
		}
		.menu-grid {
			padding: 1em 1em;
		}
		.reviews {
			min-height: 313px;
		}
		.review-info {
			margin: 1em auto 0;
		}
		.review-info h3 {
			font-size: 2em;
			padding: 0 0 10px 0;
		}
		.review-info p {
			height: 93px;
			overflow: hidden;
			padding: 1em 0;
		}
		.reservations {
			min-height: 325px;
			padding-top: 2.5em;
		}
		.reservation-rightgrid h4 {
			font-size: 2em;
			padding-bottom: 5px;
		}
		.reservation-rightgrid img {
			width: 60%;
		}
		.reservation-rightgrid p{
			overflow: hidden;
			height: 25px;
		}
		.contact-text {
			float: left;
			width: 48%;
		}
		.contact-text input.text{
			font-size:1.1em;
		}
		.contact-text input#datepicker
		{
			font-size:1.1em;
		}
		.dropdown {
			font-size:1.1em;
		}
		.reservation-rightgrid input[type="button"] {
			width: 45%;
			margin: 0px 1em;
			font-size:1.1em;
		}
		.footer-grid img {
			width: 20%;
		}
		.footer-grid p {
			font-size: 0.95em;
		}
		.footer-bottom {
			text-align: center;
			padding-top: 1.2em;
		}
}
	@media(max-width:480px){
		.header {
			min-height: 225px;
		}
		.logo {
			width: 26%;
		}
		.top-menu  ul
		{
			width: 93%;
		}
		.baneer-center {
			width: 79%;
			padding-top: 1.1em;
		}
		.buttons {
			padding-top: 15px;
		}
		.top-menu ul {
			margin: 0px 0;
		}
		.top-menu ul li {
			padding: 3px 0;
		}
		.baneer-center h1 {
			line-height: 1.1em;
			padding-bottom: 5px;
		}
		.about-leftgrid {
			width: 100%;
			padding:0em 0em;
		}
		.about-leftgrid h2 {
			font-size: 1.9em;
		}
		.about-leftgrid img {
			width: 45%;
		}
		.about-rightgrid {
			width: 100%;
			margin-top: 1em;
		}
		.igredients {
			min-height: 240px;
		}
		.fine-igredients {
			padding: 0.5em 2em;
			margin: 1.3em auto 0;
			width: 70%;
			}
		.menu-grids {
			width: 100%;
		}
		.menu-grids1 {
			width: 100%;
		}
		.menu-grids h3 {
			font-size: 1.9em;
			padding-bottom: 5px;
		}
		.menu-grids1 h3 {
			font-size: 1.9em;
			padding-bottom: 5px;
		}
		.menu-grid {
			padding: 0.9em 0;
		}
		.reviews {
			min-height: 225px;
		}
		.review-info {
			width:60%;
			margin: 0.5em auto 0;
		}
		.review-info h3 {
			font-size: 1.9em;
			padding: 0 0 5px 0;
		}
		.review-info p {
			height: 62px;
			overflow: hidden;
			padding: 1em 0;
			line-height: 1.2em;
		}
		.reservations {
			padding: 2em 0;
		}
		.grid-section {
			width: 100%;
		}
		.reservation-rightgrid {
			width: 100%;
			margin-top: 2em;
		}
		.reservation-rightgrid img {
			width: 50%;
		}
		.footer-grid h5 {
			font-size: 1.2em;
		}
		.footer-grid p {
			font-size: 0.95em;
			height: 20px;
			overflow: hidden;
		}
		.footer-grid img {
			width: 30%;
		}
		.footer-grid {
			margin-bottom: 1.5em;
		}
		.footer-bottom {

		padding-top: 0.5em;
		}
	@media(max-width:320px){
		.header {
			min-height: 240px;
		}
		.logo {
			width: 40%;
		}
		.top-menu {
			padding-top: 1em;
		}
		.baneer-center {
			width: 100%;
			padding-top: 2.55em;
		}
		.baneer-center h1 {
			line-height: 1.1em;
			padding-bottom: 5px;
			font-size: 1.8em;
			overflow: hidden;
			height: 28px;
			}
		a.button {
			font-size: 10px;
			padding: 1em 1em;
		}
		a.button1 {
			font-size: 10px;
			padding: 1em 1em;
		}
		.top-menu ul {
			width: 90%;
		}
		.about-leftgrid h2 {
			font-size: 1.88em;
		}
		.about-leftgrid p {
			padding: 0.5em 0em;
			height: 55px;
		}
		.about-rightgrid {
			padding: 0 0;
		}
		.fine-igredients {
			padding: 0.5em 0em;
			margin: 0.8em auto 0;
			width: 100%;
		}
		.fine-igredient h3 {
			font-size: 1.88em;
			padding: 0px 0 5px 0;
		}
		.menu-grids {
			width: 100%;
			padding: 0 0;
			margin: 0 0;
		}
		.menu-grids1 {
			width: 100%;
			padding: 0 0;
			margin: 0 0;
		}
		.menu1-grid a {
			font-size: 1.1em;
		}
		.menu-grids h3 {
			font-size: 1.66em;
		}
		.tzatsiki h4 {
			font-size: 1.22em;
		}
		.dollar h4{
			font-size: 1.22em;
		}
		.menu-grid p {
			font-size: 0.9em;
		}
		.menu-grids1 h3 {
			font-size: 1.66em;
		}
		.review-info {
			width: 90%;
		}
		.review-info h3 {
			font-size: 1.88em;
		}
		.grid-section {
			width: 100%;
			padding: 0 0;
		}
		.reservation-rightgrid p {
			overflow: hidden;
			height: 41px;
		}
		.reservation-rightgrid h4 {
			font-size: 1.88em;
			padding-bottom: 5px;
		}
		.contact-text {
			width: 100%;
		}
		.contact-text input.text {
			width: 100%;
			margin-right: 0;
		}
		.contact-text input#datepicker {
			width: 100%;
			margin-right: 0;
		}
		.dropdown {
			width: 100%;
		}
		.reservation-rightgrid input[type="button"] {
			width: 60%;
			margin: 0.5em 0em 0 0;
		}
		.footer-grid p{
			padding:0 0;
		}
		.footer-grid {
			margin-bottom: 1.3em;
		}
		.footer-grid img {
			width: 40%;
		}
		.footer-bottom p {
			font-weight: 400;
			font-size: 1em;
		}
	}





