:root {
    --gov-primary: #1557b0;
    --gov-primary-hover: #0f458f;
    --gov-primary-soft: #eaf2fc;
    --gov-navy: #102b4e;
    --gov-sidebar: #153a65;
    --gov-sidebar-deep: #102f55;
    --gov-text: #1f2d3d;
    --gov-text-secondary: #586b82;
    --gov-text-muted: #7b8ca3;
    --gov-bg: #f3f6fa;
    --gov-surface: #ffffff;
    --gov-border: #dce4ee;
    --gov-border-strong: #c7d3e1;
    --gov-success: #168363;
    --gov-warning: #b35c08;
    --gov-danger: #c23b3b;
    --gov-info: #176b9b;
    --gov-radius-sm: 4px;
    --gov-radius: 6px;
    --gov-radius-lg: 10px;
    --gov-shadow: 0 2px 10px rgba(16, 43, 78, 0.06);
}

html,
body {
    font-family: "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
    color: var(--gov-text);
    background: var(--gov-bg);
}

body {
    font-size: 14px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--gov-text);
    font-weight: 600;
}

a {
    color: var(--gov-primary);
}

a:hover,
a:focus {
    color: var(--gov-primary-hover);
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
[tabindex]:focus {
    outline: 2px solid rgba(21, 87, 176, 0.28);
    outline-offset: 1px;
}

.gray-bg {
    background-color: var(--gov-bg);
}

.white-bg {
    background-color: var(--gov-surface);
}

.border-bottom {
    border-bottom-color: var(--gov-border) !important;
}

.wrapper-content {
    padding: 20px;
}

.form-control,
.single-line,
.select2-container--bootstrap .select2-selection,
.bootstrap-select.form-control .btn-default {
    min-height: 34px;
    color: var(--gov-text);
    background: var(--gov-surface);
    border: 1px solid var(--gov-border-strong);
    border-radius: var(--gov-radius-sm) !important;
    box-shadow: none;
}

.form-control:focus,
.single-line:focus,
.select2-container--bootstrap.select2-container--focus .select2-selection,
.select2-container--bootstrap.select2-container--open .select2-selection {
    border-color: var(--gov-primary) !important;
    box-shadow: 0 0 0 3px rgba(21, 87, 176, 0.12) !important;
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
    color: #8b99aa;
}

.form-group {
    margin-bottom: 18px;
}

.control-label {
    color: #344861;
    font-weight: 500;
}

.control-label.is-required:before {
    color: var(--gov-danger);
}

.btn {
    min-height: 32px;
    padding: 6px 14px;
    border-radius: var(--gov-radius-sm);
    font-weight: 500;
    box-shadow: none;
    transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.btn-sm,
.btn-group-sm > .btn {
    min-height: 30px;
    padding: 4px 11px;
}

.btn-xs {
    min-height: 26px;
    padding: 3px 8px;
}

.btn-rounded {
    border-radius: var(--gov-radius-sm);
}

.btn-primary,
.btn-success {
    color: #fff;
    background-color: var(--gov-primary);
    border-color: var(--gov-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary,
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
    color: #fff;
    background-color: var(--gov-primary-hover);
    border-color: var(--gov-primary-hover);
}

.btn-info {
    background-color: var(--gov-info);
    border-color: var(--gov-info);
}

.btn-warning {
    background-color: var(--gov-warning);
    border-color: var(--gov-warning);
}

.btn-danger {
    background-color: var(--gov-danger);
    border-color: var(--gov-danger);
}

.btn-default {
    color: #344861;
    background: #fff;
    border-color: var(--gov-border-strong);
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active {
    color: var(--gov-primary);
    background: var(--gov-primary-soft);
    border-color: #9bb9dd;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    opacity: 0.55;
}

.dropdown-menu {
    padding: 6px;
    border: 1px solid var(--gov-border);
    border-radius: var(--gov-radius);
    box-shadow: 0 8px 24px rgba(16, 43, 78, 0.14);
}

.dropdown-menu > li > a {
    margin: 1px 0;
    padding: 7px 12px;
    color: var(--gov-text);
    border-radius: var(--gov-radius-sm);
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    color: var(--gov-primary);
    background: var(--gov-primary-soft);
}

.panel,
.ibox,
.ibox-content,
.main-content,
.nav-tabs-custom {
    border-color: var(--gov-border);
    border-radius: var(--gov-radius);
    box-shadow: var(--gov-shadow);
}

.ibox {
    margin-bottom: 20px;
    border: 1px solid var(--gov-border);
}

.ibox-title,
.ibox-title-gray,
.panel-heading {
    min-height: 46px;
    color: var(--gov-text);
    background: #f8fafc;
    border-color: var(--gov-border);
    border-radius: var(--gov-radius) var(--gov-radius) 0 0;
}

.ibox-title {
    padding: 13px 18px;
}

.ibox-content {
    padding: 18px;
    border: 1px solid var(--gov-border);
    border-top: 0;
}

.nav-tabs {
    border-bottom-color: var(--gov-border);
}

.nav-tabs > li > a {
    color: var(--gov-text-secondary);
    border-radius: var(--gov-radius-sm) var(--gov-radius-sm) 0 0;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: var(--gov-primary);
    font-weight: 600;
    border-color: var(--gov-border) var(--gov-border) #fff;
}

.label {
    border-radius: 3px;
    font-weight: 500;
}

.label-primary,
.label-success {
    background-color: var(--gov-primary);
}

.pagination > li > a,
.pagination > li > span {
    min-width: 34px;
    color: #42556d;
    border-color: var(--gov-border);
    text-align: center;
}

.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > .active > a:focus,
.pagination > .active > span {
    background-color: var(--gov-primary);
    border-color: var(--gov-primary);
}

.modal-content {
    border: 1px solid var(--gov-border);
    border-radius: var(--gov-radius-lg);
    box-shadow: 0 18px 48px rgba(16, 43, 78, 0.18);
}

.modal-header,
.modal-footer {
    border-color: var(--gov-border);
}

/* 主框架 */
body.full-height-layout #wrapper,
#wrapper {
    background: var(--gov-sidebar-deep);
}

body .navbar-static-side,
body.canvas-menu nav.navbar-static-side {
    width: 200px;
    background: var(--gov-sidebar-deep);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

body.fixed-sidebar .navbar-static-side,
body.canvas-menu .navbar-static-side {
    width: 200px;
    background: var(--gov-sidebar-deep) !important;
}

#page-wrapper {
    margin-left: 200px;
    padding: 0;
    background: var(--gov-bg);
}

nav .logo {
    width: 200px;
    height: 52px;
    padding: 0 16px;
    line-height: 52px;
    background: var(--gov-navy) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-align: left;
}

.logo-lg {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-collapse .user-panel {
    min-height: 78px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.035);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

body.theme-dark .sidebar-collapse .user-panel,
body.theme-light .sidebar-collapse .user-panel,
body.theme-blue .sidebar-collapse .user-panel {
    background: rgba(255, 255, 255, 0.035);
}

.sidebar-collapse .user-panel .image > img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.72);
}

.sidebar-collapse .user-panel > .info {
    left: 60px;
    padding-top: 6px;
}

.sidebar-collapse .user-panel > .info > p {
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 600;
}

.sidebar-collapse .user-panel > .info a {
    color: #c7d8eb;
}

.navbar-default .nav > li {
    margin: 3px 10px;
    border: 0;
    border-radius: var(--gov-radius);
}

body .navbar-static-side .nav > li > a {
    min-height: 44px;
    padding: 11px 14px;
    color: #c8d6e8;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--gov-radius);
}

body .navbar-static-side .nav > li > a > i {
    width: 20px;
    margin-right: 8px;
    color: #9fb9d7;
    text-align: center;
}

body .navbar-static-side .nav > li > a:hover,
body .navbar-static-side .nav > li > a:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.09) !important;
}

