 .layui-nav .layui-nav-item{
     line-height: 38px;
 }
    
:root {
    --primary: #5b7cf3;
    --primary-dark: #4866d9;
    --accent: #ff7d3b;
    --bg-gradient: linear-gradient(145deg, #4b6cb7 0%, #182848 100%);
    --card-bg: #ffffff;
    --text-main: #1f2937;
    --text-sub: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 28px rgba(0,0,0,0.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}


.province-head h2 a,
.city-block h3 a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}
.province-head h2 a:hover,
.city-block h3 a:hover {
    opacity: 0.85;
    text-decoration: underline;
}




body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: var(--bg-gradient);
    margin: 0;
    /*background: radial-gradient(circle at top left, rgba(255, 90, 31, .14), transparent 28%), radial-gradient(circle at 86% 12%, rgba(47, 128, 237, .12), transparent 24%), linear-gradient(180deg, #fff9f5 0%, #f6f8fb 52%, #eef2f8 100%);*/
}

.wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}
}

.page-header {
    text-align: center;
    margin-bottom: 28px;
}

.page-header h1 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
        text-align: center;
}

.lang-bar {
    /*margin-bottom: 24px;*/
    text-align: center;
}

.lang-bar a {
    display: inline‑block;
    padding: 9px 24px;
    background: rgba(255,255,255,0.18);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.25s ease;
    font-size: 15px;
    display: block;
}

.lang-bar a:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.search-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
}

.search-form input[type="text"] {
    flex: 1;
    width: 80%;
    padding: 14px 22px;
    border-radius: 30px;
    border: none;
    outline: none;
    font-size: 15px;
    box-shadow: var(--shadow-md);
}

.search-form button {
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(91,124,243,0.35);
    transition: all 0.25s ease;
}

.search-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91,124,243,0.45);
}


.waterfall {
    column-count: 3;
    column-gap: 24px;
}

.waterfall.search-result{
    column-count: 1;
}

@media (max-width:1200px){
    .waterfall { column-count: 2; }
}
@media (max-width:640px){
    .waterfall { column-count: 1; }
}

.province-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 24px;
}

.province-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.province-head {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 1px 20px;
}

.province-head h2 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.city-block {
    padding: 0px 20px 20px;
    border-bottom: 1px solid var(--border-color);
}
.city-block:last-of-type {
    border-bottom: none;
}

.city-block h3 {
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap:6px;
}

.food-item {
    background-color: #f9fafb;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 10px;
    border-left:4px solid #d1d5db;
    transition: 0.2s;
}
.food-item:last-child{
    margin-bottom:0;
}
.food-item:hover {
    border-left-color: var(--primary);
    background-color: #f3f4f6;
}

.food-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
    margin-bottom:4px;
}

.food-desc {
    font-size: 14px;
    color: var(--text-sub);
}

.empty-wrap {
    text-align: center;
    padding: 80px 20px;
    color:#fff;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    font-size:17px;
}


.bottom-refresh-wrap{
    text-align:center;
    margin-top:40px;
    margin-bottom:30px;
}
.bottom-refresh-wrap a{
    display:inline-block;
    padding:12px 28px;
    background:rgba(255,255,255,0.2);
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    border:1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    transition:0.25s;
}
.bottom-refresh-wrap a:hover{
    background:rgba(255,255,255,0.35);
    transform: translateY(-2px);
}


#backTop{
    position:fixed;
    right:24px;
    bottom:24px;
    width:48px;
    height:48px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    border:none;
    box-shadow:0 4px 14px rgba(0,0,0,0.25);
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    font-size:18px;
    z-index:999;
}
#backTop.show{
    opacity:1;
    visibility:visible;
}
#backTop:hover{
    background:var(--primary-dark);
}
.page-header a{color:#fff;text-decoration: none;}

.lang-bar .food-list{
background: #F37335;
  
}

 .custom-header {
      padding: 10px 20px;
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #FDC830;
      background: -webkit-linear-gradient(to right, #F37335, #FDC830);
      background: linear-gradient(to right, #FDC830, #F37335);
    }

    .layui-logo {
      color: #fff!important;
      font-size: 24px;
      font-weight: bold;
    }

    .layui-logo a {
      color: #fff!important;
    text-decoration: dashed;
    }

 .layui-logo img{
padding-top:10px;
height:32px;
}

    .menu-icon {
      display: none; 
      font-size: 24px;
      cursor: pointer;
      color: #fff;
    }

    .layui-nav {
      display: flex;
      align-items: center;
      margin: 0;
      padding: 0;
      background-color: #ffffff1c;
      border: 1px solid #ffffff2c;
      /*box-shadow: 0 0 10px #ffffff2c;*/
      border-radius: 100px;
    }

    .layui-nav-item {
      list-style: none;
    }

    .layui-nav-item a {
      color: #fff;
      font-size: 16px;
      padding: 10px 15px;
      text-decoration: none;
      display: block;
      transition: background-color 0.3s ease;
	  border-radius: 50px;
    }

    .layui-nav-item a:hover {
      background: #16b777;
   /*   background: -webkit-linear-gradient(to right, #16b777, #70f7ea);
      background: linear-gradient(to right bottom, #16b777, #70f7ea); */
      border-radius: 100px;
    }

    .layui-container {
        padding: 15px 20px;
		background: #fff;
		border-radius: 20px;
		margin: 0px auto;
		box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
    }

    h2 {
      font-size: 28px;
      font-weight: bold;
      color: #333;
      margin-bottom: 20px;
    }
    
    @media screen and (max-width: 768px) {
  .menu-icon {
    display: block; 
  }

.layui-nav {
    display: none;
    position: absolute;
    top: 78px;
    right: 0px;
    background-color: #ff9624;
    z-index: 1000;
    border-radius: 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    width: 190px;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

  .layui-nav.active {
    display: flex; 
    opacity: 1;
    transform: translateY(0);
  }

  .layui-nav-item a {
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 4px;
    margin: 4px 10px;
  }

  .layui-nav-item a:hover {
    background-color: #ff9624;
  }


}


    @media screen and (min-width: 768px) {
      .layui-nav {
        display: flex; 
      }

      .menu-icon {
        display: none;
      }
    }