﻿p{
    margin: 0;
    padding: 0;
}
.pageContent{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#loadingPage{
    width: 100%;
    height: 100%;
    z-index: 20;
    position: relative;
display:none;
}
.canvas_warp{
    width: 100%;
    height: 100%;
    position: relative;
}
#canvas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

#load{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#load .loadCon{
    width: 296px;
    height: 296px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.loadquan{
    position: absolute;
    width: 100%;
    height: 100%;
}
#load .loadCon p{
    margin-top: 10px;
    font-size: 16px;
}
#viCon{
    display: none;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
}
#skip{
    width: 100px;
    position: absolute;
    left: 50%;
    margin-left: -50px;
    color: red;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}
#openTop,#openDown{
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10;
    text-align: center;
    display: none;
    background: black;
}
#openTop{
    height: 53vh;
    top: 0;
}
#openDown{
    height: 47vh;
    bottom: 0;
}
#openTop img,#openDown img{
    height: 100%;
    width: 100%;
}
#shotPane{
    position: absolute;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border: 5px solid white;
    border-radius: 5px;
    box-shadow:0px 5px 40px 0px #000000;
    display: none;
}
#download{
    position: absolute;
    bottom: 5px;
    width: 100px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: rgba(51,51,51,0.7);
    left: 50%;
    margin-left: -50px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    display: none;
}
#downtip{
    position: absolute;
    bottom: 5px;
    left: 0;
    font-size: 13px;
    width: 100%;
    text-align: center;
    color: rgba(51,51,51,0.7);
    display: none;
}
#screenImg{
    width: 100%;
    height: 100%;
}

.move1 {
    animation: load 3s ease-in infinite alternate;
    -webkit-animation: load 3s ease-in infinite alternate;
}
.move2 {
    animation: load 2s ease infinite alternate;
    -webkit-animation: load 2s ease infinite alternate;
}
.move3 {
    animation: load 1s ease-in infinite alternate;
    -webkit-animation: load 1s ease-in infinite alternate;
}
@keyframes load {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

.myfade{
    animation: myfade 2s infinite;
    -webkit-animation: myfade 2s infinite;
}
@keyframes myfade{
    0% {
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

#viPano{
    width: 606px;
    height: 342px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -303px;
    margin-top: -171px;
    display: none;
}
#linearGradTxt{
    position: absolute;
    left: 0%;
    top: 0%;
    right: 5%;
    height: 100px;
    margin-left: 8px;
    margin-top: 8px;
    display: none;
    word-wrap:break-word;
    overflow:hidden;
    background: -webkit-linear-gradient( top,#08def1,transparent);
    /*background-image: -webkit-linear-gradient( top,#343434,transparent);*/
    font-size: 18px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    -webkit-animation: mymove 10s; /* Chrome, Safari, Opera */
    animation: mymove 10s;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes mymove {
    50% {top: -100px;height:200px;}
}

/* Standard syntax */
@keyframes mymove {
    50% {top: -100px;height:260px;}
}

#linearGradTxtClose{
    position: absolute;
    top: 16px;
    right: 16px;
    height:15px;
    width: 15px; 
    display: none;
    background-image:url(../img2/TxtClose.png);
    cursor:pointer;
}
#myvideo{
    width: 100%;
    height: 100%;
}
#close{
    position: absolute;
    right: -10px;
    top: -10px;
}

@media screen and (max-width: 750px) {
    #viPano{
        width: 303px;
        height: 171px;
        margin-left: -151px;
        margin-top: -85px;
        padding-top: 10px;
        padding-right: 10px;
    }
}

#blackDetail{
    display: none;
}

@media screen and (orientation: portrait) {
    /* 竖屏 */
    #skip{
        bottom: 60px;
    }
    #openTop img,#openDown img{
        width: 100%;
    }

    #blackDetail{
        width: 100vh;
        height: 100vw;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -50vh;
        margin-top: -50vw;
        transform: rotate(90deg);
    }
}
@media screen and (orientation: landscape) {
    /* 横屏 */
    #skip{
        bottom: 30px;
        font-size: 12px;
    }
    #openTop img,#openDown img{
        width: 40%;
    }

    #blackDetail{
        width: 100vw;
        height: 100vh;
        position: absolute;
        left: 0;
        top: 0;
    }
}

@keyframes openTop {
    0% {
        transform: translateY(0);
    }
    100%{
        transform: translateY(-53vh);
    }
}

@keyframes openBottom {
    0% {
        transform: translateY(0);
    }
    100%{
        transform: translateY(47vh);
    }
}

.toTop{
    -webkit-animation: openTop 3s 1 ease;
    -moz-animation:openTop 3s 1 ease;
    animation-fill-mode: forwards;
}

.toBottom{
    -webkit-animation: openBottom 3s 1 ease;
    -moz-animation:openBottom 3s 1 ease;
    animation-fill-mode: forwards;
}