body.theme-dark .navbar-static-side .nav:not(.navbar-toolbar) > li.active,
body.theme-light .navbar-static-side .nav:not(.navbar-toolbar) > li.active,
body.theme-blue .navbar-static-side .nav:not(.navbar-toolbar) > li.active,
body .navbar-static-side .nav > li.selected {
    background: transparent !important;
}

body .navbar-static-side .nav > li.active > a,
body .navbar-static-side .nav > li.selected > a,
body .navbar-static-side .nav > li.selected > a:focus,
.skin-blue .navbar-default .nav > li.selected > a,
.skin-green .navbar-default .nav > li.selected > a,
.skin-red .navbar-default .nav > li.selected > a,
.skin-yellow .navbar-default .nav > li.selected > a,
.skin-purple .navbar-default .nav > li.selected > a {
    color: #fff;
    background: var(--gov-primary) !important;
    box-shadow: inset 3px 0 0 #8fbeff;
}

body .navbar-static-side .nav > li.active > a > i,
body .navbar-static-side .nav > li.selected > a > i {
    color: #fff;
}

.nav-second-level {
    padding: 5px 0 8px;
}

.nav-second-level li,
.nav-third-level li {
    margin: 0;
}

body .navbar-static-side .nav-second-level li a {
    padding: 9px 14px 9px 45px;
    color: #b6c9df;
    font-size: 13px;
    font-weight: 400;
}

