body {
    margin: 0;
    /* overflow: hidden; */
    width: 500px;
    height: 100%;
    position: absolute;
}


html {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow: hidden; */
}

.navigationBar {
    position: absolute;
    top: 1%;
    left: 1%;
    display: none;
    flex-direction: column;
    z-index: 9999;
    gap: 12px;
    padding: 12px 0;
    background-image: url("../image/导航栏/bg.png");
    background-size: 38% 100%;
    background-repeat: no-repeat;
    /* background-size: cover; */
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.navigation1,
.navigation2 {
    width: 27%;
    /* height: 60%; */
    object-fit: fill;
    display: block;
    margin-left: -71%;
}

.navigation3 {
    width: 27%;
    /* height: 60%; */
    object-fit: fill;
    display: block;
    margin-left: -70%;
}

.navigation4 {
    width: 23%;
    /* height: 60%; */
    object-fit: fill;
    display: block;
    cursor: pointer;
    margin-left: -70%;
}

.longPic{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    align-items: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 99999;
    justify-content: center;
    background-color: #808080e0;
}

.longImages{
    width: 90%;
    height: 85%;
    position: absolute;
    overflow-y: scroll;
    overflow-x: hidden;
    flex-direction: column;
    display: flex;
}

.longVideo{
    width: 100%;
    height: 100%;
    position: absolute;
    overflow-y: scroll;
    overflow-x: hidden;
    flex-direction: column;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #808080d1;
    z-index: 9;
}

.longPic img{
    width: 100%;
}

.windmill{
    position: absolute;
    width: 30% !important;
    right: 30%;
}

.sun{
    position: absolute;
    width: 13% !important;
    left: 2%;
    top: -3%;
    z-index: 10;
}

.music{
    position: absolute;
    width: 52% !important;
    right: 2%;
    bottom: 4%;
    z-index: 10;
}

.fish{
    position: absolute;
    width: 36% !important;
    top: 10%;
    z-index: 10;
    right: 4%;
}

.vr-button {
    z-index: 9999;
    display: none;
    position: absolute;
    top: 3%;
    right: 3%;
    width: 70px;
    height: 70px;
    object-fit: fill;
    border-radius: 50%;
    background-image: url("../image/vr.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.rotating {
    animation: vr-rotate 5s linear infinite;
}

@keyframes vr-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

canvas {
    display: block;
    z-index: 0;
    width: 100%;
    /* 只显示前500px高度的内容 */
    height: 100%;
    overflow: hidden;
    /* 隐藏超出部分 */

}

.main_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    filter: blur(1px);
}

.loading {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* background-image: url("../image/loading/bg2.png");
    background-size: 100% 100%; */
    z-index: 999;
    position: absolute;
}

.loading_close_button {
    position: absolute;
    display: none;
    left: 0;
    right: 0;
    margin: auto;
    top: 17%;
    /* bottom: 0; */
    width: 70%;
    cursor: pointer;
}

.loading_title {
    position: absolute;

    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    width: 60%;
    cursor: pointer;
}

.preload {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    /* 设置子元素之间的间距 */
    width: 100%;
    height: 100%;
}

.loading-text {
    position: absolute;
    left: 0;
    right: 0;
    top: -150px;

    z-index: 9999;
    text-align: center;
    color: #4b97aa;
    font-size: 20px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

.loading-text2 {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    top: 60%;
    font-size: 20px;
    /* 可以根据需要调整字体大小 */
    font-weight: bold;
    /* 可以根据需要调整字体粗细 */
    /* animation: wave 2s infinite;  */
    /* 动画名称、持续时间和循环方式 */
    font-family: 'Arial', sans-serif;
    /* 使用类似的字体 */
    color: #ffffff;
    /* 白色文字 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* 添加文字阴影 */
    line-height: 2;
    /* 行高 */
    padding: 10px 20px;
    /* 内边距 */
    border-radius: 10px;
    /* 边框圆角 */
    display: inline-block;
    /* 使背景和内边距不会影响到行内的其他元素 */
    white-space: nowrap;
    /* 防止文字换行 */
}

.loading-text2 span {
    display: inline-block;
    /* 使每个span元素独立显示 */
    animation: jump 1s ease-in-out forwards;
    /* 应用动画 */

}

/* 为每个span创建不同的动画延迟 */
.loading-text2 span:nth-child(1) {
    animation-delay: 0s;
}

.loading-text2 span:nth-child(2) {
    animation-delay: 0.4s;
}

.loading-text2 span:nth-child(3) {
    animation-delay: 0.8s;
}

.loading-text2 span:nth-child(4) {
    animation-delay: 1.2s;
}

.loading-text2 span:nth-child(5) {
    animation-delay: 1.6s;
}

.loading-text2 span:nth-child(6) {
    animation-delay: 2.0s;
}

.loading-text2 span:nth-child(7) {
    animation-delay: 2.4s;
}

.loading-text2 span:nth-child(8) {
    animation-delay: 2.8s;
}

.loading-text2 span:nth-child(9) {
    animation-delay: 3.2s;
}

.loading-text2 span:nth-child(10) {
    animation-delay: 3.6s;
}

.loading-text2 span:nth-child(11) {
    animation-delay: 4.0s;
}

.loading-text2 span:nth-child(12) {
    animation-delay: 4.4s;
}

.loading-text2 span:nth-child(13) {
    animation-delay: 4.8s;
}

.loading-text2 span:nth-child(14) {
    animation-delay: 5.0s;
}

.loading-text2 span:nth-child(15) {
    animation-delay: 5.4s;
}

.loading-text2 span:nth-child(16) {
    animation-delay: 5.8s;
}

.loading-text2 span:nth-child(17) {
    animation-delay: 6.2s;
}

@keyframes jump {

    0%,
    100% {
        transform: translateY(0);
        /* 开始和结束位置 */
    }

    50% {
        transform: translateY(-10px);
        /* 中间跳动位置 */
    }
}

@media (min-width: 501px) {

    .loading-text {
        top: -200px;
    }

    .loading-text2 {
        top: 65%;
    }
}

/* 进度条样式 */
.progress_text {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    color: #4b97aa;
}

.progress {
    margin: 0 auto;
    width: 400px;
}

.progress {
    display: none;
    padding: 4px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}

/* .progress-bar {
    display: none;
    position: relative;
    height: 16px;
    border-radius: 4px;
    -webkit-transition: 0.4s linear;
    -moz-transition: 0.4s linear;
    -o-transition: 0.4s linear;
    transition: 0.4s linear;
    -webkit-transition-property: width, background-color;
    -moz-transition-property: width, background-color;
    -o-transition-property: width, background-color;
    transition-property: width, background-color;
    -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
  }
  .progress-bar:before, .progress-bar:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  .progress-bar:before {
    bottom: 0;
    background: url("../image/loading/stripes.png") 0 0 repeat;
    border-radius: 4px 4px 0 0;
  }
  .progress-bar:after {
    z-index: 2;
    bottom: 45%;
    border-radius: 4px;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  } */
.begin_video_content {
    overflow: hidden;
    width: 100%;
    height: 100%;

    position: absolute;
    /* 使用视频首帧作为背景，防止iOS视频加载闪烁 */
    background: url("../video/动画视频静音.jpg") center / 100% 100% no-repeat;
}

.begin_skip_button1 {
    position: absolute;
    z-index: 10001;
    display: none;
    position: absolute;
    right: 2%;
    top: 2%;
    width: 10%;
    object-fit: fill;
    cursor: pointer;
}

.begin_popup {
    display: none;
    position: absolute;
    right: 10%;
    top: 40%;
    width: 60%;
    object-fit: fill;

}

.video_play1 {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 10%;
    object-fit: fill;
}

.begin_skip_button2 {
    display: none;
    position: absolute;
    right: 2%;
    top: 2%;
    width: 10%;
    object-fit: fill;
    cursor: pointer;
}

.begin_video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    position: absolute;

}

.begin_video2 {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: none;
    position: absolute;

}

/* 预定义的弹窗样式 */
#popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

#popup-content {
    position: relative;
    max-width: 100vw;
    max-height: 90vh;
}

