/* tab-control部分开始 */
.tab-control .fo-item{
    width: 100%;
}

.tab-control .fo-item ul{
    justify-content: space-between;
}

.tab-control ul{
    flex-wrap: wrap;
}

.tab-control ul li{
    width: 6.2%;
    /*margin: 0 20px;*/
}

.tab-control .fo-item ul li{
    margin-left: 62px;
}

.tab-control .fo-item ul li:first-child{
    margin-left: 0;
}

.tab-control .fo-item ul li:nth-child(10){
    margin-left: 0;
}

.tab-control ul li a{
    font-size: 20px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #393A45;
    text-align: left;
}
/* tab-control部分结束 */


/* 会员表格 */
.table-title{
    width: 100%;
    height: 64px;
    background: #FFFFFF;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 0 30px;
    margin-bottom: 14px;
    margin-top: 25px;
}

.table-title p:first-child{
    font-size: 22px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #C8001B;
}

.table-title p:nth-child(2){
    font-size: 20px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #3F485B;
}

.table-title p:nth-child(2) .red-text{
    font-size: 30px;
    color: #C8001B;
}


.table-wrap{
    width: 100%;
    height: auto;
    max-height: 1170px;
    overflow: scroll;
    overflow-x:hidden;
    background: #FFFFFF;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 15px 10px;
    border-top: 15px solid white;
    border-bottom: 15px solid white;
}

/* 修改滚动条样式 */
::-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: 35%;
    text-align: left;
    padding: 15px;
    vertical-align: top;
}

.table th:nth-child(3), .table td:nth-child(3){
    width: 15%;
}

.table th:nth-child(4), .table td:nth-child(4){
    width: 15%;
}

.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;
}