.nav-third-level li a {
    padding-left: 62px;
}

body .navbar-static-side .nav-second-level li a:hover,
body .navbar-static-side .nav-second-level li a:focus,
body .navbar-static-side .nav-second-level li.active > a {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.row.border-bottom > .navbar-static-top {
    min-height: 52px;
    background: #fff !important;
    border-bottom: 1px solid var(--gov-border) !important;
    box-shadow: 0 1px 5px rgba(16, 43, 78, 0.04);
}

.navbar-header {
    height: 52px;
}

.minimalize-styl-2 {
    width: 36px;
    height: 36px;
    margin: 8px 0 0 14px;
    padding: 7px 0;
    color: var(--gov-primary) !important;
    background: var(--gov-primary-soft);
    border: 1px solid #d1e1f4;
    border-radius: var(--gov-radius);
    text-align: center;
}

.minimalize-styl-2:hover,
.minimalize-styl-2:focus {
    color: #fff !important;
    background: var(--gov-primary);
    border-color: var(--gov-primary);
}

.nav.navbar-top-links > li > a {
    height: 52px;
    padding: 14px 14px;
    color: #42556d !important;
    font-size: 14px;
    font-weight: 400;
}

.nav.navbar-top-links > li > a:hover,
.nav.navbar-top-links > li > a:focus,
.nav.navbar-top-links .open > a {
    color: var(--gov-primary) !important;
    background: var(--gov-primary-soft) !important;
}

.navbar-right > .user-menu .user-image {
    width: 30px;
    height: 30px;
    margin-top: -3px;
    object-fit: cover;
    border: 1px solid var(--gov-border);
}

.navbar-right > .user-menu > .dropdown-menu {
    width: 156px;
    padding: 6px;
    border: 1px solid var(--gov-border);
    border-radius: 0 0 var(--gov-radius) var(--gov-radius);
}

.content-tabs {
    height: 39px;
    line-height: 39px;
    background: #fff !important;
    border-bottom: 1px solid var(--gov-border);
}

.content-tabs .roll-nav,
.page-tabs-list,
.roll-right.tabReload {
    height: 38px;
    color: var(--gov-text-secondary);
    background: #fff;
    border-color: var(--gov-border);
}

.content-tabs button {
    height: 38px;
    background: #fff;
}

nav.page-tabs {
    height: 38px;
}

.page-tabs a {
    height: 38px;
    padding: 0 16px;
    color: var(--gov-text-secondary);
    border-right: 1px solid var(--gov-border);
}

.page-tabs a:hover,
.content-tabs .roll-nav:hover {
    color: var(--gov-primary);
    background: #f6f9fd;
}

.page-tabs a.active,
.page-tabs a.active:hover,
.page-tabs a.active i:hover {
    color: var(--gov-primary);
    background: var(--gov-primary-soft);
    box-shadow: inset 0 -2px 0 var(--gov-primary);
}

.mainContent {
    background: var(--gov-bg);
}

.footer {
    color: var(--gov-text-muted);
    background: #fff;
    border-color: var(--gov-border);
}

body.mini-navbar .navbar-static-side,
body.fixed-sidebar.mini-navbar .navbar-static-side {
    width: 70px;
}

body.mini-navbar #page-wrapper,
body.fixed-sidebar.mini-navbar #page-wrapper {
    margin-left: 70px;
}

