.year {
    width: 100%;
    height: auto;
    padding: 0 40px 20px;
}
.year .year-box {
    width: 750px;
    height: auto;
    background: #ffffff;
    margin: 0 auto;
    text-align: center;
    font-size: 0;
}
.year .year-box li {
    display: inline-block;
    padding: 14px 20px;
    border-bottom: 2px solid #aaaaaa;
    position: relative;
    cursor: pointer;
}
.year .year-box li.active::before {
    content: '';
    width: 100%;
    height: 4px;
    background: #00A1E9;
    position: absolute;
    bottom: -3px;
    left: 0;
}
.year .year-box li span {
    font-size: 26px;
    color: #777777;
}
.content {
    width: 1300px;
    height: auto;
    background: #ffffff;
    padding: 50px 20px;
    margin: 0 auto;
}
.content .con-left {
    width: 880px;
    height: auto;
    float: left;
}
.con-left .list-box {
    width: 100%;
    height: auto;
    margin-top: 30px;
}
.con-left .list-box ul {
    display: none;
}
.con-left .list-box ul:first-child {
    display: block;
}
.list-box li {
    width: 430px;
    height: 350px;
    float: left;
    margin-top: 40px;
}
.list-box li:nth-child(odd) {
    margin-right: 20px;
}
.list-box li:nth-child(-n+2){
    margin-top: 0;
}
.list-box li .img-box {
    width: 100%;
    height: 196px;
    overflow: hidden;
}
.list-box li .img-box img {
    width: 100%;
    height: 100%;
    transition: all .5s;
}
.list-box li:hover .img-box img {
    transform: scale(1.1);
}
.list-box li:hover .tip .name {
    color: #00A1E9;
}
.list-box li .tip {
    width: 100%;
    /*height: 200px;*/
    padding: 0 25px;
    border: 1px solid #f1f1f1;
    border-top: none;
}
.list-box li .tip .name {
    color: #000000;
    font-size: 24px;
    line-height: 46px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.list-box li .tip .intro {
    color: #777777;
    font-size: 18px;
    padding: 10px 0 15px;
    height: 80px;
}
.list-box li .tip .intro span {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.list-box li .tip .date {
    color: #777777;
    font-size: 16px;
    line-height: 50px;
    border-top: 1px solid #f1f1f1;
}
.content .con-left .paging {
    width: 100%;
    height: 60px;
    text-align: center;
    margin-top: 30px;
}
.content .con-left .paging #pagination {
    display: inline-block;
}