#detail {
    position: fixed;
    top: 0;
    bottom: 70px;
    left: 0;
    right: 0;
    background: white;
    z-index: 999;
}

#detail .videoBox {
    position: relative;
    width: 100%;
    height: 120vw;

}

#detail .pic {
    position: absolute;
    width: 100vw;
    height: 100vw;
    top: 73vw;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
}

#detail .pic .picOut {
    position: absolute;
    top: -2vw;
    right: 12vw;
    width: 28%;
    z-index: 99;
    transform-origin: 10% 10%;
}


#detail .spin {
    position: relative;
    width: 100%;
    height: 100%;
}

#detail .spin .pic1 {
    width: 100%;
    height: 100%;
}

#detail .spin .pic2 {
    position: absolute;
    width: 55%;
    height: 55%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

#detail .spin .picTxt {
    position: absolute;
    width: 55%;
    height: auto;
    top: 50%;
    left: 22.5%;
    transform: translateY(-50%);
    border-radius: 50%;
    color: white;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 12px;
    padding: 5px;
    text-align: center;
}

/* 旋转 */
.xz {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
    -webkit-animation: rotate 3s linear infinite;
    -moz-animation: rotate 3s linear infinite;
    -o-animation: rotate 3s linear infinite;
    animation: rotate 3s linear infinite;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg)
    }

    to {
        -moz-transform: rotate(359deg)
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg)
    }

    to {
        -o-transform: rotate(359deg)
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(359deg)
    }
}

/* 唱片杆动画 */
.ganMove {
    transform: rotate(-10deg);
    transition: all .5s ease-in-out;
}