.main-container {
    max-width: 1200px;
    margin: 8px auto 10px auto;
}

/* Best头部幻灯片 */
.best-deng-top {
    width: 1200px;
    margin: 0 auto 30px auto;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.best-deng-top .left {
    width: 800px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #000;
}
.slider-banner {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-banner .bd ul {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
.slider-banner .bd li {
    width: 800px;
    height: 400px;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}
.slider-banner .bd li img {
    width: 800px;
    height: 400px;
}

.slider-banner .bd li .title {
    position: absolute;
    left: 24px;
    bottom: 20px;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.slider-banner .hd {
    position: absolute;
    bottom: 29px;
    right: 24px;
    z-index: 10;
}
.slider-banner .hd ul {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.slider-banner .hd li {
    width: 24px;
    height: 5px;
    background: rgba(255,255,255,0.4);
    border-radius: 1px;
    cursor: pointer;
}
.slider-banner .hd li.on {
    background: #fff;
}

.best-deng-top .right {
    width: 380px;
}
.best-deng-top .right ul {
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #f4f4f4;
    margin: 0;
    padding: 0;
}
.best-deng-top .right li {
    width: 49.9%;
    height: 66px;
    border-bottom: 1px solid #f4f4f4;
    display: flex;
    align-items: center;
}
.best-deng-top .right li:nth-child(odd) {
    border-right: 1px solid #f4f4f4;
}
.best-deng-top .right li:nth-child(11), .best-deng-top .right li:nth-child(12) {
    border-bottom: none;
}
/* 水平居中 */
.best-deng-top .right a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 66px;
    padding-left: 0;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}
.best-deng-top .right i {
    font-size: 14px;
    margin-right: 10px;
    color: #656565;
}

.sift-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.sift-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 25px 0;
}
.sift-title {
    font-size: 20px;
    color: #333;
}
.sift-header a {
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 3px;
}
.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: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.sift-item {
    background: #fff;
    box-shadow: 0 0 0 1px #f1f1f1;
    border-radius: 8px;
    padding: 22px 10px 20px;
    text-align: center;
}
.sift-item img {
    width: 124px;
    height: 124px;
    border-radius: 18%;
    margin-bottom: 12px;
    border: 1px solid #efefef;
}
.sift-name {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sift-tags {
    font-size: 12px;
    margin: 10px 0;
    height: 16px;
    overflow: hidden;
}
.sift-tags a {
    color: #999;
    text-decoration: none;
    margin: 0 3px;
}
.sift-tags a:hover {
    color: #00c17b;
}
.sift-score {
    font-size: 14px;
    font-weight: bold;
    color: #f7a400;
}