/***/
.new_list>li {
    position: relative;
    line-height: 66px;
    padding-left: 28px;
    padding-right: 120px;
    background-size: 100% auto;}

.new_list>li span {
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 16px;
    color: #666;}

.new_list>li:hover span {
    color: #1063d0;}

.new_list>li a {
    display: block;
    position: relative;
    font-size: 20px;
    color: #333;
    left: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .3s;}

.new_list>li:hover a {
    left: -10px;
    color: #1063d0;}
.new_list>li:nth-child(2n-1) {
    background: #f2f2f2;}
