@charset "UTF-8";
.switch_block{
    position:relative;
    float: left;
}
.switch_block+.switch_block{
    margin-left:33px;
}
.switch{
    background-image: url("../img/bg_1.png");
    width:154px;
    height:154px;
}
.switch_content{
    background:rgba(255,255,255,.7);
    border-radius: 50%;
    width:140px;
    height:140px;
    position:absolute;
    top:7px;
    left:7px;
    transition: all 2s;
}
.switch_block img{
    position:absolute;
    z-index:200;
}
.switch_block:hover div.switch{
    transition: all 2s;
    background-image: url("../img/bg_2.png");
    transform: rotate(180deg);
}
.switch_block:hover .switch_content{
    background:rgba(255,255,255,1)
}
.switch_text{
    text-align: center;
    color:#41c7db;
    font-size:18px;
    margin-top:15px;
    transition: all 1.5s;
}
.switch_block:hover .switch_text{
    color:#fff;
}
