.table {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
}
body {
    background: #f0f7fd;
}
.table .table1 {
    width: calc(50% - 0px);
    padding: 20px;
}

.table .table2 {
    width: calc(calc(100% / 3) - 0px);
    padding: 20px;
}

.table .table2:nth-child(4),
.table .table2:nth-child(5),
.table .table2:nth-child(6) {
    margin-bottom: 20px;
}

.table .table-title {
    font-size: 20px;
    font-weight: 700;
    height: 50px;
    line-height: 50px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
    border-bottom: 1px solid #efefef;
    margin-bottom: 20px;
}

.table .table-title span:nth-child(1) {
    color: #333;
    padding-left: 21px;
    width: 274px;
    color: #fff;
    background: url(../img/title-bg.png) no-repeat;
    background-size: 100% 100%;
}
.table2 .table-title span:nth-child(1) {
    background: url(../img/title2-bg.png) no-repeat;
    background-size: 100% 100%;
}
.table .table-title span:nth-child(2) {
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: #333;
    background: url(../img/more.png) no-repeat;
    background-size: 100% 100%;
}
.table .table-title span:nth-child(2) a {
    display: inline-block;
    width: 24px;
    height: 24px;
}
.table .table-ul .uli {
    height: 40px;
    line-height: 40px;
}
.table .table-ul .uli a {
    font-size: 18px;
    color: #333;
    display: inline-block;
    width: 550px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 26px;
    position: relative;
}
.table .table-ul .uli a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 4px;
    position: absolute;
    top: 17px;
    left: 10px;
    background-color: #d7d7d7;
}
.table2 .table-ul .uli a::before {
    left: 6px;
}
.table .table2 .table-ul .uli a {
    width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 20px;
}
.table .table-ul .uli a:hover {
    font-weight: 700;
    color: #2d66a5;
}
.table .table-ul .uli a:hover::before {
    background: #2d66a5;
}
