html {
    font-size: 12px
}

.el-image-viewer__wrapper {
    position: fixed !important;
    width: 100vw !important;
    height: 100vh !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}


html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
}

#krpanoSWFObject {
    width: 99.9%;
    height: 99.9%;
    display: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.layui-layer {
    background-color: initial !important;
}

#skin,
#leftMenu,
#bottomMenu {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
}




/* layers.css */
.videoInfons {}

.videoModel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.videoModel .main {
    z-index: 9999;
    position: relative;
}

.videoModel .close {
    position: absolute;
    right: -3rem;
    top: -3rem;
    width: 3rem;
    height: 3rem;
    background: url('../krpanoImg/layers/video_close.png');
    background-size: cover;
}

.videoModel .close:hover {
    background: url('../krpanoImg/layers/video_close_hover.png');
    background-size: cover;
}

.videoInfons .cover,
.videoModel .cover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #666666;
    opacity: 0.5;
}

.videoInfons .model {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45rem;
    max-height: 75vh;
    background: #141E29;
    border-radius: 1rem;
    padding: 0 .5rem;
    box-sizing: border-box;
    padding-bottom:1.25rem;
}

.videoInfons .model .close {
    transform: translate(-60%, 0);
    position: absolute;
    width: 4rem;
    height: 4rem;
    bottom: -4.5rem;
    left: 50%;
    cursor: pointer;
}

.videoInfons .model .container {
    height: 100%;
}

.videoInfons .model .close:hover {
    transform: translate(-60%, 0) scale(1.1);

}

.videoInfons .title {
    text-align: center;
    font-size: 2.125rem;
    font-family: SourceHanSansCN-Bold, SourceHanSansCN;
    font-weight: bold;
    color: #C6C6C6;
    line-height: 5rem;
}

.videoInfons .main {
    height: calc(75vh - 6rem);
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 0 1.375rem;
}

.videoInfons .model:hover ::-webkit-scrollbar {
    display: block;
    height: 300px !important;
}

.videoInfons .model:hover .main {
    padding-right: .875rem;
}

.videoInfons ::-webkit-scrollbar {
    display: none;
    width: .5rem;
    background-color: rgba(255, 255, 255, 0.1);
    height: 300px !important;
}

.videoInfons ::-webkit-scrollbar-track {
    height: 300px !important;
    margin-left: 20px;
    border-radius: .375rem;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.1);
    -webkit-box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.1);
}

.videoInfons ::-webkit-scrollbar-thumb {
    border-radius: .375rem;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
    -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
}
.videoInfons .main-item:first-child{
    margin:0;
}
.videoInfons .main-item {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    width: 100%;
    height: 9.375rem;
    background: #253240;
    border-radius: 1rem;
    padding: .625rem;
    box-sizing: border-box;
    margin-top: 1.5rem;
}

.videoInfons .main-item:hover {
    transform: scale(1.05);
}

.videoInfons .imgBox {
    width: 14.5rem;
    height: 8.125rem;
    background: #141E29;
    border-radius: .5rem;
}

.videoInfons .textBox {
    width: calc(100% - 15.125rem);
    height: 8.125rem;
    overflow: hidden;
    /* 隐藏超出容器范围的内容 */
}

.videoInfons .textBox .imgTitle {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    font-size: 1.875rem;
    font-family: SourceHanSansCN-Bold, SourceHanSansCN;
    font-weight: bold;
    color: #C6C6C6;
    line-height: 2.5rem;
    margin-top: .3125rem;
}

