body {
    user-select: none;
    background-color: var(--color-white);
    overflow: hidden;
}

.art-container,
.art-wrapper,
.art-content,
.art-block,
.art-box {
    height: 100%;
}
.art-wrapper,
.art-box {
    position: relative;
}
.art-container {
    --text-color: #b17c5b;
    height: 100%;
    background-color: var(--color-pale-gray);
    overflow: hidden;
}
.art-text {
    position: absolute;
    top: 48px;
    left: 0;
    padding: 0 90px;
    height: 190px;
}
.art-text .box {
    display: flex;
    height: 190px;
    align-items: center;
}
.art-text .box div {
    display: flex;
    font-size: 0;
    align-items: flex-end;
}
.art-text .box i,
.art-text .box span {
    display: inline-block;
    line-height: 1;
    color: var(--text-color);
}
.art-text .box i {
    font-size: 60px;
    font-weight: bold;
}
.art-text .box span {
    margin: 0 0 8px 20px;
    font-size: 26px;
}
.art-block {
    padding: 238px 0 96px;
}
.art-box {
    transition: all 200ms linear;
}
.art-item {
    display: block;
    position: absolute;
}
.art-item .image img {
    display: block;
    width: 100%;
}
.art-item .name {
    display: flex;
}
.art-item .name div {
    padding: 10px 0;
    min-width: 200px;
    max-width: 100%;
    border-bottom: 2px solid var(--color-dark);
}
.art-item .name div span,
.art-item .name div i {
    display: block;
    line-height: 1.2;
    color: var(--color-dark);
}
.art-item .name div span {
    margin-bottom: 10px;
    font-size: 26px;
}
.art-item .name div i {
    font-size: 16px;
}
.art-arrow {
    position: absolute;
    top: 50%;
    width: 20px;
    transform: translateY(-50%);
    z-index: 2023;
}
.art-arrow.left {
    left: 30px;
}
.art-arrow.right {
    right: 30px;
}
.art-arrow img {
    display: block;
    width: 100%;
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, .6));
}
