#mobileSystem {
    display: none;
}

#pcSystem {
    display: flex;
}

.list-content{
    padding-bottom: 10rem;
}

.open-list{
    border-bottom: 1px solid #666;
    padding: 0.5rem 2rem 0 2rem;
    height: 3.5rem;
}

.open-list p {

}

.open-list p:nth-child(1) {
    width: 35rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.open-list p:nth-child(2) {
    color: #ccc;
}

.page-container{
    position: relative;
    width: 100%;
    height: 8rem;
    display: flex;
    justify-content: center;
}

.page-content{
    position: absolute;
    bottom: 1rem;
    width: 100%;
}

.page-info{
    margin-bottom: 1rem;
    padding: 0 1rem;
    color: #ccc;
    text-align: center;
}

.pagination-div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
    padding: 0 3rem;
}

.page-item{
    width: 4rem;
    height: 3rem;
    background-color: #FFFFFF;
    color: #141D7D;
    line-height: 3rem;
    text-align: center;
    margin: 0 0.3rem;
    border-radius: 1rem;
    cursor: pointer;
}

.page-active{
    background-color: #4C7EF7;
    color: #FFFFFF;
}

.page-start{
    width: 6rem;
}
.page-end{
    width: 6rem;
}

@media all and (max-device-width: 767px) {
    #pcSystem {
        display: none;
    }

    #mobileSystem {
        display: block;
    }

}