.videoInfons .textBox .imgText {
    margin-top: .625rem;
    font-size: 1.625rem;
    font-family: SourceHanSansCN-Medium, SourceHanSansCN;
    font-weight: 500;
    color: #999999;
    /* 不自动换行 */
    text-overflow: ellipsis;
    /* 超出部分显示省略号 */
    display: -webkit-box;
    /* 支持WebKit内核的浏览器需添加此前缀 */
    -webkit-line-clamp: 2;
    /* 限制最多显示三行文本 */
    -webkit-box-orient: vertical;
    /* 垂直布局 */
}
@media screen and (max-width: 768px) {
    .videoInfons .model {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 70%;
        background: #141E29;
        border-radius: 1rem;
        padding: 0 .5rem;
        box-sizing: border-box;
    }
    .videoInfons .model .close {
        transform: translate(-60%, 0);
        position: absolute;
        width: 50px;
        height: 50px;
        bottom: -55px;
        left: 50%;
        cursor: pointer;
    }
    
    .videoInfons .model .container {
        height: 100%;
    }
    
    .videoInfons .model .close:hover {
        transform: translate(-60%, 0) scale(1.1);
    
    }
    
    .videoInfons .title {
        text-align: center;
        font-size: 20px;
        font-family: SourceHanSansCN-Bold, SourceHanSansCN;
        font-weight: bold;
        color: #C6C6C6;
        line-height: 22px;
        margin-bottom: 10px;
        margin-top:20px;
    }
    
    .videoInfons .main {
        height: calc(100% - 6.6875rem);
        overflow-y: scroll;
        overflow-x: hidden;
        padding: 0 1.375rem;
    }
    
    .videoInfons .model:hover ::-webkit-scrollbar {
        display: block;
        height: 300px !important;
    }
    
    .videoInfons .model:hover .main {
        padding-right: .875rem;
    }
    
    .videoInfons ::-webkit-scrollbar {
        display: none;
        width: .5rem;
        background-color: rgba(255, 255, 255, 0.1);
        height: 300px !important;
    }
    
    .videoInfons ::-webkit-scrollbar-track {
        height: 300px !important;
        margin-left: 20px;
        border-radius: .375rem;
        background-color: rgba(255, 255, 255, 0.1);
        box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.1);
        -webkit-box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.1);
    }
    
    .videoInfons ::-webkit-scrollbar-thumb {
        border-radius: .375rem;
        background-color: rgba(255, 255, 255, 0.5);
        box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
        -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
    }
    
    .videoInfons .main-item {
        display: flex;
        justify-content: space-between;
        cursor: pointer;
        width: 100%;
        height: 6rem;
        background: #253240;
        border-radius: 1rem;
        padding: .625rem;
        box-sizing: border-box;
        margin-top: 1.5rem;
    }
    
    .videoInfons .main-item:hover {
        transform: scale(1.05);
    }
    
    .videoInfons .imgBox {
        width: 8rem;
        height: 100%;
        background: #141E29;
        border-radius: .5rem;
    }
    
    .videoInfons .textBox {
        width: calc(100% - 8.5rem);
        height: 100%;
        overflow: hidden;
        /* 隐藏超出容器范围的内容 */
    }
    
    .videoInfons .textBox .imgTitle {
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        font-size: 17px;
        font-family: SourceHanSansCN-Bold, SourceHanSansCN;
        font-weight: bold;
        color: #C6C6C6;
        line-height:20px;
    }
    
    .videoInfons .textBox .imgText {
        margin-top: 10px;
        font-size: 14px;
        font-family: SourceHanSansCN-Medium, SourceHanSansCN;
        font-weight: 500;
        color: #999999;
        /* 不自动换行 */
        text-overflow: ellipsis;
        /* 超出部分显示省略号 */
        display: -webkit-box;
        /* 支持WebKit内核的浏览器需添加此前缀 */
        -webkit-line-clamp: 2;
        /* 限制最多显示三行文本 */
        -webkit-box-orient: vertical;
        /* 垂直布局 */
    }
  }





/* playOpen.css */
body .layui-layer {
    border-radius: 16px;
}

body .layerOpen .layui-layer-btn {
    border-top: 1px solid #E9E7E7
}

body .layui-layer-setwin .layui-layer-close2 {
    top: -65px;
    right: -15px;
    width: 40px;
    height: 40px;
    background-position: 0;
}

body .layui-layer-setwin .layui-layer-close2:hover {
    background-position: 0;
}

body .layui-layer-page .layui-layer-content {
    background-color: #ffffff;
    border-radius: 16px;
}

body .layui-layer-ico {
    background: url('../krpanoImg/layer/close.png') no-repeat
}



/* 底部场景菜单 */
#bottomMenuBox ol,
#bottomMenuBox ul,
#bottomMenuBox menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

#bottomMenuBox {
    z-index: 100;
    width: 100vw;
    height: 100vh;
    display: none;
}