#popup-close {
    position: relative;
    right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.map-close {
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.comparison-close {
    position: relative;
    right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.begin {
    position: absolute;
    z-index: 99;
    width: 100%;
    height: 100%;
}


.popup_video1 {
    display: block;
    position: absolute;
    width: 75%;
    object-fit: cover;
    z-index: 90000;
    top: 31.5%;
    left: 49.5%;
    transform: translateX(-50%);
    margin: 0;
    height: auto;
}

.popup_video11 {
    display: block;
    position: absolute;
    width: 73%;
    object-fit: cover;
    z-index: 90000;
    margin-top: 9%;
    margin-left: 1%;
}

#popup-image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    transition: opacity 0.8s;
}

/* 优化移动端样式 */
@media (max-width: 768px) {
    body {
        width: 100%;
    }

    .popup_video1 {
        /* margin-top: 6%; */
    }

    .scene-switch-btn {
        padding: 12px 24px;
        font-size: 14px;
        bottom: 20px;
        right: 20px;
    }

    .popup-content {
        width: 100%;
        max-width: 400px;
    }

    .popup-close {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 24px;
    }
}


/* 优化弹窗样式 */
.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    touch-action: none;
}

.popup-content {
    position: relative;
    /* padding: 20px; */
    border-radius: 10px;
    max-width: 80%;
    max-height: 80vh;
    /* overflow: auto; */
    touch-action: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.popup-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: hsla(0, 97%, 46%, 0.502);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 1001;
    touch-action: manipulation;
}

