﻿/*视频下拉*/
.video_pull_box {
    width: 100%;
    height: 548px;
    background: url("../images/video_pull_bg.png") no-repeat center center;
    overflow: hidden;
    position: relative;
    display: none;
}

.video_pull {
    width: 1138px;
    height: 430px;
    margin: 59px auto;
    position: relative;
}

.video_pull:before {
    float: left;
    content: "";
    display: block;
    width: 569px;
    height: 430px;
    background: url("../images/video_box_fl.png") no-repeat center center;
}

.video_pull:after {
    float: right;
    content: "";
    display: block;
    width: 569px;
    height: 430px;
    background: url("../images/video_box_fr.png") no-repeat center center;
}

.video_pull .video_play {
    width: 750px;
    height: 422px;
    position: absolute;
    top: 4px;
    left: 50%;
    margin-left: -376px;
    background: #1c1c1c;
    -webkit-box-shadow: 0 0 3em 0 rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 0 3em 0 rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 3em 0 rgba(0, 0, 0, 0.6);
    cursor: pointer;
    z-index: 2;
}

.video_pull .video_play video {
    width: 100%;
    height: 100%;
}

.video_pull .text_fl {
    position: absolute;
    top: 76px;
    left: 146px;
}

.video_pull .text_fr {
    position: absolute;
    top: 76px;
    right: 146px;
}

.float_move {
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.float_move .move_box {
    width: 1138px;
    height: 0;
    margin: 63px auto 0;
    position: relative;
}

.float_move .move_box .sm_dot1 {
    position: absolute;
    top: 80px;
    left: 98px;
    z-index: 1;
}

.float_move .move_box .sm_dot2 {
    position: absolute;
    top: 201px;
    left: 61px;
    z-index: 2;
}

.float_move .move_box .sm_dot3 {
    position: absolute;
    top: 60px;
    right: 100px;
    z-index: 1;
}

.float_move .move_box .sm_dot4 {
    position: absolute;
    top: 222px;
    right: 90px;
    z-index: 1;
}

.float_move .move_box .logo_01 {
    position: absolute;
    top: 127px;
    left: 18px;
    z-index: 1;
    animation: move1 0.5s linear forwards;
    -webkit-animation: move1 0.5s linear forwards;
}

.float_move .move_box .logo_02 {
    position: absolute;
    top: 286px;
    left: 75px;
    z-index: 1;
    animation: move2 0.5s linear forwards;
    -webkit-animation: move2 0.5s linear forwards;
}

.float_move .move_box .logo_03 {
    position: absolute;
    top: 106px;
    right: 34px;
    z-index: 1;
    animation: move3 0.5s linear forwards;
    -webkit-animation: move3 0.5s linear forwards;
}

.float_move .move_box .logo_04 {
    position: absolute;
    top: 254px;
    right: 52px;
    z-index: 1;
    animation: move4 0.5s linear forwards;
    -webkit-animation: move4 0.5s linear forwards;
}

.video_pull .video_sha {
    width: 758px;
    height: 65px;
    position: absolute;
    bottom: -48px;
    left: 50%;
    margin-left: -379px;
    z-index: 1;
}

.video_pull_close {
    width: 28px;
    height: 28px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    left: 50%;
    margin-left: 346px;
}

.video_pull_tips {
    height: 28px;
    line-height: 28px;
    font-size: 12px;
    color: #4c4c4c;
    position: absolute;
    top: 27px;
    left: 50%;
    margin-left: 216px;
}

@keyframes move1 {
    0% {
        -webkit-transform: translate(-400px, -200px);
        transform: translate(-400px, -200px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}

@keyframes move2 {
    0% {
        -webkit-transform: translate(-400px, 200px);
        transform: translate(-400px, 200px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}

@keyframes move3 {
    0% {
        -webkit-transform: translate(400px, -200px);
        transform: translate(400px, -200px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}

@keyframes move4 {
    0% {
        -webkit-transform: translate(400px, 200px);
        transform: translate(400px, 200px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}
/*顶部广告通栏*/
.ad_full {
    width: 100%;
    height: 100px;
    position: relative;
    display: none;
    overflow: hidden;
}

.ad_full_img {
    display: block;
    width: 100%;
    height: 100px;
    position: relative;
    z-index: 1;
}

.ad_full_img img {
    max-width: initial;
    height: 100px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -960px;
}

.ad_full_close {
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    top: 10px;
    right: 50%;
    margin-right: -600px;
    z-index: 2;
}