.Spring-body {
    width: 400px;
    height: 275px;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1010;
    display: none;
}

.Spring-wrap {
    width: 391px;
    height: 275px;
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 7px;
}

.Spring-animate {
    position: absolute;
    -webkit-animation: moveleft 1.5s 1 linear;
    -moz-animation: moveleft 1.5s 1 linear;
    -o-animation: moveleft 1.5s 1 linear;
    animation: moveleft 1.5s 1 linear;
    -webkit-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.Spring-pop {
    width: 24px;
    height: 251px;
    background: url(../images/left.png) no-repeat;
    position: absolute;
    top: 15px;
    z-index: 1009;
}

.Spring-left {
    left: 2px;
}

.Spring-right {
    right: 0px;
}

.Spring-content {
    width: 346px;
    height: 225px;
    background: url(../images/con_bg.png) no-repeat;
    position: absolute;
    left: 25px;
    top: 28px;
    z-index: 1008;
}

.Spring-content h2 {
    /* width: 84px; */
    height: 24px;
    text-align: center;
    color: #FFD700;
    /* background: url(../images/con_h2.png) no-repeat; */
    margin: 24px auto 7px;
}

.Spring-text {
    width: 307px;
    height: 108px;
    background: rgba(0,0,0,0.4);
    margin: 0 auto;
    border-radius: 5px;
}

.Spring-text p {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    width: 285px;
    margin-left: 14px;
    padding-top: 5px;
}

.Spring-pop-text i {
    color: #f9d201;
    display: inline-block;
}

.Spring-detail-btn {
    width: 93px;
    height: 30px;
    background: url(../images/con_btn.png) no-repeat;
    display: block;
    font-size: 16px;
    color: #e33208;
    text-align: center;
    line-height: 28px;
    margin: 9px auto 0;
}

.Spring-detail-btn:hover {
    color: #9b5f00;
}

.Spring-out-btn {
    width: 45px;
    height: 57px;
    background: url(../images/drop_out.png) no-repeat;
    position: absolute;
    right: 0;
    top: 9px;
    z-index: 1010;
    cursor: pointer;
}

@-webkit-keyframes moveleft {
    0% {
        -webkit-transform: translateX(400px);
    }

    100% {
        -webkit-transform: translateX(0px);
    }
}

@-moz-keyframes moveleft {
    0% {
        -moz-transform: translateX(400px);
    }

    100% {
        -moz-transform: translateX(0px);
    }
}

@-o-keyframes moveleft {
    0% {
        -o-transform: translateX(400px);
    }

    100% {
        -o-transform: translateX(0px);
    }
}

@keyframes moveleft {
    0% {
        transform: translateX(400px);
    }

    100% {
        transform: translateX(0px);
    }
}