* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Source Han sans-serif;
}

body {
    background: #F5F5F5;
}

.titleBox {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    font-weight: 700;
    font-size: 28px;
    color: #333333;
    line-height: 28px;
    text-align: center;
}

.titleBox>p {
    font-weight: 400;
    font-size: 16px;
    color: #3D3D3D;
    line-height: 16px;
    text-align: center;
}

.mainBox {
    margin: 60px 0;
    padding: 0 calc((100% - 1200px)/2);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.mainBox .lNav {
    flex: 1;
    background: #ffffff;
    border-radius: 4px 4px 4px 4px;
    user-select: none;
}

.mainBox .lNav .option {
    padding: 20px;
    font-weight: 350;
    font-size: 20px;
    color: #666666;
    line-height: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mainBox .lNav .active {
    font-weight: 500;
    font-size: 20px;
    color: #0099AD;
    line-height: 20px;
}

.mainBox .lNav .active::after {
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background: url(/static/v2/img/quatifications/icon1.png) no-repeat;
    background-size: 100% 100%;
}

.mainBox .rInfo {
    flex-basis: 890px;
    background: #FFFFFF;
    border-radius: 4px 4px 4px 4px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.mainBox .rInfo .table-container {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #D8D8D8;
}

.mainBox .rInfo .custom-table {
    width: 100%;
    border-spacing: 0;
    font-weight: 350;
    font-size: 18px;
    color: #333333;
    text-align: left;
}

.mainBox .rInfo .custom-table thead th,
.mainBox .rInfo .custom-table thead td {
    font-size: 18px;
    font-weight: 550;
}

.mainBox .rInfo .custom-table th,
.mainBox .rInfo .custom-table td {
    border-right: 1px solid #D8D8D8;
    padding: 12px;
    vertical-align: middle;
    text-align: center;
    height: 60px;
    font-size: 16px;
    font-weight: 350;
}

.mainBox .rInfo .custom-table td p {
    white-space: nowrap;
}

.mainBox .rInfo .custom-table th {
    background-color: #F5F5F5;
    font-weight: 350;
}

.mainBox .rInfo .custom-table tbody tr:nth-child(odd) {
    background-color: #FFFFFF;
}

.mainBox .rInfo .custom-table tbody tr:nth-child(even) {
    background-color: #F5F5F5;
}

.mainBox .rInfo .custom-table th:first-child,
.mainBox .rInfo .custom-table td:first-child {
    width: 140px;
}

.mainBox .rInfo .custom-table th:nth-child(2),
.mainBox .rInfo .custom-table td:nth-child(2) {
    width: 105px;
}

.mainBox .rInfo .custom-table th:nth-child(3),
.mainBox .rInfo .custom-table td:nth-child(3) {
    width: 141px;
}

.mainBox .rInfo .custom-table th:nth-child(4),
.mainBox .rInfo .custom-table td:nth-child(4) {
    width: 209px;
}

.mainBox .rInfo .custom-table th:nth-child(5),
.mainBox .rInfo .custom-table td:nth-child(5) {
    width: 253px;
}

.mainBox .rInfo .custom-table th:last-child,
.mainBox .rInfo .custom-table td:last-child {
    border-right: none;
}

.mainBox .rInfo .images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.mainBox .rInfo .images .imgBox {
    flex: 0 0 calc((100% - 40px)/3);
    width: 270px;
    height: 362px;
    background: #FFFFFF;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #D8D8D8;
    cursor: pointer;
}

.mainBox .rInfo .images .imgBox>img {
    display: block;
    margin: 24px auto 0;
    width: 222px;
    height: 259px;

}

.mainBox .rInfo .images .imgBox>p {
    height: 62px;
    width: 200px;
    margin: 0px auto 0;
    font-weight: 350;
    font-size: 16px;
    color: #3D3D3D;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainBox .rInfo .images .imgBox:hover>p {
    color: #0099AD;
}