
/* 主体 */

.byz-list-main {
    display: flex;
    gap: 20px;
}
.byz-list-right {
    width: 300px;
}

/* 结合项 */
.filter-box {
    width: 1200px;
    margin: 0 auto 20px auto;
    background: #fff;
    border: 1px solid #ececec;
    overflow: hidden;
}
.filter-row {
    display: flex;
    padding: 18px 22px;
    border-bottom: 1px solid #f3f3f3;
}
.filter-row:last-child {
    border-bottom: none;
}
.filter-title{
    width:90px;
    flex-shrink:0;
    display:flex;
    transform: translateY(6px);
    color:#666;
    font-size:15px;
    font-weight:600;
}
.filter-title i{
    color:#00b578;
    font-size:16px;
    margin-right:8px;
}
.filter-content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-item {
    height: 30px;
    line-height: 30px;
    padding: 0 16px;
    border-radius: 18px;
    color: #555;
    text-decoration: none;
    transition: .2s;
    font-size: 14px;
}
.filter-item:hover {
    background: #eef8f0;
    color: #26A44B;
}
.filter-item.active {
    background: #00b578;
    color: #fff;
}

/* 店铺列表 */
.food-list {
    width: 880px;
    margin: auto;
}
.food-item {
    display: flex;
    background: #fff;
    border: 1px solid #ececec;
    overflow: hidden;
    margin-bottom: 20px;
    transition: .25s;
    height: 160px;
}
.food-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.food-cover {
    width: 265px;
    height: 160px;
    flex-shrink: 0;
    overflow: hidden;
}
.food-cover img {
    width: 265px;
    height: 160px;
}
.food-info {
    flex: 1;
    padding: 17px 24px 18px 24px;
}
.food-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}
.food-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 8px;
}
.food-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}
.rating-stars {
    position: relative;
    font-size: 18px;
    line-height: 1;
    color: #ddd;
}
.rating-stars::before {
    content: "★★★★★";
}
.rating-fill {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #ff9800;
}
.rating-fill::before {
    content: "★★★★★";
}
.rating-score {
    color: #ff9800;
    font-weight: 600;
    font-size: 15px;
}
.food-label {
    display: flex;
    gap: 8px;
}
.food-label span {
    background: #eef8f0;
    color: #26A44B;
    border-radius: 14px;
    padding: 4px 10px;
    font-size: 12px;
}
.food-desc {
    margin-top: 12px;
    color: #666;
    line-height: 1.7;
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.food-footer {
    display: flex;
    gap: 34px;
    margin-top: 12px;
    color: #888;
    font-size: 13px;
}
.food-footer span {
    display: flex;
    align-items: center;
}
.food-footer i {
    color: #26A44B;
    margin-right: 6px;
    font-size: 14px;
}



/* 右侧模块 */

.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%;
}
}