.popup-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    display: block;
    touch-action: none;
    position: relative;
    z-index: 10001;
    margin: 0 auto;
    border: none;
    outline: none;
    box-shadow: none;
    transform-style: preserve-3d;
    cursor: default;
    /* 默认不可拖拽 */
    user-select: none;
}

.popup-image.dragging {
    transition: none;
}

.popup-image:active {
    cursor: grabbing;
}

.popup-image.no-drag {
    cursor: default !important;
    pointer-events: none;
}

/* 3D翻页动画样式 - 基于SVG动画技术 */

/* 确保弹窗在所有设备上正确显示 */
@media (min-width: 501px) {
    .popup-overlay {
        z-index: 10000 !important;
    }

    .popup-content {
        z-index: 10001 !important;
    }

    .popup-image {
        z-index: 10002 !important;
    }
}

/* SVG卷角拖拽手柄样式 */
.drag-handle {
    transition: background-color 0.3s ease;
    opacity: 0.3;
    display: none;
    /* 默认隐藏 */
}

.drag-handle:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
    opacity: 0.8;
}

.drag-handle:active {
    background-color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1;
}

/* 弹窗图片包装器样式 */
.popup-image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 768px) {
    .scene-controls {
        bottom: 20px;
        right: 20px;
    }

    .scene-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

.blinking-hotspot {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

/* VR弹窗样式 */
.vr-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 10000;
    justify-content: center;
    align-items: center;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.vr-popup-content {
    width: 100%;
    height: 100%;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
}

#vr-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    pointer-events: auto;
    touch-action: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 10002;
    object-fit: cover;
}

.book-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.book-popup-content {
    width: 100%;
    height: 100%;
    border-radius: 0;
    position: relative;
    /* overflow: hidden; */
    box-sizing: content-box;
    border: 0;
    outline: 0;
}

#book-iframe {
    width: 100%;
    height: 100%;
    box-sizing: content-box;
    border: 0;
    outline: 0;
}

