.overflow-x-auto {
    overflow-x: auto;
}

/* 表格 */
table {
    font-size: 15px;
}

table th {
    color: #003B7C;
    font-weight: normal;
}

.t-center {
    vertical-align: middle;
    text-align: center;
}

.t-right {
    vertical-align: middle;
    text-align: right;
}

.t-left {
    vertical-align: middle;
    text-align: left;
}

/* 页面区域标题栏、操作按钮 */
.section-bar {
    width: 100%;
    display: flex;
}

.section-title {
    background: none;
    font-size: 1.1em;
    font-weight: 400;
    color: #00498A;
    padding-bottom: 5px;
    flex: 1 0 auto;
}

.section-actions {
    flex: 0 0 auto;
}

.section-action {
    min-width: 80px;
    height: 32px;
    font-size: 13px;
    color: white;
    background-color: #0064c8;
    border: solid transparent;
    border-radius: 2px;
}

.section-action:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.16);
}

.section-action:active {
    background-color: #183e7a;
    box-shadow: none;
}

/* IAM导航栏 */
.iam-nav {
    padding-left: 15px;
    font-size: 14px;
    background-color: rgba(23, 71, 137, 0.05);
    border-radius: 5px;
}

.iam-nav > .breadcrumb {
    margin-bottom: 10px;
    height: 40px;
    display: flex;
    align-items: center;
}

/* 表单 */
form {
    font-family: ALBB-Regular, monospace;
}

.form-label {
    font-size: 14px;
}

.form-action {
    min-width: 80px;
    height: 32px;
    font-size: 13px;
    border: solid transparent;
    border-radius: 2px;
}

.form-action:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.16);
}

.form-action:active {
    box-shadow: none;
}

.form-action.confirm {
    color: white;
    background-color: #0064c8;
}

.form-action.confirm:active {
    background-color: #183e7a;
}

.form-action.cancel {
    background-color: #f0f0f0;
}

.form-action.cancel:active {
    background-color: #e1e1e1;
}