#bottomMenuBox .text-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

#bottomMenuBox .fcc {
    display: flex;
    justify-content: center;
    align-items: center;
}

#bottomMenuBox .bottomMenuBox_concainer {
    position: absolute;
    bottom: 6.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 50.875rem;
    height: auto;
    /* background: red */
    /* background: none no-repeat border-box rgba(48, 73, 84, 0.7);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 10px 0px;
    border-color: rgb(0, 0, 0);
    border-style: solid;
    border-width: 0px;
    border-radius: 4px; */
}

#bottomMenuBox .sceneBox {
    width: 100%;
    height: 8.25rem;
    background: none no-repeat border-box rgba(48, 73, 84, 0.7);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 10px 0px;
    border-color: rgb(0, 0, 0);
    border-style: solid;
    border-width: 0px;
    border-radius: 4px;
}

#bottomMenuBox .sceneBox_container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    padding: .625rem 2.5rem;
    box-sizing: border-box;

}

#bottomMenuBox .arrowLeft {
    position: absolute;
    left: .625rem;
    width: 1rem;
    height: 5rem;
    opacity: 0.4;
    background-image: url('../krpanoImg/arrow_left.png');
    background-size: cover;
}

#bottomMenuBox .arrowRight {
    position: absolute;
    right: .625rem;
    width: 1rem;
    height: 5rem;
    background-image: url('../krpanoImg/arrow_right.png');
    background-size: cover;
}

#bottomMenuBox .sceneBoxScroll {
    height: 100%;
    overflow: hidden;
}

#bottomMenuBox ::-webkit-scrollbar {
    width: 0;
    height: 0;
    color: transparent;
}

#bottomMenuBox .sceneBox_container ul {
    display: flex;
    align-items: center;
    height: 100%;
    width: auto;
    min-height: 100%;
    overflow: auto;
}

#bottomMenuBox .sceneBox_container ul li {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    margin: 0 .3125rem;
    position: relative;
    border-radius: 4px;
}

#bottomMenuBox .scene_active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 5rem;
    height: 5rem;
    border: 2px solid #FF8F1F;
    border-radius: 4px;
}



#bottomMenuBox .scene_item_img {
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

#bottomMenuBox .scene_item_name {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 12px;
    padding: 2px 4px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0 0 4px 4px;
    box-sizing: border-box;
}

#bottomMenuBox .scene_item_check {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

#bottomMenuBox .rankedBox {
    width: 100%;
    height: 2.5rem;
    background: none no-repeat border-box rgba(48, 73, 84, 0.7);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 10px 0px;
    border-color: rgb(0, 0, 0);
    border-style: solid;
    border-width: 0px;
    border-radius: 4px;
    margin-top: 1.25rem;
}

#bottomMenuBox .rankedBox_container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    padding: .625rem 2.5rem;
    box-sizing: border-box;
}

#bottomMenuBox .rankarrowLeft {
    position: absolute;
    left: .625rem;
    width: 1rem;
    height: 2rem;
    opacity: 0.4;
    background-image: url('../krpanoImg/arrow_rank_left.png');
    background-size: cover;
}

#bottomMenuBox .rankarrowRight {
    position: absolute;
    right: .625rem;
    width: 1rem;
    height: 2rem;
    opacity: 0.4;
    background-image: url('../krpanoImg/arrow_rank_right.png');
    background-size: cover;
}

#bottomMenuBox .rankedBox_container ul {
    display: flex;
    align-items: center;
    height: 100%;
    width: auto;
    min-height: 100%;
    overflow: auto;
}

#bottomMenuBox .rankedBox_container ul li {
    flex-shrink: 0;
    width: auto;
    display: block;
    text-align: center;
    border-radius: .25rem;
    background: rgba(255, 255, 255, 0.35);
    margin: 0 .3125rem;
    font-size: .75rem;
    color: #fff;
    line-height: 1.25rem;
    padding: 0 .625rem;
}

#bottomMenuBox .rankedActive {
    background: #0256FF !important;
}

#bottomMenuBox .disabled {
    opacity: 0.4;
}



/* 左侧菜单 */

#leftMenuBox ol,
#leftMenuBox ul,
#leftMenuBox menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

