.content {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.vertical-content {
    width: 100%;
    padding-bottom: 400px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.img-horizontal-container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.sheet-img-horizontal {
    width: 100%;
    height: 92%;
}

.sheet-img-vertical {
    width: 100%;
    height: 92%;
}

.paging {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    z-index: 100;
}

.paging p {
    cursor: pointer;
    padding: 15px 40px;
    background: #FFD700;
    border-radius: 30px;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.2s;
    min-width: 150px;
    text-align: center;
}

.paging p:hover {
    background: #FFC107;
    transform: scale(1.05);
}

.prev-btn, .next-btn {
    background: #FFD700 !important;
}

.info {
    background: #FFD700 !important;
    color: #333 !important;
    margin-bottom: 0 !important;
}

.info-container {
    position: relative;
}

.page-info {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

.back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 100;
}

.back-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.back-btn img {
    width: 20px;
    height: 20px;
} 