
/* 主体 */

.byz-list-main {
    display: flex;
    width: 1200px;
    margin-top: 20px;
    gap: 20px;
}
.byz-list-left {
    width: 880px;
}
.byz-list-right {
    width: 300px;
}

.food-hero {
	width:1200px;
	margin:0 auto;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.08)
}
.food-hero-banner {
    position: relative;
    height: 430px
}
.food-hero-banner>.bg {
    width: 100%;
    height: 100%;
    object-fit: cover
}
.food-hero-banner:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(to top, rgba(0,0,0,.75), transparent)
}
.food-hero-info {
    position: absolute;
    left: 45px;
    right: 45px;
    bottom: 35px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2
}
.food-hero-left {
    color: #fff;
    max-width: 720px
}
.food-hero-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #26A44B;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 700
}
.food-hero-title {
    font-size: 42px;
    margin: 14px 0
}
.food-hero-lable {
    display: flex;
    gap: 10px;
    margin-bottom: 18px
}
.food-hero-lable span {
    padding: 8px 14px;
    background: rgba(255,255,255,.18);
    border-radius: 30px;
    font-size: 15px;
}
.food-hero-meta {
    display: flex;
    gap: 24px
}
.food-hero-meta div {
    display: flex;
    gap: 8px;
    align-items: center
}
.food-hero-meta div.food-hero-stars-bg, .food-hero-meta div.food-hero-stars-fill {
    gap: 3px;
}
.food-hero-right {
    width: 400px
}
.food-hero-gallery-card {
    width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.5);
}
.food-hero-main-photo {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #fff;
}
.food-hero-main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* 圆形按钮 */
.food-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all .28s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.18);
    z-index: 5;
}
.food-hero-nav i {
    font-size: 14px;
    line-height: 1;
    display: block;
    transform: translateY(1px);
}
.food-hero-prev {
    left: -18px;
}
.food-hero-next {
    right: -18px;
}
.food-hero-main-photo:hover .food-hero-prev {
    left: 12px;
    opacity: 1;
    pointer-events: auto;
}
.food-hero-main-photo:hover .food-hero-next {
    right: 12px;
    opacity: 1;
    pointer-events: auto;
}
.food-hero-nav:hover {
    background: #26A44B;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
.food-hero-nav:active {
    transform: translateY(-50%) scale(.96);
}
.food-hero-thumb-wrap {
    padding: 10px;
    background: #32323259;
}
.food-hero-thumb-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.food-hero-thumb-list::-webkit-scrollbar {
display:none;
}
.food-hero-thumb {
    flex: 0 0 auto;
    width: 72px;
    height: 54px;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}
.food-hero-thumb.active {
    border-color: #26A44B;
}
.food-hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.food-hero-bottom {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee
}
.food-hero-btns {
    display: flex;
    gap: 12px
}
.food-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 11px 22px;
    border-radius: 999px;
    text-decoration: none;
}
.food-hero-btn-green {
    background: #00b578;
    color: #fff!important;
}
.food-hero-btn-green:hover {
    background: #1acc88;
}
.food-hero-btn-white {
    border: 1px solid #ddd;
    color: #444
}
.food-hero-address {
    display: flex;
    gap: 8px;
    align-items: center
}
.food-hero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}
.food-hero-stars {
    position: relative;
    display: inline-flex;
    font-size: 16px;
    line-height: 1;
}
.food-hero-stars-bg {
    display: flex;
    color: #bcbcbc;
}
.food-hero-stars-fill {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    color: #FFC107;
}
.food-hero-stars i {
    margin-right: 0;
}
.food-hero-score {
    font-weight: 700;
    color: #fff;
}

/*==========================
    左栏
==========================*/

.food-detail-left {
    width: 800px;
}
/*==========================
    通用卡片
==========================*/

.food-detail-card {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
/*==========================
    标题
==========================*/

.food-detail-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}
.food-detail-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}
.food-detail-card-title i {
    color: #26A44B;
    font-size: 18px;
}
/*==============================
    店铺基本信息
==============================*/

.food-detail-info-card {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,.05);
}
.food-detail-info-header {
    margin-bottom: 22px;
}
.food-detail-info-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #222;
}
.food-detail-info-title i {
    color: #26A44B;
}
.food-detail-info-list {
    display: flex;
    flex-direction: column;
}
.food-detail-info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 0;
    border-top: 1px solid #f0f0f0;
}
.food-detail-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.food-detail-info-label {
    width: 140px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 15px;
    font-weight: 600;
}
.food-detail-info-label i {
    color: #26A44B;
    font-size: 18px;
}
.food-detail-info-value {
    flex: 1;
    color: #333;
    font-size: 15px;
    line-height: 1.7;
}
/*==========================
    店铺介绍
==========================*/

.food-detail-about {
    color: #555;
    font-size: 16px;
    line-height: 2;
}
.food-detail-about p {
    margin-bottom: 18px;
}
.food-detail-about p:last-child {
    margin-bottom: 0;
}

/*==========================
    Google地图
==========================*/

.food-detail-map {
    overflow: hidden;
    border: 1px solid #eee;
}
.food-detail-map iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
}
/*==========================
    地图底部
==========================*/

.food-detail-map-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}
.food-detail-map-address {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 15px;
}
.food-detail-map-address i {
    color: #26A44B;
}




/* 右侧模块 */

.right-box {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 0 1px #f1f1f1;
}
.byz-home-topic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.byz-home-module-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.byz-home-more {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #999;
    font-size: 14px;
}
.byz-home-more:hover {
    color: #08c26e;
}
.byz-home-more i {
    font-size: 12px;
}


/* 本周热门 */

.hot-list {
	padding: 0;
    display: flex;
    gap: 16px;
    flex-direction: column;
}
.hot-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.hot-rank {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    margin-right: 11px;
    flex-shrink: 0;
    background: #d4d4d4;
}
.hot-item:nth-child(1) .hot-rank {
    background: #ff6b35;
}
.hot-item:nth-child(2) .hot-rank {
    background: #ff9800;
}
.hot-item:nth-child(3) .hot-rank {
    background: #f7b500;
}
.hot-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    margin-right: 25px;
}
.hot-view {
    color: #999;
    font-size: 13px;
}
/* 最新加入 */

.latest-list {
    padding: 0;
}
.latest-item {
    display: flex;
    text-decoration: none;
    margin-bottom: 15px;
}
.latest-item:last-child {
    margin-bottom: 0;
}
.latest-cover {
    width: 78px;
    height: 58px;
    border-radius: 2px;
    object-fit: cover;
    margin-right: 12px;
    flex-shrink: 0;
}
.latest-info {
    flex: 1;
}
.latest-title {
    color: #333;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 8px;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.latest-time {
    color: #999;
    font-size: 13px;
}
/* 广告 */

.adia-box {
    padding: 0;
    margin-bottom: 20px;
}
.adia-box img {
    width: 100%;
    display: block;
}

/* 手机 */

@media(max-width:768px) {
.byz-list-main {
    flex-direction: column;
}
.byz-list-left, .byz-list-right {
    width: 100%;
}
}