@media screen and (min-width: 768px) {
    .Newsall-pc{
        width: 100%;
        background-color: #FFFFFF;
    }
    .Newsall-pc-content{
        margin: 0 auto;
        padding: 20px 80px 50px;
        box-sizing: border-box;
    }
    .Newsall-pc-item{
        width: 100%;
        height: 60px;
        /* line-height: 70px; */
        border-bottom: 1px #707070 solid;
        position: relative;
        box-sizing: border-box;
    }
    .Newsall-pc-item span{
        /* display: inline-block; */
        float: left;
    }
    .Newsall-pc-title{
        width: 65%;
        height: 60px;
        line-height: 70px;
        color: #865858;
        padding-left: 20px;
        box-sizing: border-box;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .Newsall-pc-time{
        height: 60px;
        line-height: 70px;
        color: #865858;
        box-sizing: border-box;
    }
    .Newsall-pc-ah{
        width: 50px;
        height: 15px;
        box-sizing: border-box;
        position: absolute;
        bottom: 13px;
        right: 20px;
    }
    .Newsall-pc-ah .Newsall-pc-heng{
        float: right;
        width: 20px;
        height: 1px;
        border-top: 1px #707070 solid;
        margin-top: 4px;
        margin-right: -10px;

    }
    .Newsall-pc-ah .Newsall-pc-arrow{
        float: right;
        width: 8px;
        height: 8px;
        border-top: 1px #707070 solid;
        border-right: 1px #707070 solid;
        transform: rotate(45deg);
    }
    .Newsall-pc-item:hover{
        background-color: #F5FAFE;
        cursor: pointer;
    }
    .Newsall-pc-item:hover .Newsall-pc-title{
        line-height: 60px;
        transition: line-height 0.3s;
    }
    .Newsall-pc-item:hover .Newsall-pc-time{
        line-height: 60px;
        transition: line-height 0.3s;
    }
    .Newsall-pc-item:hover .Newsall-pc-ah{
        bottom: 20px;
        transition: bottom 0.3s;
    }
    .Newsall-pc-item:hover .Newsall-pc-ah .Newsall-pc-heng{
        border: 0;
        transition: border 0.3s;
    }
    .Newsall-pc-item:hover .Newsall-pc-ah .Newsall-pc-arrow{
        width: 12px;
        height: 12px;
        transition: width 0.3s,height 0.3s;
    }
}