.all-store-page {
    padding-bottom: 36px;
    background: #f5f5f5;
    color: #333;
}

.all-store-container {
    width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.all-store-crumb {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 13px;
}

.all-store-crumb a {
    color: #666;
}

.all-store-filter {
    padding: 4px 22px;
    border-top: 2px solid #d9272e;
    background: #fff;
}

.all-store-filter-row {
    display: flex;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    line-height: 26px;
}

.all-store-filter-row:last-child {
    border-bottom: 0;
}

.all-store-province-row,
.all-store-city-row,
.all-store-district-row {
    padding-top: 18px;
    padding-bottom: 18px;
}

.all-store-filter-row strong {
    width: 82px;
    flex: 0 0 82px;
    color: #555;
    font-size: 14px;
}

.all-store-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
}

.all-store-filter-options a {
    padding: 0 7px;
    color: #555;
    white-space: nowrap;
}

.all-store-filter-options a:hover,
.all-store-filter-options a.active {
    background: #d9272e;
    color: #fff;
}

.all-store-region-options {
    max-height: 156px;
    overflow-y: auto;
}

.all-store-layout {
    width: 100%;
}

.all-store-content-column {
    min-width: 0;
    display: grid;
    gap: 16px;
}

.all-store-main,
.all-store-side-section {
    background: #fff;
}

.all-store-heading {
    height: 54px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.all-store-heading h1,
.all-store-side-section h2 {
    margin: 0;
    color: #222;
    font-size: 18px;
    font-weight: 600;
}

.all-store-heading span {
    color: #999;
    font-size: 13px;
}

.all-store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 16px;
}

.all-store-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    background: #fff;
    color: #555;
    transition: border-color .2s, box-shadow .2s;
}

.all-store-card:hover {
    border-color: #d9272e;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
    color: #555;
}

.all-store-cover {
    aspect-ratio: 276 / 170;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.all-store-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.all-store-cover-empty {
    color: #bbb;
    font-size: 20px;
}

.all-store-card-body {
    min-height: 80px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.all-store-name,
.all-store-meta {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.all-store-name {
    color: #222;
    font-size: 15px;
    font-weight: 600;
}

.all-store-meta {
    margin-top: 7px;
    color: #777;
    font-size: 12px;
}

.all-store-pager {
    padding: 6px 16px 24px;
    text-align: center;
}

.all-store-empty {
    padding: 90px 20px;
    color: #999;
    text-align: center;
}

.all-store-side {
    min-width: 0;
    display: grid;
    gap: 16px;
    box-sizing: border-box;
    grid-template-columns: minmax(0, 1fr);
}

.all-store-side-section,
.store-news-list,
.hot-store-list {
    max-width: 100%;
    box-sizing: border-box;
}

.all-store-side-section h2 {
    height: 50px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.hot-store-list,
.store-news-list {
    padding: 8px 16px 12px;
}

.hot-store-item {
    height: 36px;
    display: flex;
    align-items: center;
    color: #555;
}

.hot-store-rank {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    line-height: 20px;
    background: #eee;
    color: #777;
    text-align: center;
    font-size: 12px;
}

.hot-store-item:nth-child(-n+3) .hot-store-rank {
    background: #d9272e;
    color: #fff;
}

.hot-store-name,
.store-news-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hot-store-name {
    flex: 1;
}

.store-news-item {
    padding: 10px 0;
    display: flex;
    gap: 10px;
    border-bottom: 1px dashed #e5e5e5;
    color: #555;
}

.store-news-item:last-child {
    border-bottom: 0;
}

.store-news-cover {
    width: 80px;
    height: 60px;
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f5f5f5;
    color: #aaa;
    font-size: 12px;
}

.store-news-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-news-content {
    min-width: 0;
    flex: 1;
    line-height: 20px;
}

.store-news-title {
    display: block;
    color: #444;
    font-size: 14px;
}

.store-news-summary {
    margin-top: 3px;
    display: -webkit-box;
    overflow: hidden;
    color: #969696;
    font-size: 12px;
    line-height: 18px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
