.image-fullscreen-container {
    position: relative;
    width: 100%;
    height: 100%;
}
/*.image-fullscreen-container .prevent_image_press{*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height:100%;*/
/*    z-index: 1;*/
/*    -webkit-touch-callout: none;*/
/*    user-select: none;*/
/*    -webkit-user-select: none;*/
/*}*/
.prevent_image_press{
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}
.image-fullscreen-wrap {
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;

    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    bottom: 0px;
    right: 0px;
}

.image-fullscreen-wrap:first-child {
    z-index: 1;
}

.image-fullscreen-wrap img {
    /* max-width: 100%;
    max-height: 100%; */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.image-fullscreen-wrap .no-event {
    pointer-events: none;
}

.image-fullscreen-wrap .no-event.can_download {
    pointer-events: all;
}

.bottom_menu {
    position: absolute;
    bottom: 42px;
    height: 40px;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 999;
}


.animation_help_tip {
    background: rgba(34, 34, 34, 0.6);
    text-align: center;
    width: 76px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    padding: 0;
    border-radius: 3px;
    bottom: 30px;
    z-index: 1;
    height: 30px;
    color: #777;
    font-size: 12px;
    line-height: 30px;
    transition:all 0.4s ease;
    transform: translateY(200%);
    -webkit-transform:translateY(200%);
    -webkit-transition: all 0.3s;
}
.animation_help_tip.show{
    transform: translateY(0%);
    -webkit-transform:translateY(0%);
}

.animation_selector {
    position: absolute;
    right: 100px;
    bottom: 30px;
    width: 120px;
    height: 30px;
    z-index: 2;
    transition:all 0.4s ease;
    transform: translateY(200%);
    -webkit-transform:translateY(200%);
    -webkit-transition: all 0.3s;
}
.animation_selector.show{
    transform: translateY(0%);
    -webkit-transform:translateY(0%);
}

.animation_list_item {
    border-bottom: 1px solid rgba(238, 238, 238, 0.1);
    user-select: none;
    color: #666;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}

.animation_list_item:hover {
    background: #999999;
    color: #fff;
}

.animation_list{
    width: 100px;
    padding: 0px;
    text-align: center;
    bottom: 30px;
    position: absolute;
    right: 0px;
    z-index: 999;
    border-radius: 4px;
    background: rgba(34, 34, 34, 0.6);
}

.animtion_current_type {
    font-size: 12px;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100px;
    text-align: center;
    border-radius: 4px;
    color: #999;
    background: rgba(34, 34, 34, 0.6);
    cursor: pointer;
    padding: 10px 0px;
}

.animtion_current_type_arrow {
    width: 0;
    height: 0;
    border-bottom: 8px solid #888;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    display: inline-block;
    margin-left: 3px;
}
.image-fullscreen-icon-btn:hover svg{
    fill: #aaa;
    fill-rule: evenodd;
}

.image-fullscreen-icon-btn svg{
    fill: #666;
    fill-rule: evenodd;
}

.image-fullscreen-icon-btn {
    color: rgba(255,255,255,0.5);
    z-index: 9999;
    width: 50px;
    height: 50px;
    line-height: 54px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
    font-size: 20px;
    background: rgba(34, 34, 34, 0.6);
    text-align: center;
    display: inline-block;
    margin: 0 5px;
}
.image-fullscreen-top-buttons{
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    z-index: 100;
    text-align: center;
    transition:all 0.4s ease;
    transform: translateY(-200%);
    -webkit-transform:translateY(-200%);
    -webkit-transition: all 0.3s;
}
.image-fullscreen-top-buttons.show {
    transform: translateY(0%);
    -webkit-transform:translateY(0%);
}

/*
animations
*/

.pt-page-moveToLeft {
    -webkit-animation: moveToLeft 1s ease both;
    animation: moveToLeft 1s ease both;
}

.pt-page-moveFromLeft {
    -webkit-animation: moveFromLeft 1s ease both;
    animation: moveFromLeft 1s ease both;
}

@-webkit-keyframes moveToLeft {
    from {
    }
    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes moveToLeft {
    from {
    }
    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@-webkit-keyframes moveFromLeft {
    from {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes moveFromLeft {
    from {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.pt-page-moveToTop {
    -webkit-animation: moveToTop 1s ease both;
    animation: moveToTop 1s ease both;
}

.pt-page-moveFromTop {
    -webkit-animation: moveFromTop 1s ease both;
    animation: moveFromTop 1s ease both;
}

@-webkit-keyframes moveToTop {
    from {
    }
    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes moveToTop {
    from {
    }
    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-webkit-keyframes moveFromTop {
    from {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes moveFromTop {
    from {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

.pt-page-fadeTo {
    -webkit-animation: fadeTo 1s ease both;
    animation: fadeTo 1s ease both;
}

.pt-page-fadeFrom {
    -webkit-animation: fadeFrom 1s ease both;
    animation: fadeFrom 1s ease both;
}

@-webkit-keyframes fadeTo {
    from {
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}

@keyframes fadeTo {
    from {
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}

@-webkit-keyframes fadeFrom {
    from {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    to {
    }
}

@keyframes fadeFrom {
    from {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    to {
    }
}

.pt-page-flipOutLeft {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: flipOutLeft .5s both ease-in;
    animation: flipOutLeft .5s both ease-in;
}

.pt-page-flipInRight {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: flipInRight .5s both ease-out .5s;
    animation: flipInRight .5s both ease-out .5s;
}

@-webkit-keyframes flipOutLeft {
    from {
    }
    to {
        -webkit-transform: translateZ(-1000px) rotateY(-90deg);
        transform: translateZ(-1000px) rotateY(-90deg);
        opacity: 0.2;
    }
}

@keyframes flipOutLeft {
    from {
    }
    to {
        -webkit-transform: translateZ(-1000px) rotateY(-90deg);
        transform: translateZ(-1000px) rotateY(-90deg);
        opacity: 0.2;
    }
}

@-webkit-keyframes flipInRight {
    from {
        -webkit-transform: translateZ(-1000px) rotateY(90deg);
        transform: translateZ(-1000px) rotateY(90deg);
        opacity: 0.2;
    }
}

@keyframes flipInRight {
    from {
        -webkit-transform: translateZ(-1000px) rotateY(90deg);
        transform: translateZ(-1000px) rotateY(90deg);
        opacity: 0.2;
    }
}

.pt-page-rotateFall {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-animation: rotateFall 1s both ease-in;
    animation: rotateFall 1s both ease-in;
}

@-webkit-keyframes rotateFall {
    0% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    20% {
        -webkit-transform: rotateZ(10deg);
        transform: rotateZ(10deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: rotateZ(17deg);
        transform: rotateZ(17deg);
    }
    60% {
        -webkit-transform: rotateZ(16deg);
        transform: rotateZ(16deg);
    }
    100% {
        -webkit-transform: translateY(100%) rotateZ(17deg);
        transform: translateY(100%) rotateZ(17deg);
    }
}

@keyframes rotateFall {
    0% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    20% {
        -webkit-transform: rotateZ(10deg);
        transform: rotateZ(10deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: rotateZ(17deg);
        transform: rotateZ(17deg);
    }
    60% {
        -webkit-transform: rotateZ(16deg);
        transform: rotateZ(16deg);
    }
    100% {
        -webkit-transform: translateY(100%) rotateZ(17deg);
        transform: translateY(100%) rotateZ(17deg);
    }
}


.work_details_play_btn {
    position: absolute;
    background: #82C8AE;
    color: white;
    right: 0;
    height: 35px;
    border-radius: 50px;
    font-size: 12px;
    line-height: 35px;
    cursor: pointer;
    padding: 0 10px;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s;
}

@media screen and (max-width: 768px) {
    .work_details_play_btn {
        right: 5%;
    }
}


.work_details_play_btn .icon-playMusic02{
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    line-height: 14px;
    padding-right: 2px;
}
.work_details_play_btn:hover{

}
.work_details_play_btn:hover .icon-playMusic02{
    animation-name: fadeInUp;
    animation-duration: 0.4s;
    animation-timing-function: ease-in;
}

.live_show_full_container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 27304;
    display: none;
    background: #000;
}

.live_show_full_container.active {
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}


.images-side-menu{
    position: absolute;
    right: 0px;
    top: 40px;
    width: 94px;
    z-index: 999;
    bottom: 40px;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transition: all 0.4s ease-in-out;
}
.images-side-menu.opened {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
}
.side-menu-image-list .side-menu-image-item:first-child{
    margin-top:12px;
}
.side-menu-image-item img {
    width: 100%;
    border: 1px solid #666;
    opacity: 0.6;
    pointer-events: none;
}
.side-menu-image-item.current img {
    border-color:#2db7f5;
    border-width: 3px;
    opacity: 1;
}

.side-menu-image-item {
    height: 72px;
    width: 72px;
    display: inline-block;
    -webkit-transition: -webkit-transform 500ms;
    transition: transform 500ms;
    overflow: hidden;
    margin-bottom: 6px;
}

.side-menu-image-item:hover{
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    position: relative;
    z-index: 100;
}
.side-menu-image-item:hover img{
    opacity: 1;
    border-width: 4px;
}

.side-menu-image-list {
    top: 30px;
    overflow-y: scroll;
    background: #3a3a3a;
    text-align: center;
    bottom: 30px;
    position: absolute;
    font-size: 0px;
    width:100%;
}



.side-menu-image-list-btn {
    height: 30px;
    text-align: center;
    position: absolute;
    width: 100%;
    color: #fff;
    background: #3a3a3a;
    cursor: pointer;

}
.side-menu-image-list-btn i{
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #646464;
}
.side-menu-image-list-btn:hover i{
    color:#fff;
}
.side-menu-image-list-btn.side-menu-image-list-btn-up{
    top: -1px;
    transform:rotate(180deg);
    -webkit-transform: rotate(180deg);
}
.side-menu-image-list-btn.side-menu-image-list-btn-down{
    bottom: -1px;
}
.side-menu-toggle-icon {
    position: absolute;
    top: 0px;
    bottom: 0px;
    height: 94px;
    width: 30px;
    background: #333333;
    left: -30px;
    margin: auto;
    color: #646464;
    border-radius: 5px 0px 0px 5px;
    cursor: pointer;
}

.side-menu-toggle-icon:hover{
 color:#fff;
}

.side-menu-toggle-icon i{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
}
.work_details_image_wrap:hover .work_details_play_image_btn{
    display: block;
}
/**
    图片正文的图片的浮动标签
 */
.work_details_play_image_btn {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    background: rgba(169, 166, 167, 0.69);
    color: white;
    padding: 4px 7px;
    cursor: pointer;
    display: none;
}
.work_list_play_image_btn{
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    background: rgba(169, 166, 167, 0.69);
    color: white;
    padding: 4px 7px;
    cursor: pointer;
    display: none;
}

.workImage_wrap:hover .work_list_play_image_btn{
    display: block;
}
.workImage_wrap .work_list_play_image_btn:hover{
    background: rgb(169, 166, 167, .8);
}
