body {
    --overall-main-width: 90%;
    --overall-main-max-width: 1700px;
    --md-main-max-width: 1140px;
    --sm-main-max-width: 840px;
    --xs-main-max-width: 90%;
}
.layout-main {
    padding-bottom: 0;
}
.select-table-box::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
.select-table-box::-webkit-scrollbar-track {
    background: #e7ebf0;
}
.select-table-box::-webkit-scrollbar-thumb, .select-table-box::-webkit-scrollbar-thumb:hover, .select-table-box::-webkit-scrollbar-thumb:active {
    background-color: #c5d7ea;
    background: #c5d7ea;
    border-radius: 12px;
    border: 2px solid #e7ebf0;
}
.select-table-box {
    scrollbar-width: 12px;
    scrollbar-color: #c5d7ea #e7ebf0;
}
.select-page-main {
    margin: 0;
    padding: 0;
    line-height: 24px;
}
.select-page-content {
    width: var(--overall-main-width);
    max-width: var(--overall-main-max-width);
    margin: 60px auto;
}
.select-table-header {
    width: 95%;
    margin: 0 auto;
    text-align: center;
}
.select-table-header p {
    padding: 0 0 15px;
    font-size: 30px;
    font-weight: 700;
    line-height: 44px;
    color: #000;
}
.select-table-header span {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}
.select-table-box {
    position: relative;
    width: auto;
    margin-top: 30px;
    max-height: calc(100vh - 160px);
    padding-bottom: 4px;
    overflow: auto;
}
.table-mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 120px;
    background: linear-gradient(to left,rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    pointer-events: none;
    opacity: 0;
    z-index: 10;
}
.table-mask-visible {
    opacity: 1;
}
.select-table-tb {
    border-collapse: separate;
    border-spacing: 0;
    width: auto;
    margin: 0 auto;
    color: #333;
    font-size: 16px;
    text-align: center;
}
.select-table-tb thead th:last-child {
    border-top-right-radius: 4px;
}
.select-table-tb thead th:nth-child(2) {
    border-top-left-radius: 4px;
}
.select-table-tb tbody tr:first-child td:first-child {
    border-top-left-radius: 4px;
}
.select-table-tb tbody tr:first-child td:first-child::before {
    content: "";
    position: absolute;
    left: -4px;
    top: -4px;
    width: 5px;
    height: 4px;
    background: #fff;
}
.select-table-tb tbody tr:last-child td:first-child {
    border-bottom-left-radius: 4px;
}
.select-table-tb tbody tr:last-child td:first-child::before {
    content: "";
    position: absolute;
    left: -4px;
    bottom: -4px;
    width: 5px;
    height: 4px;
    background: #fff;
}
.select-table-tb tbody tr:last-child td:last-child {
    border-bottom-right-radius: 4px;
}
.select-table-tb tbody td {
    border: 1px solid #dddcdc;
}
.select-table-tb tbody tr td:not(:first-child) {
    border-left: none;
}
.select-table-tb tbody tr:not(:first-child) td {
    border-top: none;
}
.select-table-tb th {
    position: sticky;
    top: 0;
    padding: 6px 8px 8px;
    border-top: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    z-index: 10;
}
.select-table-tb th:first-child {
    width: auto!important;
    left: 0;
    background: #fff!important;
    border: none!important;
    border-radius: unset;
    z-index: 15;
}
.select-table-tb td:first-child {
    position: sticky;
    left: 0;
    text-align: left;
    background-color: #fff;
    border-right: none;
}
.select-table-tb td:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    right: -8px;
    bottom: 0;
    width: 8px;
    background: linear-gradient(to right,rgba(0,0,0,.25),rgba(196,196,196,0));
}
.select-table-tb td:first-child .select-1stcol-content {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 8px 12px 5px;
}
.select-table-tb th:nth-child(odd) {
    background: linear-gradient(to bottom,#3990c9,#75caf0);
    background: -webkit-linear-gradient(to bottom,#3990c9,#75caf0);
    background: -moz-linear-gradient(to bottom,#3990c9,#75caf0);
    background: -o-linear-gradient(to bottom,#3990c9,#75caf0);
    background: -ms-linear-gradient(to bottom,#3990c9,#75caf0);
}
.select-table-tb th:nth-child(even) {
    background: linear-gradient(to bottom,#2d80c1,#76b6e2);
    background: -webkit-linear-gradient(to bottom,#2d80c1,#76b6e2);
    background: -moz-linear-gradient(to bottom,#2d80c1,#76b6e2);
    background: -o-linear-gradient(to bottom,#2d80c1,#76b6e2);
    background: -ms-linear-gradient(to bottom,#2d80c1,#76b6e2);
}
.td-data-check {
    background-color: #f2faff;
}
.select-table-tb th a {
    color: #fff;
    text-decoration: underline;
}
.select-table-tb td a {
    color: #333;
    text-decoration: underline;
}
@media screen and (max-width: 1300px) {
    .select-page-content {
        max-width: var(--md-main-max-width);
    }
}
@media screen and (max-width: 992px) {
    .select-page-content {
        max-width: var(--sm-main-max-width);
    }
}
@media screen and (max-width: 768px) {
    .layout-footer {
        margin-top: 30px;
    }
    .select-page-main {
        line-height: 18px;
    }
    .select-page-content {
        max-width: var(--xs-main-max-width);
        margin-top: 30px;
        margin-bottom: 0;
    }
    .select-table-header p {
        padding-bottom: 10px;
        font-size: 24px;
        line-height: 32px;
    }
    .select-table-header span {
        font-size: 12px;
        line-height: 16px;
    }
    .select-table-box {
        margin-top: 24px;
    }
    .table-mask {
        width: 90px;
    }
    .select-table-tb {
        font-size: 12px;
        color: #38393a;
    }
    .select-table-tb th {
        padding: 6px 8px;
        font-size: 12px;
    }
    .select-table-tb td:first-child .select-1stcol-content {
        padding: 6px 6px 4px;
        font-size: 12px;
    }
    .select-table-tb td a {
        color: #38393a;
    }
    .select-table-tb td svg {
        width: 13px;
        height: 10px;
    }
}