/* 信息公开页面样式 */
.info_item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .5s;

    box-sizing: border-box;
    padding: 15px 0;
}

.info_item:nth-child(5n){
    border-bottom: 1px solid #DFE3EA;
    padding-bottom: 40px;
    margin-bottom: 25px;

}

.info_l{
    width: calc(100% - 120px);
    display: flex;
    align-items: center;
}

.info_l img{
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-right: 8px;
}

.info_l img:nth-child(2){
    display: none;
}

.info_l p{
    font-size: 18px;
    color: #333333;
}

.info_date{
    width: 120px;
    flex-shrink: 0;
    font-size: 16px;
    color: #A0A4AB;
    text-align: right;
}

.info_item:hover{
    padding-left: 10px;
}

.info_item:hover .info_l img:nth-child(1){
    display: none;
}

.info_item:hover .info_l img:nth-child(2){
    display: block;
}

.info_item:hover .info_l p{
    color: #1D3C91;
    font-weight: bold;
}

.info_item:hover .info_date{
    color: #55575B;
}

@media screen and (max-width: 1350px) {
    .info_item{
        padding: 12px 0;
    }

    .info_item:nth-child(5n){
        padding-bottom: 24px;
        margin-bottom: 12px;
    }

    .info_l img{
        width: 9px;
        height: 9px;
    }

    .info_l p{
        font-size: 16px;
    }

    .info_date{
        font-size: 14px;
    }
}

@media screen and (max-width: 998px) {
    .info_l{
        width: 100%;
    }

    .info_date{
        display: none;
    }
}