body {
    background-color: #f6f6f6;
}

main {
    min-height: calc(100vh - 260px);
    max-width: 1920px;
    width: 100%;
    /* margin: 0 auto; */
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    min-width: 1248px;
}

.pagination-container {
    display: flex;
    flex-direction: row;
    margin-top: 24px;
    padding: 0 24px;
    justify-content: space-between;
}

.pagination-container .left {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.pagination-container .pagination {
    display: flex;
    gap: 20px;
}

.pagination-container .pagination .pagination-icon {
    cursor: pointer;
}

.pagination-content {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    color: #333;
    align-items: center;
}

.pagination-index {
    width: 24px;
    height: 24px;
    border: 1px solid transparent;
    border-radius: 50%;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.pagination-active {
    width: 30px;
    height: 30px;
    background-color: #0BD58A;
    color: #fff;
    border-radius: 50%;
}

.banner {
    position: relative;
    width: 100%;
    min-width: 1348px;
    aspect-ratio: 1920 / 480;
    background: url(../assets/banner4@2x.webp) no-repeat center/cover;
    overflow: hidden;
}

.guide-wrapper {
    width: 1248px;
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    margin-bottom: 30px;
}

.guide-title {
    width: 1248px;
    margin-bottom: 26px;
}

.guide-title #cate-tags-container {
    width: 100%;
    display: flex;
    gap: 30px;
    color: #999999;
}

.cate-tag {
    cursor: pointer;
}

.cate-tag.active {
    color: #333333;
    border-bottom: #333333 1px solid;
}

.guide-list {
    display: flex;
    width: 1248px;
    flex-wrap: wrap;
    gap: 32px;
}

.guide-list ::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.guide-list {
    scrollbar-width: none;
}

.guide-list {
    overflow: -moz-hidden-unscrollable;
}

.guide-list .list-card {
    width: 608px;
    display: flex;
    gap: 14px;
    background-color: #fff;
    border-radius: 24px;
    padding: 12px 15px 12px 12px;

    transition: opacity .3s ease, background-color .3s ease;
}

.list-card:hover {
    cursor: pointer;
    opacity: 0.9;
    background-color: #fafafa;
}

.list-card .card-left img {
    width: 188px;
    height: 124px;
    border-radius: 24px;
    display: block;
}

.card-right {
    width: 379px;
}

.card-right h2 {
    font-size: 20px;
    margin-bottom: 9px;
    font-weight: 500;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    line-clamp: 2;
    box-orient: vertical;
}

.card-right .icon {
    color: #666666;
    background-color: #e5e5e5;
    border-radius: 10px;
    margin-bottom: 9px;
    width: 80px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 14px;
}

.card-bottom {
    color: #999;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-bottom .read-num {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-bottom img {
    width: 20px;
    height: 16px;
    display: block;
}