#leftMenuBox {
    z-index: 100;
    width: 100vw;
    height: 100vh;
    display: none;
}

#leftMenuBox .text-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

#leftMenuBox .fcc {
    display: flex;
    justify-content: center;
    align-items: center;
}

#leftMenuBox .leftMenuBox_container {
    position: absolute;
    left: 3.125rem;
    top: 50%;
    transform: translateY(-50%);
    height: 90%;
    max-height: 50.875rem;
    width: auto;
    white-space: nowrap;
}

#leftMenuBox .sceneBox {
    width: 7.125rem;
    height: 100%;
    display: inline-block;

}

#leftMenuBox .sceneBox_container {
    width: 6rem;
    height: 100%;
    pointer-events: auto;
    cursor: pointer;
    padding: 30px 0;
    position: relative;
    background: none no-repeat border-box rgba(48, 73, 84, 0.7);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 10px 0px;
    border-color: rgb(0, 0, 0);
    border-style: solid;
    border-width: 0px;
    border-radius: 4px;
    box-sizing: border-box;
}

#leftMenuBox .sceneBoxScroll {
    position: absolute;
    top: 2rem;
    width: 100%;
    height: calc(100% - 60px);
    overflow: auto;
}

#leftMenuBox ::-webkit-scrollbar {
    width: 0;
    height: 0;
    color: transparent;
}

#leftMenuBox .sceneBox_container ul {
    height: auto;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

#leftMenuBox .sceneBox_container ul li {
    width: 5rem;
    height: 5rem;
    margin: 5px 0;
    position: relative;
    border-radius: 4px;
}

#leftMenuBox .scene_active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 5rem;
    height: 5rem;
    border: 2px solid #FF8F1F;
    border-radius: 4px;
}

#leftMenuBox .arrowTop {
    position: absolute;
    top: -1.5rem;
    left: 2.5rem;
    width: 1rem;
    height: 5rem;
    transform: rotate(90deg);
    opacity: 0.4;
    background-image: url('../krpanoImg/arrow_left.png');
}

#leftMenuBox .arrowLower {
    position: absolute;
    bottom: -1.5rem;
    left: 2.5rem;
    width: 1rem;
    height: 5rem;
    transform: rotate(-90deg);
    background-image: url('../krpanoImg/arrow_left.png');
}

#leftMenuBox .scene_item_img {
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

#leftMenuBox .scene_item_name {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 12px;
    padding: 2px 4px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0 0 4px 4px;
    box-sizing: border-box;
}

#leftMenuBox .scene_item_check {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

#leftMenuBox .rankedBox {
    width: 2.4rem;
    height: 100%;
    display: inline-block;
    background: none no-repeat border-box rgba(48, 73, 84, 0.7);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 10px 0px;
    border-color: rgb(0, 0, 0);
    border-style: solid;
    border-width: 0px;
    border-radius: 4px;
    margin-right: 1.25rem;

}

#leftMenuBox .rankedBox_container {
    width: 100%;
    height: 100%;
    pointer-events: auto;
    cursor: pointer;
    padding: 30px 0;
    position: relative;
    box-sizing: border-box;
}

#leftMenuBox .rankArrowTop {
    position: absolute;
    top: 0;
    left: 0.7rem;
    width: 1rem;
    height: 2rem;
    transform: rotate(90deg);
    background-image: url('../krpanoImg/arrow_rank_left.png');
    opacity: 0.4;
}

#leftMenuBox .rankArrowLower {
    position: absolute;
    bottom: 0;
    left: 0.7rem;
    width: 1rem;
    height: 2rem;
    transform: rotate(-90deg);
    background-image: url('../krpanoImg/arrow_rank_left.png');
}

#leftMenuBox .rankedBox_container ul {
    height: auto;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#leftMenuBox .rankedBox_container ul li {
    width: 1rem;
    height: auto;
    display: block;
    text-align: center;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.35);
    margin: 5px 0;
    font-size: 0.75rem;
    color: #fff;
    padding: .625rem .3125rem;
}

#leftMenuBox .rankedActive {
    background: #0256FF !important;
}

#leftMenuBox .disabled {
    opacity: 0.4;
}