    /*相册*/
    
    #sceneList {
        position: fixed;
        left: 0;
        bottom: -200px;
        width: 100%;
        height: 200px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.5);
    }
    
    #sceneList .sceneGroup {
        height: 30px;
    }
    
    #sceneList .sceneGroup a {
        width: 80px;
        height: 30px;
        line-height: 30px;
        display: block;
        float: left;
        text-align: center;
        color: #fff;
        border-radius: 5px;
        margin: 0 15px 0 0;
        text-decoration: none;
    }
    
    #sceneList .sceneGroup a:hover {
        background: orange;
    }
    
    #sceneList .sceneGroup a.active {
        background: orange;
    }
    
    .sceneImg {
        position: relative;
    }
    
    .swiper-scene-list {
        position: absolute;
        top: 10000px;
        left: 0;
        width: 100%;
        height: 300px;
        margin: 20px auto;
    }
    
    .scene_active {
        top: 0;
    }
    
    .swiper-scene-list .swiper-slide {
        width: 160px;
        min-width: 160px;
        height: 110px;
        margin-right: 15px;
        overflow: hidden;
        text-align: center;
        font-size: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        border: 2px solid #fff;
        cursor: pointer;
        text-decoration: none;
        position: relative;
    }
    
    .swiper-scene-list .swiper-slide:hover {
        border: 2px solid orange;
    }
    
    .swiper-scene-list .active {
        border: 2px solid orange;
    }
    
    .swiper-scene-list .swiper-slide span {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 22px;
        line-height: 22px;
        color: #fff;
        text-align: center;
        font-size: 12px;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .swiper-scene-list .swiper-slide img {
        width: 100%;
        height: 110px;
    }
    /* --- */
    
    .hotspot {
        width: 42px;
        height: auto;
        text-align: center;
        border-radius: 21px;
        background: #395ed8;
        position: relative;
    }
    
    .hotspot:hover {
        background: orange;
    }
    
    .hotspot .hs_img {
        position: absolute;
        width: 36px;
        height: 36px;
        left: 3px;
        top: 3px;
    }
    
    .hotspot .hs_img img {
        width: 36px;
        height: 36px;
        border-radius: 18px;
    }
    
    .hotspot .hs_tit {
        padding: 45px 15px 10px;
        color: #fff;
        font-size: 14px;
        display: block;
    }
    
    .btn_fullscreen {
        background: url("/static/images/jony/full-screen.png") no-repeat;
        background-size: 35px;
    }
    
    .btn_vrmode {
        background: url("/static/images/jony/vrmode.png") no-repeat;
        background-size: 35px;
    }
    
    .btn_fullscreen_off {
        background: url("/static/images/jony/full-stop.png") no-repeat;
        background-size: 35px;
    }
    
    .btn_bgmusic {
        background: url("/static/images/jony/bgmusic-open.png") no-repeat;
        background-size: 35px;
    }
    
    .btn_bgmusic_off {
        background: url("/static/images/jony/bgmusic-close.png") no-repeat;
        background-size: 35px;
    }
    
    .vrshow_radar_btn {
        position: static;
        margin-top: 0px;
        background-image: url(/static/images/jony/content.png);
        background-repeat: no-repeat;
        background-size: 35px;
        display: none;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }
    
    .vrshow_container_1_min {
        top: 40px;
    }
    
    #profilebox {
        position: fixed;
        top: 40px;
        right: 80px;
        z-index: 800;
        width: 400px;
        padding: 25px;
        color: #fff;
        cursor: pointer;
        font-size: 14px;
        border: 2px solid #395ed8;
        border-radius: 15px;
        background: rgba(0, 0, 0, 0.8)
    }
    
    #profilebox .profile_title {
        font-size: 16px;
        color: #fff;
        font-weight: 600;
        margin-bottom: 20px;
    }
    
    #profilebox .profile_close {
        width: 24px;
        height: 24px;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 801;
    }
    
    #profilebox .profile_close img {
        width: 24px;
        height: 24px;
    }
    
    #profilebox .profile_title:before {
        content: '';
        width: 4px;
        height: 20px;
        display: inline-block;
        background-color: #f9aa0c;
        margin-left: 5px;
        margin-right: 10px;
        margin-bottom: -5px;
    }
    
    #profilebox .profile_con {
        line-height: 26px;
        color: #fff;
        text-align: justify;
        overflow-y: auto;
        max-height: 600px;
        padding: 0 10px 0 0;
    }
    
    #profilebox .profile_con::-webkit-scrollbar {
        /*滚动条整体样式*/
        width: 5px;
        /*高宽分别对应横竖滚动条的尺寸*/
        height: 1px;
    }
    
    #profilebox .profile_con::-webkit-scrollbar-thumb {
        /*滚动条里面小方块*/
        border-radius: 5px;
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
        background: #535353;
    }
    
    #profilebox .profile_con::-webkit-scrollbar-track {
        /*滚动条里面轨道*/
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        background: #ededed;
    }
    
    #profilebox .profile_con img {
        width: 100%;
        border: 1px solid #395ed8;
    }
    
    #profilebox .profile_con a:hover {
        text-decoration: none;
    }
    
    #profilebox .profile_con a:hover {
        text-decoration: none;
    }
    
    #profilebox .profile_con a em {
        width: 120px;
        text-align: center;
        height: 36px;
        line-height: 36px;
        border-radius: 18px;
        display: block;
        margin: 0 auto;
        color: #fff;
        font-size: 14px;
        font-style: normal;
        background: #395ed8;
        text-decoration: none;
    }
    
    #profilebox .profile_con a:hover em {
        background: #204ad4;
    }
    /**----wap----**/
    
    #vrshow_container_1_wap {
        position: fixed;
        top: 20px;
        left: 0;
        z-index: 882;
        width: 100%;
        height: 40px;
    }
    
    #vrshow_container_1_wap .vr_wap_btns {
        width: 84px;
        height: 40px;
        float: right;
    }
    
    #vrshow_container_1_wap .vr_wap_btns div {
        display: block;
        float: left;
        width: 30px;
        height: 30px;
        margin: 0 10px 0 0;
        background-size: 30px;
    }
    
    #vrshow_container_1_wap .btn_fullscreen_wap {
        background: url("/static/images/jony/full-screen.png") no-repeat;
    }
    
    #vrshow_container_1_wap .btn_vrmode_wap {
        background: url("/static/images/jony/vrmode.png") no-repeat;
    }
    
    #vrshow_container_1_wap .vrshow_radar_btn_wap {
        background: url("/static/images/jony/content.png") no-repeat;
    }
    /*----*/
    
    @media screen and (max-width: 767px) {
        #profilebox {
            position: fixed;
            top: 0px;
            left: 0px;
            z-index: 9923;
            width: 100%;
            padding: 25px;
            color: #fff;
            cursor: pointer;
            font-size: 14px;
            border: none;
            border-radius: 0;
            background: rgba(0, 0, 0, 0.8)
        }
        #profilebox .profile_title {
            font-size: 16px;
            color: #fff;
            font-weight: 600;
            margin-bottom: 20px;
        }
        #profilebox .profile_close {
            width: 30px;
            height: 30px;
            position: absolute;
            top: 0px;
            right: 0px;
            z-index: 801;
        }
        #profilebox .profile_close img {
            width: 30px;
            height: 30px;
        }
        #profilebox .profile_title:before {
            content: '';
            width: 4px;
            height: 20px;
            display: inline-block;
            background-color: #f9aa0c;
            margin-left: 5px;
            margin-right: 10px;
            margin-bottom: -5px;
        }
        #profilebox .profile_con {
            line-height: 26px;
            color: #fff;
            text-align: justify;
            overflow: auto;
            padding: 0 10px 0 0;
        }
        #profilebox .profile_con::-webkit-scrollbar {
            /*滚动条整体样式*/
            width: 5px;
            /*高宽分别对应横竖滚动条的尺寸*/
            height: 1px;
        }
        #profilebox .profile_con::-webkit-scrollbar-thumb {
            /*滚动条里面小方块*/
            border-radius: 5px;
            box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
            background: #535353;
        }
        #profilebox .profile_con::-webkit-scrollbar-track {
            /*滚动条里面轨道*/
            box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
            border-radius: 5px;
            background: #ededed;
        }
        #profilebox .profile_con img {
            width: 100%;
            border: 1px solid #395ed8;
        }
        #profilebox .profile_con a:hover {
            text-decoration: none;
        }
        #profilebox .profile_con a:hover {
            text-decoration: none;
        }
        #profilebox .profile_con a em {
            width: 120px;
            text-align: center;
            height: 36px;
            line-height: 36px;
            border-radius: 18px;
            display: block;
            margin: 0 auto;
            color: #fff;
            font-size: 14px;
            font-style: normal;
            background: #395ed8;
            text-decoration: none;
        }
        #profilebox .profile_con a:hover em {
            background: #204ad4;
        }
    }
    /*---*/
    
    #vrshow_container_2_wap {
        position: fixed;
        top: 10rem;
        right: 1.4rem;
        z-index: 932;
        width: 3rem;
        height: 22rem;
    }
    
    #vrshow_container_2_wap div {
        display: block;
        float: left;
        width: 3rem;
        height: 3rem;
        margin: 1rem 0 0 0;
        background-size: 3rem;
    }
    
    .sp_wap {
        overflow: hidden;
        opacity: 0;
        top: 100000px;
        left: 0;
        z-index: 940;
        position: fixed;
        padding: 10px;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .sp_wap_con {
        overflow: auto;
    }
    
    .sp_wap_con_sub {
        position: relative;
    }
    
    .sp_close_wap {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 30px;
        height: 30px;
        border-radius: 15px;
        background: red;
        text-align: center;
        z-index: 3;
        cursor: pointer;
        background: rgba(0, 0, 0, 0.9) url('../images/shapan_close.png') no-repeat;
        background-size: 100%;
    }
    
    .shapan {
        opacity: 0;
        width: 500px;
        height: 500px;
        position: fixed;
        top: 100000px;
        left: 0;
        z-index: 940;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .sp_close {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 30px;
        height: 30px;
        border-radius: 15px;
        background: red;
        text-align: center;
        z-index: 3;
        cursor: pointer;
        background: rgba(0, 0, 0, 0.9) url('../images/shapan_close.png') no-repeat;
        background-size: 100%;
    }
    
    .sp_bgimg {
        width: 480px;
        height: 480px;
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 2;
    }
    
    .sp_bgimg img {
        width: 100%;
        height: auto;
    }
    
    .sp_pt {
        position: absolute;
        z-index: 3;
        padding: 3px;
        width: 30px;
        border-radius: 15px;
        background: #395ed8;
        cursor: pointer;
    }
    
    .sp_pt:hover {
        background: orange;
        text-decoration: none;
        color: #fff;
    }
    
    .sp_pt_img {
        width: 30px;
        height: 30px;
    }
    
    .sp_pt_img img {
        width: 24px;
        height: 24px;
        border-radius: 12px;
    }
    
    .sp_pt_txt {
        width: 20px;
        text-align: center;
        color: #fff;
        padding-left: 5px;
    }
    /*图集*/
    
    #gallery_new {
        position: fixed;
        opacity: 0;
        top: 10000px;
        left: 0;
        z-index: 940;
        width: 100%;
        background: rgba(0, 0, 0, 0.6);
    }
    
    #gallery_new .swiper-num {
        color: #fff;
        text-align: center;
        font-size: 24px;
    }
    
    #gallery_new .swiper-container {
        width: 600px;
        height: 600px;
        margin: 5% auto;
    }
    
    #gallery_new .swiper-slide {
        background-position: center;
        background-size: cover;
        width: 300px;
        height: 300px;
        text-align: center;
    }
    
    #gallery_new .swiper-gallery-close {
        position: absolute;
        z-index: 3100;
        overflow: visible;
        opacity: 1;
        cursor: pointer;
        pointer-events: auto;
        background-image: url(/tour/skin/close.png);
        width: 41px;
        height: 41px;
        background-position: 0px 0px;
        background-size: 41px 41px;
        top: 0;
        right: 0;
    }
    
    .content-box {
        position: fixed;
        z-index: 940;
        top: 10000px;
        left: 0;
        opacity: 0;
        width: 100%;
        height: 100%;
    }
    
    .content-warp {
        position: relative;
        width: 80%;
        max-width: 800px;
        margin: 40px auto;
        border-radius: 10px;
        color: #fff;
        background: rgba(0, 0, 0, 0.6);
        padding: 30px;
    }
    
    .content-header {
        font-size: 18px;
        text-align: center;
        border-bottom: 1px dotted #ccc;
        padding-bottom: 15px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-all;
    }
    
    .content-main {
        max-height: 800px;
        overflow: auto;
        font-size: 14px;
        line-height: 32px;
        padding: 20px 5px;
    }
    
    @media screen and (max-width: 767px) {
        .mobile_hide {
            display: none;
        }
        #sceneList {
            position: fixed;
            left: 0;
            bottom: -13rem;
            width: 100%;
            height: 13rem;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.5);
        }
        #sceneList .sceneGroup {
            height: 0.3rem;
            margin-bottom: 0.8rem;
        }
        #sceneList .sceneGroup a {
            width: 7rem;
            height: 2rem;
            line-height: 2rem;
            display: block;
            float: left;
            text-align: center;
            color: #fff;
            border-radius: 3px;
            margin: 0 0.8rem 0 0;
            text-decoration: none;
            font-size: 12px;
        }
        #sceneList .sceneGroup a:hover {
            background: orange;
        }
        #sceneList .sceneGroup a.active {
            background: orange;
        }
        .sceneImg {
            position: relative;
        }
        .swiper-scene-list {
            position: absolute;
            top: 10000px;
            left: 0;
            width: 100%;
            height: 8rem;
            margin: 2rem auto;
        }
        .scene_active {
            top: 0;
        }
        .swiper-scene-list .swiper-slide {
            width: 10rem;
            min-width: 10rem;
            height: 7.6rem;
            margin-right: 15px;
            overflow: hidden;
            text-align: center;
            font-size: 18px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            border: 2px solid #fff;
            cursor: pointer;
            text-decoration: none;
            position: relative;
        }
        .swiper-scene-list .swiper-slide:hover {
            border: 2px solid orange;
        }
        .swiper-scene-list .active {
            border: 2px solid orange;
        }
        .swiper-scene-list .swiper-slide span {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 22px;
            line-height: 22px;
            color: #fff;
            text-align: center;
            font-size: 12px;
            background: rgba(0, 0, 0, 0.7);
        }
        .swiper-scene-list .swiper-slide img {
            width: 100%;
            height: 7.6rem;
        }
        .hotspot {
            transform: scale(0.7, 0.7);
            -webkit-transform: scale(0.7, 0.7);
            -moz-transform: scale(0.7, 0.7);
        }
        /*图集-wap*/
        #gallery_new {
            position: fixed;
            opacity: 0;
            top: 10000px;
            left: 0;
            z-index: 940;
            width: 100%;
            background: rgba(0, 0, 0, 0.6);
        }
        #gallery_new .swiper-num {
            color: #fff;
            text-align: center;
            font-size: 16px;
        }
        #gallery_new .swiper-container {
            width: 600px;
            height: 600px;
            margin: 50% auto;
        }
        #gallery_new .swiper-slide {
            background-repeat: no-repeat;
            background-position: center;
            background-size: 100%;
            text-align: center;
        }
        #gallery_new .swiper-slide img {
            width: 100%;
        }
        #gallery_new .swiper-gallery-close {
            position: absolute;
            z-index: 3100;
            overflow: visible;
            opacity: 1;
            cursor: pointer;
            pointer-events: auto;
            background-image: url(/tour/skin/close.png);
            width: 41px;
            height: 41px;
            background-position: 0px 0px;
            background-size: 41px 41px;
            top: 0;
            right: 0;
        }
    }
    /*隐藏*/
    
    #viewnumDiv {
        opacity: 0;
    }
    
    #user_nickName {
        opacity: 0;
    }
    
    @keyframes playing {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }