﻿/* 文件列表样式 */
.file_list{
    padding: 13px 0 50px;
}

.file_item{
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 20px 0;
    border-bottom: 1px solid #EEEBEB;
}

.file_item_l{
    width: calc(100% - 117px - 10px);
    display: flex;
    align-items: center;
}

.file_item_l img{
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.file_item_l p{
    font-size: 18px;
    color: #202020;
    transition: all .5s;
}

.file_item_r{
    width: 117px;
    height: 31px;
    background: url(../images/pc/inner/ny_tu4.png) no-repeat;
    background-size: 100% 100%;
    margin-left: 10px;
    transition: all 1s;

    font-size: 16px;
    color: #8B8B8B;
    line-height: 31px;
    text-align: center;

    box-sizing: border-box;
    padding-left: 7px;
}

.file_item:hover{
    border-bottom: 2px solid #AB0A0F;
}

.file_item:hover p{
    color: #AB0A0F;
    font-weight: bold;
}

.file_item:hover .file_item_r{
    background: url(../images/pc/inner/ny_tu4_hover.png) no-repeat;
    background-size: 100% 100%;

    color: #ffffff;
}

@media screen and (max-width: 1200px){
    .file_list{
        padding: 0 0 20px;
    }

    .file_item{
        padding: 13px 0;
    }

    .file_item_l img{
        width: 18px;
        height: 18px;
        margin-right: 2px;
    }

    .file_item_l p{
        font-size: 16px;
    }

    .file_item_r{
        width: 85px;
        height: 26px;
        font-size: 12px;
        line-height: 26px;
    }

    .file_item_l{
        width: calc(100% - 85px - 10px);
    }
}