.report_screening_container{
    display: flex;
    flex-direction: row;
    height: 100%;
}

.report_screening_container .screening_menu{
    width: 14rem;
    background: #f8fcff;
    border-right: 1px solid #555;
}
.report_screening_container .screening_menu .item:hover{
    background: #c1e9ff;
}

.report_screening_container .screening_menu .item.active{
    background: #c1e9ff;
    font-weight: bold;
    font-size: 0.9rem;
}

.report_screening_container .screening_menu .item{
    padding: 0.4rem;
    background: #e6f6ff;
    cursor: pointer;
    margin-bottom: 1px;
}

.report_screening_container .screening_report1{
    display:flex;
    flex-direction: column;
    width: 100%;
}

.report_screening_container .screening_report1 .tools_bar{
    padding: 0.8rem;
}

.report_screening_container .screening_report1 select{
    padding: 0.3rem;
    outline: none;
    vertical-align: top;
}

.report_screening_container .screening_report1 .table_container{
    padding: 0.4rem;
    overflow-y: auto;
    width: 100%;
}

.report_screening_container .screening_report2{
    flex-grow: 1;
    padding: 0.8rem;
}

.report_screening_container .screening_report{
    flex-grow: 1;
    background: white;
    display: flex;
    flex-direction: row;
}

.report_screening_container button.excel{
    font-size: 0.9rem;
    padding: 0.3rem;
}

.report_screening_container input[type=radio]{
    margin-left: 1rem;
}

.report_screening_container label{
    cursor: pointer;
}

.report_screening_container .remark{
    position: absolute;
    bottom: 2rem;
    white-space: pre;
}

.report_screening_container .loading{
    width: 20px;
    height: 20px;
}

.report_screening_container table{
    user-select: none;
    width: 100%;
}

.report_screening_container thead tr th {
    font-size: 0.8rem;
    position: sticky;
    top: 0;
    background: lightskyblue;
    padding: 0.2rem 0.4rem;
}

.report_screening_container tbody tr td {
    padding: 0.4rem 0.4rem;
}

.report_screening_container .active {
    background: #f0f0f0;
}

.report_screening_container tbody tr:hover {
    background: #f5f5f5;
    cursor: pointer;
}