/*
下以动画定义抄自baidu首页
http://su.bdimg.com/static/musicplus/css/music_6a92346d.css
*/
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes rotate
{
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@-o-keyframes rotate
{
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
    }
}
/*
以下参考baidu首页播放器
*/
.player-wrap{position: relative;}
/*转盘样式*/
.player-img{background: url("../images/cover.jpg") center center no-repeat #fff;
    width: 119px;height: 119px;
    border-radius: 50%;
    background-size:119px;
    animation:10s linear 0s normal none infinite rotate;
    -webkit-animation:10s linear 0s normal none infinite rotate;
    -o-animation:10s linear 0s normal none infinite rotate;
    animation-play-state:paused;
    -webkit-animation-play-state:paused;    
    -o-animation-play-state:paused;
    position: absolute;left:0;top:0;
    z-index: 2;
}
/**/
.player-wrap.playing{}
.player-wrap.playing .player-img{ 
animation-play-state:running;
-webkit-animation-play-state:running;
-o-animation-play-state:running;
}
/*播放按钮状态*/
.player-btn-play{
    position:absolute; left:43px;top:43px;z-index: 3;display: block;
    width: 33px;height: 33px;
    background:url("../images/player-btn.png") -23px -4px no-repeat;
    overflow: hidden;
}
.player-btn-play:hover{
    background-position: -23px -44px;
}
/*播放中,显示停止*/
.playing .player-btn-play{
    background-position: -64px -4px;
}
.playing .player-btn-play:hover{
    background-position: -64px -44px;
}