body {
    background-color: var(--color-black);
    overflow: hidden;
}

.art-container,
.art-content,
.art-images,
.art-box,
.art-list {
    height: 100%;
}
.art-container {
    position: relative;
    padding-top: 48px;
}
.art-content {
    position: relative;
    width: 596px;
    z-index: 10;
}
.art-box {
    background-color: var(--color-dark);
    opacity: .95;
}
.art-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 148px 66px 0;
}
.art-name {
    color: var(--color-brown);
}
.art-name i,
.art-name span {
    display: block;
    line-height: 1;
}
.art-name i {
    font-size: 36px;
}
.art-name span {
    margin-top: 15px;
    font-size: 26px;
}
.art-date {
    margin: 20px 0 50px;
    color: var(--color-white);
    overflow: hidden;
}
.art-date div,
.art-date span {
    float: left;
    height: 50px;
}
.art-date span,
.art-date i {
    display: block;
    line-height: 1;
}
.art-date span.d1 {
    font-size: 50px;
    font-weight: bold;
}
.art-date div {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.art-date i.d2 {
    font-size: 16px;
}
.art-date i.d3 {
    font-size: 24px;
}
.art-swiper {
    position: relative;
    padding-bottom: 50px;
}
.art-swiper .swiper-wrapper {
    height: 304px;
}
.art-swiper .swiper-slide {
    display: block;
    color: var(--color-white);
}
.art-swiper .swiper-slide p {
    height: 23px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.art-swiper .swiper-slide p.h1 {
    height: 33px;
    font-size: 20px;
}
.art-swiper .swiper-slide:hover {
    color: var(--color-brown);
}
.art-swiper .swiper-prev,
.art-swiper .swiper-next {
    position: absolute;
    bottom: 0;
    width: 30px;
    height: 30px;
    background: url('../../images/icon_arrow_2_white.png') no-repeat;
    background-size: 60px 30px;
    transition: all .1s linear;
    opacity: .8;
    cursor: pointer;
}
.art-swiper .swiper-prev {
    left: 0;
    background-position: 0 0;
}
.art-swiper .swiper-next {
    left: 40px;
    background-position: -30px 0;
}
.art-swiper .swiper-prev:hover,
.art-swiper .swiper-next:hover {
    opacity: 1;
}
.art-swiper .swiper-prev.swiper-button-disabled,
.art-swiper .swiper-next.swiper-button-disabled {
    opacity: .5;
}
.art-images {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    z-index: 0;
}
.art-images .image {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 596px;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.art-images .image.show {
    opacity: 1;
    z-index: 1;
}
.art-images .image i {
    display: block;
    height: 100%;
    background: no-repeat left center / contain;
}