.record-content {
    height: 350px;
    padding-top: 30px;
}
.operating-record th,
.operating-record td {
    color: #48505d;
    font-size: 14px;
    text-align: left;
    font-family: SourceHanSansSC-regular;
    font-weight: 500;
}
.operating-record th:first-child,
.operating-record td:first-child {
    padding-left: 36px;
}
.operating-record th:nth-child(2),
.operating-record td:nth-child(2) {
    width: 120px;
}
.operating-record th:nth-child(3),
.operating-record td:nth-child(3) {
    width: 203px;
}
.operating-record td:first-child {
    font-weight: bold;
}

.cms-modal-table {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid #bbbbbb;
    overflow: hidden;
}
.cms-modal-table__wrapper {
    height: calc(100% - 50px);
    overflow: auto;
}
.cms-modal-table thead {
    background-color: #fff;
    border-bottom: 1px solid #bbbbbb;
}
.cms-modal-table thead tr {
    height: 50px;
}
.cms-modal-table tbody tr {
    height: 60px;
}
.cms-modal-table tbody tr:nth-child(odd) {
    background-color: rgba(238, 238, 238, 0.4);
}
.cms-modal-table tbody tr:nth-child(even) {
    background-color: #fff;
}
.cms-checkbox:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cms-btn-round {
    width: 80px;
    height: 40px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}
.cms-btn-round-with-icon {
    width: 110px;
    font-weight: normal;
}

.cms-btn-success-solid {
    background-color: #1ab293;
    color: white;
}
.cms-btn-round-with-icon svg {
    margin-right: 10px;
}
.flex {
    display: flex;
}
.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
