

<div class="divNeedHover" style="margin-left: -1px; border-radius:15px; background-color:#4ebddc; margin-top: 2px; cursor: pointer; border:0px solid rgba(200,200,200,0.25); width: 300px; height: 145px; background-repeat: no-repeat;" >
<div style="width: 100%; padding-top: 30px; text-align:center; ">
<span class="datashow" style="color:white; display:block; margin-bottom:20px">用户总人数(人)</span>
<span class="datashow" style="color:white; font-size:40px; margin-left:60px;">2200</span>
<span class="datashow" style="color:white; margin-left:60px">↑10</span>
</div>
</div>
<script>
C.ready(function () {
$('.divNeedHover').hover(function () {
$(this).css('background-color', '#56c8e8');
$(this).css('box-shadow', '10px 10px 5px #888888');
}, function () {
$(this).css('background-color', '#4ebddc');
$(this).css('box-shadow', '');
});
});
</script>