body.mini-navbar nav .logo {
    width: 70px;
    padding: 0;
}

body.mini-navbar .logo-lg {
    display: none;
}

body.mini-navbar .navbar-default .nav > li {
    margin: 3px 8px;
}

body.mini-navbar .navbar-default .nav > li > a {
    padding: 11px 14px;
    text-align: center;
}

body.mini-navbar .navbar-default .nav > li > a > i {
    margin-right: 0;
}

.fixed-sidebar.mini-navbar .nav li:hover > .nav-second-level,
.fixed-sidebar.mini-navbar .nav li:hover > a > span.nav-label {
    left: 70px;
    color: #fff;
    background: var(--gov-sidebar-deep);
    border-radius: 0 var(--gov-radius) var(--gov-radius) 0;
    box-shadow: 0 8px 22px rgba(9, 29, 52, 0.24);
}

/* 业务内容页 */
.container-div {
    padding: 14px 22px 22px;
}

.search-collapse,
.select-table {
    margin-top: 0;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--gov-border);
    border-radius: var(--gov-radius);
    box-shadow: var(--gov-shadow);
}

.select-table {
    margin-top: 14px;
    padding-top: 4px;
}

.search-collapse:before {
    display: block;
    margin-bottom: 10px;
    color: var(--gov-text);
    content: "查询条件";
    font-size: 15px;
    font-weight: 600;
}

.select-list li {
    margin: 5px 18px 7px 0;
    color: var(--gov-text);
}

.select-list li p,
.select-list li label:not(.radio-box) {
    width: 78px;
    margin-top: 7px;
    color: #42556d;
    font-weight: 500;
}

.select-list li input,
.select-list li select,
.select-list .btn-default {
    width: 210px;
    height: 32px;
    padding: 5px 9px;
    color: var(--gov-text);
    background: #fff;
    border: 1px solid var(--gov-border-strong);
    border-radius: var(--gov-radius-sm);
}

.select-list .select2-container--bootstrap,
.select-list .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 210px !important;
    height: 32px;
}

.select-list .select2-container--bootstrap .select2-selection--single {
    height: 32px !important;
    padding: 5px 9px;
}

.select-list .select-time input {
    width: 98px;
}

#toolbar {
    margin: 14px 0 0;
}

#toolbar .btn {
    margin-right: 5px;
    margin-bottom: 6px;
}

.fixed-table-toolbar .columns-right,
.fixed-table-toolbar .search {
    margin-top: 10px;
}

.table-striped table thead,
.bootstrap-tree-table .treetable-thead {
    background: #edf3fa;
}

.table-striped .table > thead > tr > th,
.table > thead > tr > th {
    height: 44px;
    color: #2c425c;
    font-weight: 600;
    background: #edf3fa;
    border-bottom: 1px solid #cdd9e7 !important;
}

.table > tbody > tr > td {
    height: 44px;
    color: #344861;
    border-top: 1px solid #e5ebf2;
}

.table-hover > tbody > tr:hover > td,
.bootstrap-table .table-hover > tbody > tr.hover > td {
    background: #f3f7fc;
}

.bootstrap-table .fixed-table-container .table tbody tr.selected td {
    color: var(--gov-primary);
    background: #e9f2fd;
}

.fixed-table-container {
    border-radius: var(--gov-radius);
}

