.albumList {
    margin: 0 -20px;
}
.albumList .albumItem {
    cursor: pointer;
    padding: 0 20px;
}
.albumList .albumItem img {
    width: 100%;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
@media (max-width: 1024px) {
    .albumList {
        margin: 0 -15px;
    }
    .albumList .albumItem {
        padding: 0 15px;
    }
}
@media (max-width: 480px) {
    .albumList {
        margin: 0 -8px;
    }
    .albumList .albumItem {
        padding: 0 8px;
    }
}
.topBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.topBox .classBoxRow {
    width: 50%;
}
.topBox .classBoxRow .classLink {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.topBox .classBoxRow .classLink a {
    background-color: transparent;
    color: #737373;
    font-size: 16px;
    position: relative;
}
.topBox .classBoxRow .classLink a.current {
    color: #c9a063;
}
.topBox .classBoxRow .classLink li:not(:last-child) a:after {
    content: "";
    width: 1px;
    height: 18px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #c2c2c2;
}
.topBox .bread {
    width: 50%;
    border: none;
}
.topBox .bread .wrap {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
