.main-container {
    display: block;
    max-width: 100%;
    margin: 12px 12px 18px 12px;
}

/* ===== 菜单 ===== */
.best-mune ul {
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #f4f4f4;
    margin: 0;
    padding: 0;
}

.best-mune li {
    width: 49.8%;
    height: 55px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f4f4f4;
}

.best-mune li:nth-child(odd) {
    border-right: 1px solid #f4f4f4;
}

.best-mune li:nth-child(11),
.best-mune li:nth-child(12) {
    border-bottom: none;
}

.best-mune a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 55px;
    padding-left: 0;
    color: #333;
    font-size: 14px;
    text-decoration: none;
}

.best-mune i {
    margin-right: 10px;
    font-size: 14px;
    color: #656565;
}

/* ===== 卡片 ===== */
.app-card {
    background: #fff;
    padding: 12px 12px 14px 12px;
    margin: 12px 0;
    box-shadow: 0 0 0 1px #f1f1f1;
    overflow: hidden;
}

/* ===== 小标题区域 ===== */
.sift-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4px 0;
}

.sift-title {
    font-size: 14px;
}

.sift-header a {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: #9ca3af;
    text-decoration: none;
    transition: color .2s;
}

.sift-header a i {
    color: inherit;
    transition: all .2s;
}

.sift-header a:hover {
    color: #22c55e;
}

.sift-header a:hover i {
    transform: translateX(2px);
}

/* ===== 应用列表 横向滑动 ===== */
.sift-list {
    list-style: none;
    margin: 0;
    padding: 12px 0 4px 0;
    display: flex;
    gap: 13px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox 隐藏滚动条 */
}

.sift-list::-webkit-scrollbar {
    display: none; /* Chrome / Safari 隐藏滚动条 */
}

.sift-item {
    flex: 0 0 auto;
    text-align: center;
}

.sift-item img {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 18%;
    border: 1px solid #efefef;
}

.sift-name {
    line-height: 1;
    padding-top: 4px;
}

.sift-name a {
    font-size: 12px;
    color: #444;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
