﻿@charset "utf-8";
/* CSS Document */
.live_list{
    position: relative;
    width:1000px;
    margin: 0 auto;
}
.live_list .item{
    float:left;
    width:240px;
    height:225px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    background-color: #f0f0f0;
}
.live_list .item:hover{
    background-color: fff;
    box-shadow: rgba(0,0,0,.3) 1px 1px 5px;
    text-decoration: none;
}
.live_list .item img{
    display: block;
    width:100%;
    height: 150px;
    margin-bottom: 5px;
}
.live_list .item .title{
    display: block;
    width:100%;
    box-sizing: border-box;
    padding: 0 10px;
    font-weight: bold;
    height: 24px;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #3188d8;
}
.live_list .item .unit,
.live_list .item .time{
    display: block;
    width:100%;
    box-sizing: border-box;
    padding: 0 10px;
    height: 20px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.pager{
    text-align: center;
    padding: 40px 0;
}
.pager .num{
    display: inline-block;
    height: 30px;
    min-width: 30px;
    margin: 0 5px;
    border:1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
    color: #666;
    moz-user-select: -moz-none;
    -moz-user-select: none;
    -o-user-select:none;
    -khtml-user-select:none;
    -webkit-user-select:none;
    -ms-user-select:none;
    user-select:none;
}
.pager .num:hover{
    background-color:#2378e8;
    color: #fff;
}
.pager .current{
    background-color:#1956a7;
    color: #fff;
}