.fixed-table-pagination {
    color: var(--gov-text-secondary);
}

.fixed-table-pagination .pagination-detail,
.fixed-table-pagination div.pagination {
    margin-top: 14px;
}

.fixed-table-toolbar .btn-group > .btn,
.fixed-table-toolbar .columns > .btn {
    min-height: 32px;
}

/* 登录页 */
body.signin.gov-login {
    min-height: 100%;
    color: var(--gov-text);
    background: #eef3f9;
}

.gov-login:before {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: var(--gov-primary);
    content: "";
    z-index: 10;
}

.gov-login-shell {
    display: flex;
    min-height: 100vh;
    padding: 48px;
    align-items: center;
    justify-content: center;
}

.gov-login-panel {
    display: flex;
    width: 100%;
    max-width: 1080px;
    min-height: 610px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--gov-border);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(16, 43, 78, 0.13);
}

.gov-login-brand {
    position: relative;
    display: flex;
    width: 52%;
    padding: 66px 60px;
    color: #fff;
    background: var(--gov-navy);
    flex-direction: column;
    justify-content: space-between;
}

.gov-login-brand:after {
    position: absolute;
    right: -110px;
    bottom: -150px;
    width: 390px;
    height: 390px;
    border: 72px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    content: "";
}

.gov-login-badge {
    display: inline-flex;
    width: 50px;
    height: 50px;
    margin-bottom: 28px;
    color: #fff;
    background: var(--gov-primary);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.gov-login-eyebrow {
    margin-bottom: 12px;
    color: #9fc3ed;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.gov-login-brand h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.04em;
}

.gov-login-brand p {
    max-width: 380px;
    margin: 0;
    color: #ccdaea;
    font-size: 15px;
    line-height: 1.9;
}

.gov-login-principles {
    position: relative;
    z-index: 1;
    display: flex;
    margin: 36px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    list-style: none;
}

.gov-login-principles li {
    margin-right: 24px;
    color: #dce8f5;
    font-size: 13px;
}

.gov-login-principles i {
    margin-right: 6px;
    color: #8fbeff;
}

.gov-login-form-wrap {
    display: flex;
    width: 48%;
    padding: 62px 66px;
    background: #fff;
    flex-direction: column;
    justify-content: center;
}

.gov-login-form-wrap #signupForm {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.gov-login-form-wrap h2 {
    margin: 0 0 8px;
    color: var(--gov-text);
    font-size: 25px;
}

.gov-login-form-wrap .gov-login-subtitle {
    margin: 0 0 32px;
    color: var(--gov-text-secondary);
}

.gov-field {
    margin-bottom: 20px;
}

.gov-field label {
    display: block;
    margin-bottom: 8px;
    color: #344861;
    font-weight: 500;
}

.gov-input-wrap {
    position: relative;
}

.gov-input-wrap > i {
    position: absolute;
    top: 13px;
    left: 14px;
    color: #71849a;
    font-size: 15px;
    z-index: 2;
}

.gov-login-form-wrap .form-control,
.gov-login-form-wrap .uname,
.gov-login-form-wrap .pword,
.gov-login-form-wrap .code {
    width: 100%;
    height: 46px !important;
    margin: 0;
    padding: 10px 14px 10px 42px !important;
    color: var(--gov-text);
    background: #fff !important;
    border: 1px solid var(--gov-border-strong);
    border-radius: var(--gov-radius) !important;
}

.gov-login-form-wrap .gov-captcha-input {
    padding-left: 42px !important;
}

.gov-captcha-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.gov-captcha-row .gov-field {
    margin-bottom: 0;
    flex: 1;
}

.gov-captcha-image {
    display: flex;
    width: 128px;
    height: 46px;
    overflow: hidden;
    background: #f4f7fa;
    border: 1px solid var(--gov-border-strong);
    border-radius: var(--gov-radius);
    align-items: center;
    justify-content: center;
}

.gov-captcha-image img {
    width: 100%;
    height: 44px;
    object-fit: cover;
}

