.main {
	margin: 50px auto 90px auto;
}
/* ===========================
   筛选
=========================== */
.by-job-filter-box {
	background: #fff;
	border: 1px solid #efefef;
	padding: 16px 15px 15px 15px
}

.by-job-filter-row {
	display: flex;
	align-items: flex-start
}

.by-job-filter-row:first-child {
	margin-bottom: 10px;
}

.by-job-filter-title {
	width: 70px;
	padding-top: 11px;
	font-size: 16px;
	font-weight: 600;
	display: flex;
	align-items: center
}

.by-job-filter-title i {
	margin-right: 5px;
	color: #00b578
}

.by-job-filter-select {
	flex: 1;
	position: relative
}

.by-job-filter-current {
	height: 46px;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	padding: 0 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer
}

.by-job-filter-current-text {
	font-size: 15px
}

.by-job-filter-current i {
	transition: .25s
}

.by-job-filter-select.open .by-job-filter-current i {
	transform: rotate(180deg)
}

.by-job-filter-dropdown {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 54px;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 5px;
	box-shadow: 0 8px 24px rgba(0,0,0,.08);
	max-height: 300px;
	overflow: auto;
	z-index: 99
}

.by-job-filter-select.open .by-job-filter-dropdown {
	display: block
}

.by-job-filter-dropdown ul {
	list-style: none
}

.by-job-filter-dropdown a {
	display: block;
	padding: 14px 16px;
	text-decoration: none;
	color: #333
}

.by-job-filter-dropdown a.active, .by-job-filter-dropdown a:hover {
	background: #eef8f0;
	color: #00b578
}


/* 店铺列表 */

.food-list {
    padding: 0 15px;
    background: #fff;
}
.food-list li {
    overflow: hidden;
    margin-bottom: 18px;
}
.food-cover {
    display: block;
}
.food-cover img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
}
.food-body {
    padding: 15px 5px 10px 2px;
}
.food-title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #222;
    line-height: 1.35;
    margin-bottom: 10px;
}
.food-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.food-score-box {
    display: flex;
    align-items: center;
}
.food-stars {
    position: relative;
    width: 96px;
    height: 15px;
    margin-right: 8px;
    transform: translateY(-5px);
}
.food-stars-bg, .food-stars-fill {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
}
.food-stars-bg i {
    color: #ddd;
    font-size: 15px;
}
.food-stars-fill i {
    color: #ffb400;
    font-size: 15px;
}
.food-score {
    color: #ff7a00;
    font-size: 15px;
    font-weight: bold;
}
.food-city {
    display: flex;
    align-items: center;
    color: #18a058;
    font-size: 15px;
}
.food-city i {
    margin-right: 4px;
}
.food-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.food-tag {
    background: #f4f4f4;
    color: #666;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 30px;
}
.food-address {
    display: flex;
    align-items: flex-start;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}
.food-address i {
    color: #18a058;
    margin-right: 6px;
    margin-top: 2px;
    flex-shrink: 0;
}
.food-address span {
    flex: 1;
}

.food-zuixin-title {
    padding: 16px 0;
    font-weight: bold;
    font-size: 17px;
    border-top: 1px solid #f3f3f3;
    background: #fff;
    margin-top: 10px;
}