.category-container {
    box-sizing: border-box;
    width: 100vw;
    height: calc(100vh - 150px);
    display: flex;
    justify-content: center;
    position: fixed;
}


.category-container .content-container {
    width: 80%;
    height: 80%;
    padding: 10vh 1vw;
    background-image: url("../img/list1-bg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
}

.category-container .content-container .list-panel {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
}


.category-container .content-container .list-item {
    width: calc(20% - 3vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.category-container .image-panel {
    text-align: center;
    width: 100%;
    background-image: url("../img/base.png");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.category-container .image-panel .cover {
    margin-bottom: 13vh;
}

.category-container .name {
    margin-top: 20px;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 24px;
    color: #274071;
}

.category-container .list-item:nth-child(5n + 1) {
    margin-bottom: 10vh;
}

.category-container .list-item:nth-child(5n + 2) {
    margin-bottom: 5vh;
}

.category-container .list-item:nth-child(5n + 3) {
    margin-bottom: 1vh;
}

.category-container .list-item:nth-child(5n + 4) {
    margin-bottom: 1vh;
}

.category-container .list-item:nth-child(5n + 5) {
    margin-bottom: 5vh;
}

.category-container .list-item:nth-child(5n + 6) {
    margin-bottom: 10vh;
}

.category-container .pagination-container {
    position: absolute;
    bottom: 10px;
    right: 20px;
    display: flex;
    justify-content: flex-end;
    text-align: center;
    font-size: 12px;
    border-radius: 10px;
}

.category-container .pagination-container .page-link {
    background-color: #95ccf6;
    color: #ffffff;
}



