#info-pub-content{
    .on-page{
        height: 65px;
        border-bottom: 2px solid var(--orange-color2);
        font-size: 16px;
        padding-top: 30px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-sizing: border-box;
    }
    .on-page p{
        font-size: 14px;
        color: #868686;
    }
    .on-page p span{
        color: var(--orange-color2);
    }
    .content-list-box{
        min-height: 300px;
        position: relative;
        margin-bottom: 20px;
    }
    .content-list-box .content-item{
        box-sizing: border-box;
        display: flex;
        align-items: center;    
        height: 45px;
        line-height: 45px;
        border-bottom: 1px solid #cfcfcf;
        color: #333;
        padding-right: 20px;
    }
    .content-item:hover{
        background-color: #f6f6f6;
        cursor: pointer;
    }
    .content-item .item-left{
        color: #868686;
        width: 30px;
        text-align: center;
    }
    .content-item .item-right{
        flex: 1;
        flex-shrink: 0;
        max-width: 100%;
    }
}