/* 搜索 */
.search-box{
    width: 100%;
    height: 114px;
    background: #FFFFFF;
    box-shadow: 0px 5px 30px 0px rgba(160, 178, 203, 0.15);
    justify-content: center;
    margin: 30px 0;
}

.input-wrap input{
    width: 483px;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #DADFE7;
    border-radius: 5px;
    outline: none;
    padding: 0 20px;

    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #8288ac;
}

.input-wrap input::placeholder{
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #ADAEB9;
}

.search{
    width: 97px;
    height: 50px;
    background: #C8001B;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 11px;
    justify-content: center;
}

.search img{
    width: 23px;
    height: 23px;
    margin-right: 10px;
}

.search span{
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 27px;
}

/* 表格 */
.table-wrap{
    width: 100%;
    background: #FFFFFF;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 20px 30px 50px 30px;
    margin-bottom: 40px;
    max-height: 1170px;
    overflow: scroll;
    overflow-x:hidden;
    
}

/* 修改滚动条样式 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0px rgba(240, 240, 240, .5);
    border-radius: 10px;
    background-color: #E5E7ED;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 0px rgba(240, 240, 240, .5);
    background-color: #B5B8C0;
}

.table{
    width: 100%;
    border-collapse: collapse;
}

.table tr{
    border-bottom: 1px solid #EAECF2;
}

.table th, .table td{
    width: 15%;
    text-align: left;
    padding: 15px;
    vertical-align: top;
}

.table th:nth-child(2), .table td:nth-child(3){
    width: 30%;
}

.table th:nth-child(3), .table td:nth-child(4){
    width: 40%;
}

.table thead th{
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #8F8F8F;
}

.table tbody tr:hover{
    background: #EAECF2;
}

.table tbody tr:hover td{
    color: #C8001B;
}

.table tbody td{
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #46484F;
    line-height: 26px;
}