.gov-login-options {
    display: flex;
    min-height: 28px;
    margin: 20px 0;
    color: var(--gov-text-secondary);
    align-items: center;
    justify-content: space-between;
}

.gov-login-options .checkbox-custom {
    margin: 0;
}

.gov-login-options .checkbox-custom label:before {
    border-color: var(--gov-border-strong);
    border-radius: 3px;
}

.gov-login-options .checkbox-custom input[type="checkbox"]:checked + label:after {
    color: var(--gov-primary);
}

.gov-login-form-wrap #btnSubmit {
    width: 100%;
    height: 46px;
    margin-top: 0;
    color: #fff;
    background: var(--gov-primary);
    border: 1px solid var(--gov-primary);
    border-radius: var(--gov-radius);
    font-size: 15px;
    font-weight: 600;
}

.gov-login-form-wrap #btnSubmit:hover,
.gov-login-form-wrap #btnSubmit:focus {
    background: var(--gov-primary-hover);
    border-color: var(--gov-primary-hover);
}

.gov-login-register {
    margin-top: 22px;
    color: var(--gov-text-secondary);
    text-align: center;
}

.gov-login-register a {
    font-weight: 600;
}

.gov-login-notice {
    margin-top: 28px;
    padding-top: 20px;
    color: var(--gov-text-muted);
    border-top: 1px solid var(--gov-border);
    font-size: 12px;
    line-height: 1.7;
}

/* 首页工作台 */
body.gov-dashboard {
    min-height: 100%;
    background: var(--gov-bg);
}

.gov-dashboard-wrap {
    max-width: 1480px;
    margin: 0 auto;
    padding: 24px;
}

.gov-dashboard-hero {
    position: relative;
    overflow: hidden;
    padding: 30px 34px;
    color: #fff;
    background: var(--gov-navy);
    border-radius: var(--gov-radius-lg);
    box-shadow: var(--gov-shadow);
}

.gov-dashboard-hero:after {
    position: absolute;
    top: -95px;
    right: -70px;
    width: 300px;
    height: 300px;
    border: 55px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    content: "";
}

.gov-dashboard-hero small {
    display: block;
    margin-bottom: 10px;
    color: #9fc3ed;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.gov-dashboard-hero h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.gov-dashboard-hero p {
    max-width: 760px;
    margin: 0;
    color: #cfdeee;
    font-size: 14px;
    line-height: 1.8;
}

.gov-dashboard-version {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: 18px;
    padding: 5px 11px;
    color: #dceaff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--gov-radius-sm);
    font-size: 12px;
}

.gov-section-title {
    display: flex;
    margin: 26px 0 14px;
    align-items: center;
    justify-content: space-between;
}

.gov-section-title h2 {
    margin: 0;
    font-size: 18px;
}

.gov-section-title span {
    color: var(--gov-text-muted);
    font-size: 13px;
}

.gov-module-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gov-module-card {
    min-height: 168px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--gov-border);
    border-radius: var(--gov-radius-lg);
    box-shadow: var(--gov-shadow);
}

