main {
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.main-title {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: 21px;
    line-height: 18px;
    padding-bottom: 25px;
    margin-bottom: 41px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    color: rgba(0,0,0,0.65);
}
.main-title .title-right {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #045AFE;
}
.main-title .title-right a {
    position: relative;
    padding-right: 10px;
    padding-left: 10px;
}
.main-title .title-right a::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: '';
    display: inline-block;
    width: 1px;
    height: 16px;
    background-color: rgba(0,0,0,0.35);
}
.main-title .title-right a:last-of-type::after {
    display: none;
}

.table-container {
    margin-bottom:25px ;
    width: 100%;
    border-collapse: collapse;
}
.table-container th, .table-container td {
    border: 1px solid #9BB8FF;
    padding: 17px 32px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    box-sizing: border-box;
    /*color: rgba(0,0,0,0.65);*/
}
.table-container th {
    width: 180px;
    background-color: #EEF4FF;
    text-align: left;
    color: rgba(0,0,0,0.85);
}








