.paper_list{
    position: relative;
    width: 316px;
    height: auto;
    overflow: hidden;
    display: flex;
    padding: 8px 16px 24px 16px;
    flex-direction: column;
    gap: 18px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.20);
    margin-bottom: 20px;
}
.paper_list_item{
    display: flex;
    width: 100%;
    color: #333;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}
.paper_list_item:hover .paper_list_name{
    color: #0066FF;
}
.page_list_title{
    position: absolute;
    top: 30px;
    left: 66px;
    color: #348CFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    /*z-index: 2;*/
}
.page_list_title_red{
    color: #E6821D;
}
.paper_list_number{
    color: #666;
    margin-right: 4px;
}
.paper_list_item:nth-child(3) .paper_list_number{
    color: #FF3F3F !important;
}
.paper_list_item:nth-child(4) .paper_list_number{
    color: #FF3F3F !important;
}
.paper_list_item:nth-child(5) .paper_list_number{
    color: #FF3F3F !important;
}
.paper_list_name{
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