.gov-module-icon {
    display: flex;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    color: var(--gov-primary);
    background: var(--gov-primary-soft);
    border: 1px solid #d3e3f6;
    border-radius: var(--gov-radius);
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.gov-module-card h3 {
    margin: 0 0 8px;
    color: var(--gov-text);
    font-size: 16px;
}

.gov-module-card p {
    margin: 0;
    color: var(--gov-text-secondary);
    font-size: 13px;
    line-height: 1.7;
}

.gov-dashboard-note {
    display: flex;
    margin-top: 18px;
    padding: 17px 20px;
    color: #41556d;
    background: #fff;
    border: 1px solid var(--gov-border);
    border-left: 3px solid var(--gov-primary);
    border-radius: var(--gov-radius);
    align-items: center;
}

.gov-dashboard-note i {
    margin-right: 10px;
    color: var(--gov-primary);
    font-size: 17px;
}

@media (max-width: 1100px) {
    .gov-login-shell {
        padding: 28px;
    }

    .gov-login-brand {
        padding: 54px 42px;
    }

    .gov-login-form-wrap {
        padding: 52px 44px;
    }

    .gov-module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body.fixed-sidebar .navbar-static-side,
    body.fixed-sidebar.mini-navbar .navbar-static-side {
        width: 220px;
    }

    #page-wrapper,
    body.fixed-sidebar.mini-navbar #page-wrapper {
        margin-left: 0;
    }

    .gov-login-shell {
        min-height: 100vh;
        padding: 18px;
    }

    .gov-login-panel {
        min-height: auto;
        flex-direction: column;
    }

    .gov-login-brand,
    .gov-login-form-wrap {
        width: 100%;
    }

    .gov-login-brand {
        padding: 32px 28px;
    }

    .gov-login-brand h1 {
        font-size: 26px;
    }

    .gov-login-brand p,
    .gov-login-principles {
        display: none;
    }

    .gov-login-badge {
        width: 42px;
        height: 42px;
        margin-bottom: 18px;
    }

    .gov-login-form-wrap {
        padding: 34px 28px;
    }

    .container-div {
        padding: 10px 12px 16px;
        overflow-x: hidden;
    }

    .container-div > .row,
    .container-div .row {
        margin-right: 0;
        margin-left: 0;
    }

    .container-div .search-collapse,
    .container-div .select-table {
        right: auto;
        left: auto;
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .search-collapse {
        display: block;
    }

    .select-list li,
    .select-list li input,
    .select-list li select,
    .select-list .btn-default,
    .select-list .select2-container--bootstrap {
        width: 100% !important;
        float: none;
    }

    .select-list li p,
    .select-list li label:not(.radio-box) {
        width: auto;
        margin-bottom: 5px;
        float: none;
        text-align: left;
    }

    .select-list .select-time input {
        width: calc(50% - 12px) !important;
        float: left;
    }

    .select-time span {
        float: left;
    }

    .gov-dashboard-wrap {
        padding: 14px;
    }

    .gov-dashboard-hero {
        padding: 24px;
    }
}

@media (max-width: 520px) {
    .gov-login-shell {
        padding: 0;
        align-items: stretch;
    }

    .gov-login-panel {
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .gov-login-brand {
        padding: 30px 22px;
    }

    .gov-login-form-wrap {
        padding: 32px 22px;
    }

    .gov-captcha-row {
        align-items: stretch;
        flex-direction: column;
    }

    .gov-captcha-image {
        width: 100%;
    }

    .gov-module-grid {
        grid-template-columns: 1fr;
    }
}

body .layui-layer,
body .layer-ext-moon {
    border-radius: var(--gov-radius-lg) !important;
    box-shadow: 0 18px 48px rgba(16, 43, 78, 0.2) !important;
}

body .layui-layer .layui-layer-title,
body .layer-ext-moon .layui-layer-title {
    height: 48px !important;
    line-height: 48px !important;
    padding-left: 18px !important;
    color: var(--gov-text) !important;
    background: #f7f9fc !important;
    border-bottom: 1px solid var(--gov-border) !important;
    border-radius: var(--gov-radius-lg) var(--gov-radius-lg) 0 0 !important;
    font-weight: 600;
}

body .layui-layer .layui-layer-btn a,
body .layer-ext-moon .layui-layer-btn a {
    height: 34px !important;
    line-height: 32px !important;
    padding: 0 16px !important;
    border-radius: var(--gov-radius-sm) !important;
}

body .layui-layer .layui-layer-btn .layui-layer-btn0,
body .layer-ext-moon .layui-layer-btn .layui-layer-btn0 {
    background: var(--gov-primary) !important;
    border-color: var(--gov-primary) !important;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #edf1f6;
}

::-webkit-scrollbar-thumb {
    background: #aab9ca;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #879bb1;
}

@media (max-width: 767px) {
    .wrapper-content {
        padding: 12px;
    }

    .form-group {
        margin-bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
