*{
    margin: 0px;
    padding: 0px;

}

.wrapper{
    width: 1010px;
    background-color:mintcream;
    margin: 0px auto;

}

.info{
    width: 1010px;
    overflow: hidden;
    color: darkgray;
}

.info_anim{
    position: relative;
    padding-top:2px;
    animation: anim 40s infinite alternate;
    -moz-animation: anim 40s infinite alternate;
    -o-animation:anim 40s infinite alternate;
}
@keyframes anim {
    0%{left:0px}
    25%{left:350px}
    50%{left:750px}
    75%{left:500px}
    100%{left:0px}
}
@-moz-keyframes anim {
    0%{left:0px}
    25%{left:350px}
    50%{left:750px}
    75%{left:500px}
    100%{left:0px}
}
@-o-keyframes anim {
    0%{left:0px}
    25%{left:350px}
    50%{left:750px}
    75%{left:500px}
    100%{left:0px}
}


.thanks_gif{

    padding-top: 6px;
    width:100%;
    height: 500px;
    background-size: 40%;
    background-position-x: 280px;
    background-position-y: 10px;
    background-repeat: no-repeat;
    background-image: url("image/xiexie.gif");
}