/* 确保移动端iframe可以正常交互 */
@media (max-width: 500px) {
    #vr-iframe {
        position: relative;
        z-index: 10002;
        pointer-events: auto !important;
        touch-action: auto !important;
        -webkit-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .vr-popup-content {
        position: relative;
        z-index: 10001;
        pointer-events: auto;
        touch-action: auto;
    }

    .vr-popup-overlay {
        touch-action: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* VR弹窗交互修正：只让关闭按钮可点击，其余区域不拦截事件 */
.vr-popup-overlay,
.vr-popup-content {
    pointer-events: none;
}

#vr-iframe {
    pointer-events: auto !important;
}

.vr-popup-close {
    position: absolute;
    left: 0;
    bottom: 5px;
    /* transform: translateX(-50%); */
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10003;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    right: 0;
    margin: auto;
}

.book-popup-close {
    position: absolute;
    bottom: 80px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.long-pic-close {
    position: absolute;
    bottom: 10px;
    width: 40px !important;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.last-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #808080d9;
}

.long-pic-bottom-close {
    position: absolute;
    bottom: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff0000;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.long-video-close {
    position: relative;
    bottom: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

/* 长图底部弹窗样式 */
.long-pic-bottom-popup {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100000;
    padding: 20px;
    box-sizing: border-box;
}

.long-pic-bottom-popup img {
    max-width: 90%;
    max-height: 60vh;
    object-fit: contain;
    margin-bottom: 20px;
}

.long-pic-bottom-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff0000;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.long-pic-bottom-close:hover {
    background: #cc0000;
}

.comparison-container-content {
    position: absolute;
    display: flex;
    width: 100%;
    max-width: 800px;
    height: 360px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    flex-direction: column;
    align-items: center;
}

.comparison-close {
    width: 40px;
    z-index: 9;
    margin-top: 10px;
    cursor: pointer;
}

.image-container {
    position: relative;
    width: 97%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-old,
.image-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.image-old {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    z-index: 1;
}

.image-new {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    z-index: 2;
}

.map{
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url('../image/1/导览/bg.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 999999;
    overflow: hidden;
}

.zhongmen-btn{
    position: absolute;
    width: 13%;
    height: 7%;
    /* background-color: red; */
    left: 17%;
    top: 17%;
    cursor: pointer;
}

.shanglou-btn{
    position: absolute;
    width: 14%;
    height: 9%;
    /* background-color: red; */
    right: 18%;
    top: 33%;
    cursor: pointer;
}

.dongao-btn{
    position: absolute;
    width: 13%;
    height: 7%;
    /* background-color: red; */
    left: 40%;
    top: 57%;
    cursor: pointer;
}

.map-zhongmen,.map-shanglou{
    position: absolute;
    width: 100%;
    height: 100%;
}

.map-dongao{
    position: absolute;
    width: 100%;
    height: 100%;
    top: -1%;
}

.divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #fff;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: background 0.2s;
    top: 0;
    bottom: 0;
    margin: auto;
}

.divider:hover,
.divider:active {
    background: #e72b2b;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.divider::after {
    content: '◀▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #333;
    line-height: 1;
}

.comparison-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #808080e6;
    display: none;
}

/* 触摸设备优化 */
@media (max-width: 768px) {
    .comparison-container-content {
        height: 300px;
        max-width: 100%;
    }

    .divider {
        width: 3px;
    }

    .divider::before {
        width: 30px;
        height: 30px;
    }

    .divider::after {
        font-size: 16px;
    }
}


/* 翻页的css */
.pages .page {
    width: 400px;
    /* 与 turn() 的 width 对齐 */
    height: 708px;
    /* 与 turn() 的 height 对齐 */
    overflow: hidden;
    background: #000;
    /* 加深边缘过渡，可按需改 */
}

.pages .page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 或 contain，看你素材需要 */
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #2f2f2fed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .hint {
    position: absolute;
    bottom: 25px;
    color: #D9D9D9;
}

.container .mobile {
    width: 350px;
    height: 684px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.container .mobile .content {
    position: relative;
    border-radius: 10px;
    box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container .mobile .content .book {
    position: relative;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .mobile .content .book .cover {
    position: absolute;
    width: 150px;
    height: 225px;
    background-image: url("stories-of-the-saints_sxtxjl.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    border-top-left-radius: 5px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.4), -8px 12px 6px -6px rgba(0, 0, 0, 0.2), 8px 12px 6px -6px rgba(0, 0, 0, 0.2);
    transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.container .mobile .content .book .cover.active {
    width: 100%;
    height: 100%;
    transform: rotateY(-180deg);
    transform-origin: top left;
}

.container .mobile .content .book .cover .bend {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4);
}

.container .mobile .content .book .cover:hover {
    cursor: pointer;
}

.container .mobile .content .book .pages {
    border-radius: 10px;
}

.container .mobile .content .book .pages .page {
    position: relative;
    background-color: #fff;
}

.container .mobile .content .book .pages .pages-content {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .mobile .content .book .pages .pages-content .content-inner {
    text-align: center;
    opacity: 0;
}

.container .mobile .content .book .pages .pages-content .content-inner .title {
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 10px;
    color: #444444;
}

.container .mobile .content .book .pages .pages-content .content-inner .text {
    text-align: justify;
    font-size: 12px;
    font-weight: 300;
    color: #444444;
}

.container .mobile .content .book .pages .pages-content .page-number {
    position: absolute;
    bottom: 15px;
    font-size: 12px;
    font-weight: 300;
    color: #444444;
}

.container .mobile .content .book .pages:hover {
    cursor: pointer;
}

.container .mobile .content.active {
    position: relative;
}

.hide {
    display: none !important;
}

.dot1,.dot2 {
    cursor: pointer;
    filter: brightness(1.5);
    position: absolute;
    bottom: 9%;
    left: 68%;
    width: 10px;
    height: 10px;
    background-color: black;
    border-radius: 50%;
    opacity: 1;
    animation-name: 'ripple1';
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation-name: 'ripple1';
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
}

.dot11,.dot21 {
    cursor: pointer;
    margin: -15px;
    width: 40px;
    opacity: 0.6;
    height: 40px;
    background-color: #e91d1d;
    border-radius: 50%;
    box-shadow: 0 0 10px 78px rgb(239 233 233 / 30%) inset;
    animation-name: 'ripple11';
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation-name: 'ripple11';
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
}

.dot4 {
    cursor: pointer;
    filter: brightness(1.5);
    position: absolute;
    bottom: 26%;
    left: 24%;
    width: 10px;
    height: 10px;
    background-color: black;
    border-radius: 50%;
    opacity: 1;
    animation-name: 'ripple1';
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation-name: 'ripple1';
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
}

.dot41 {
    cursor: pointer;
    margin: -15px;
    width: 40px;
    opacity: 0.6;
    height: 40px;
    background-color: #e91d1d;
    border-radius: 50%;
    box-shadow: 0 0 10px 78px rgb(239 233 233 / 30%) inset;
    animation-name: 'ripple11';
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation-name: 'ripple11';
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
}

.dot5 {
    cursor: pointer;
    filter: brightness(1.5);
    position: absolute;
    bottom: 11%;
    left: 70%;
    width: 10px;
    height: 10px;
    background-color: black;
    border-radius: 50%;
    opacity: 1;
    animation-name: 'ripple1';
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation-name: 'ripple1';
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
}

.dot51 {
    cursor: pointer;
    margin: -15px;
    width: 40px;
    opacity: 0.6;
    height: 40px;
    background-color: #e91d1d;
    border-radius: 50%;
    box-shadow: 0 0 10px 78px rgb(239 233 233 / 30%) inset;
    animation-name: 'ripple11';
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation-name: 'ripple11';
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
}

.dot7 {
    cursor: pointer;
    filter: brightness(1.5);
    position: absolute;
    bottom: 17%;
    left: 67%;
    width: 10px;
    height: 10px;
    background-color: black;
    border-radius: 50%;
    opacity: 1;
    animation-name: 'ripple1';
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation-name: 'ripple1';
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
}

.dot71 {
    cursor: pointer;
    margin: -15px;
    width: 40px;
    opacity: 0.6;
    height: 40px;
    background-color: #e91d1d;
    border-radius: 50%;
    box-shadow: 0 0 10px 78px rgb(239 233 233 / 30%) inset;
    animation-name: 'ripple11';
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation-name: 'ripple11';
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
}

.dot8 {
    cursor: pointer;
    filter: brightness(1.5);
    position: absolute;
    bottom: 16%;
    left: 26%;
    width: 10px;
    height: 10px;
    background-color: black;
    border-radius: 50%;
    opacity: 1;
    animation-name: 'ripple1';
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation-name: 'ripple1';
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
}

.dot81 {
    cursor: pointer;
    margin: -15px;
    width: 40px;
    opacity: 0.6;
    height: 40px;
    background-color: #e91d1d;
    border-radius: 50%;
    box-shadow: 0 0 10px 78px rgb(239 233 233 / 30%) inset;
    animation-name: 'ripple11';
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation-name: 'ripple11';
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
}

.dot9 {
    cursor: pointer;
    filter: brightness(1.5);
    position: absolute;
    bottom: 28%;
    left: 67%;
    width: 10px;
    height: 10px;
    background-color: black;
    border-radius: 50%;
    opacity: 1;
    animation-name: 'ripple1';
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation-name: 'ripple1';
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
}

.dot91 {
    cursor: pointer;
    margin: -15px;
    width: 40px;
    opacity: 0.6;
    height: 40px;
    background-color: #e91d1d;
    border-radius: 50%;
    box-shadow: 0 0 10px 78px rgb(239 233 233 / 30%) inset;
    animation-name: 'ripple11';
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation-name: 'ripple11';
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
}


@keyframes ripple1 {
    0% {

        transform: scale(0.5);
    }

    100% {

        transform: scale(0.8);
    }
}

@-webkit-keyframes ripple1 {
    0% {

        transform: scale(0.5);
    }

    100% {

        transform: scale(0.8);
    }
}

@keyframes ripple11 {
    0% {

        transform: scale(0.5);
    }

    100% {

        transform: scale(0.8);
    }
}

@-webkit-keyframes ripple11 {
    0% {

        transform: scale(0.5);
    }

    100% {

        transform: scale(0.8);
    }
}

.flex{
    display: flex;
}

.relative{
    position: relative;
}
