.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Microsoft Yahei";
}
/* ========================================================================
   Component: Base
 ========================================================================== */
/*
 * 1. Set `font-size` to support `rem` units
 *    Not using `font` property because a leading hyphen (e.g. -apple-system) causes the font to break in IE11 and Edge
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 * 3. Style
 */
html {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 3 */
  color: #666;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
/*
   * Removes default margin.
   */
body {
  margin: 0;
  font-size: 14px;
  color: #666;
  background-color: #f5f7f9;
}
/* Links
   ========================================================================== */
/*
   * 1. Remove the gray background on active links in IE 10.
   * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
   */
a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects;
}
/*
   * Remove the outline on focused links when they are also active or hovered
   */
a:active,
a:hover {
  outline: none;
}
/*
   * Style
   */
a,
.uk-link {
  color: #235ff5;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.uk-link:hover {
  color: #3390ff;
}
/* Text-level semantics
   ========================================================================== */
/*
   * 1. Remove the bottom border in Firefox 39-.
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/*
   * 1. Prevent the duplicate application of `bolder` by the next rule in Safari 6.
   * 2. Add the correct font weight in Chrome, Edge, and Safari.
   */
/* 1 */
b,
strong {
  font-weight: inherit;
}
/* 2 */
b,
strong {
  font-weight: bolder;
}
/*
   * 1. Correct the odd `em` font sizing in all browsers.
   * 2. Consolas has a better baseline in running text compared to `Courier`
   * 3. Style
   */
:not(pre) > code,
:not(pre) > kbd,
:not(pre) > samp {
  /* 1 */
  font-size: 11px;
  /* 2 */
  font-family: Consolas, monaco, monospace;
  /* 3 */
  color: #435DBA;
  white-space: nowrap;
  padding: 2px 6px;
  border: 1px solid #EBEBED;
  border-radius: 3px;
}
/*
   * Emphasize
   */
em {
  color: #3390ff;
}
/* Preformatted text
   ========================================================================== */
/*
   * 1. Contain overflow in all browsers.
   * 2. Override UA
   */
pre {
  background: #ffffff;
}
pre code {
  font-family: Consolas, monaco, monospace;
}
/* Selection pseudo-element
   ========================================================================== */
::-moz-selection {
  background: #3390ff;
  text-shadow: none;
}
::selection {
  background: #3390ff;
  text-shadow: none;
}
/* ========================================================================
     Component: Link
   ========================================================================== */
/* Muted
   ========================================================================== */
a.uk-link-muted,
.uk-link-muted a {
  color: #999999;
}
a.uk-link-muted:hover,
.uk-link-muted a:hover {
  color: #666;
}
/* Text
   ========================================================================== */
/*
   * `!important` needed to override inverse component
   */
a.uk-link-text:not(:hover),
.uk-link-text a:not(:hover) {
  color: inherit !important;
}
a.uk-link-text:hover,
.uk-link-text a:hover {
  color: #999999;
}
/* Hero
   ========================================================================== */
/*
   * 1. Using `inline-block` to make it work with text alignment
   * 2. Center vertically
   * 3. Style
   */
.uk-heading-bullet::before {
  content: "";
  border-left: 4px solid #3390ff;
}
/* Small
   ========================================================================== */
/*
   * Reset child height, caused by `inline-block`
   */
.uk-divider-small {
  line-height: 0;
}
.uk-divider-small::after {
  border-top: 2px solid #3390ff;
}
/* ========================================================================
     Component: List
   ========================================================================== */
.uk-list,
.ap-child-list > ul {
  padding: 0;
  list-style: none;
}
.uk-list-striped > li:nth-of-type(odd) {
  background: #f1f1f1;
}
/* ========================================================================
     Component: Description list
   ========================================================================== */
/*
   * Term
   */
.uk-description-list > dd {
  font-size: 16px;
}
/* Caption
   ========================================================================== */
.uk-table caption {
  color: #999999;
}
/*
   * Striped
   */
.uk-table-striped > tr:nth-of-type(odd),
.uk-table-striped tbody tr:nth-of-type(odd) {
  background: #f1f1f1;
}
/* Style modifiers
   ========================================================================== */
/*
   * Link
   */
.uk-icon-link:hover,
.uk-icon-link:focus {
  color: #3390ff;
  outline: none;
}
/*
   * Button
   * 1. Center icon vertically and horizontally
   */
.uk-icon-button {
  background: #ffffff;
}
/* Hover + Focus */
.uk-icon-button:hover,
.uk-icon-button:focus {
  background-color: #ffffff;
  color: #3390ff;
  outline: none;
}
/* OnClick + Active */
.uk-icon-button:active,
.uk-active > .uk-icon-button {
  background-color: #3390ff;
  color: #ffffff;
}
/* Thumb
   ========================================================================== */
/*
   * 1. Reset
   * 2. Style
   */
/* Webkit */
.uk-range::-webkit-slider-thumb {
  background: #666;
}
/* Firefox */
.uk-range::-moz-range-thumb {
  background: #666;
}
/* Edge */
.uk-range::-ms-thumb {
  /* 1 */
  margin-top: 0;
}
/* IE11 */
.uk-range::-ms-thumb {
  background: #666;
}
.uk-input,
.uk-select,
.uk-textarea {
  background: #ffffff;
  color: #666;
}
/* Focus */
.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
  outline: none;
  background-color: #ffffff;
}
/* Disabled */
.uk-input:disabled,
.uk-select:disabled,
.uk-textarea:disabled {
  background-color: #f1f1f1;
  color: #999999;
}
/*
   * Placeholder
   */
.uk-input:-ms-input-placeholder {
  color: #999999 !important;
}
.uk-input::-moz-placeholder {
  color: #999999;
}
.uk-input::-webkit-input-placeholder {
  color: #999999;
}
.uk-textarea:-ms-input-placeholder {
  color: #999999 !important;
}
.uk-textarea::-moz-placeholder {
  color: #999999;
}
.uk-textarea::-webkit-input-placeholder {
  color: #999999;
}
.uk-form-danger,
.uk-form-danger:focus {
  color: #f0506e;
  border-color: #f0506e !important;
}
/*
   * Success
   */
.uk-form-success,
.uk-form-success:focus {
  color: #32d296;
  border-color: #32d296 !important;
}
/*
   * Blank
   */
.uk-form-blank {
  background: none;
  border-color: transparent !important;
}
.uk-form-blank:focus {
  border-color: #EBEBED !important;
  border-style: dashed;
}
/*
   * Checked
   */
.uk-radio:checked,
.uk-checkbox:checked,
.uk-checkbox:indeterminate {
  background-color: #3390ff;
  border-color: transparent;
}
/* Label
   ========================================================================== */
/* Icons
   ========================================================================== */
.uk-form-icon {
  color: #999999;
}
/*
   * Required for `a`.
   */
.uk-form-icon:hover {
  color: #666;
}
/* OnClick + Active */
/* Style modifiers
   ========================================================================== */
/*
   * Default
   */
.uk-button-default {
  background-color: #ffffff;
}
/* Hover + Focus */
.uk-button-default:hover,
.uk-button-default:focus {
  background-color: #ffffff;
  color: #3390ff;
}
/* OnClick + Active */
.uk-button-default:active,
.uk-button-default.uk-active {
  background-color: #3390ff;
  color: #ffffff;
}
/*
   * Primary
   */
.uk-button-primary {
  background-color: #3390ff;
  color: #ffffff;
}
/* Hover + Focus */
.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: #4a4a4a;
  color: #ffffff;
}
/* OnClick + Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
  color: #ffffff;
}
/*
   * Secondary
   */
.uk-button-secondary {
  color: #666;
  border: 1px solid #4a4a4a;
}
/* OnClick + Active */
.uk-button-secondary:active,
.uk-button-secondary.uk-active {
  background-color: #3390ff;
  color: #ffffff;
  border-color: #3390ff;
}
/*
   * Danger
   */
.uk-button-danger {
  background-color: transparent;
  color: #f0506e;
  border: 1px solid #f0506e;
}
/* Hover + Focus */
.uk-button-danger:hover,
.uk-button-danger:focus {
  background-color: transparent;
}
/* OnClick + Active */
.uk-button-danger:active,
.uk-button-danger.uk-active {
  background-color: #f0506e;
  color: #ffffff;
  border-color: #f0506e;
}
/*
   * Disabled
   * The same for all style modifiers
   */
.uk-button-default:disabled,
.uk-button-primary:disabled,
.uk-button-secondary:disabled,
.uk-button-danger:disabled {
  background-color: #f1f1f1;
  color: #999999;
}
/* Text modifiers
   ========================================================================== */
/*
   * Text
   * 1. Reset
   * 2. Style
   */
.uk-button-text {
  /* 1 */
  padding: 0;
  line-height: 1.5;
  background: none;
  /* 2 */
  position: relative;
}
/* Hover + Focus */
.uk-button-text:hover,
.uk-button-text:focus {
  color: #3390ff;
}
/* Disabled */
.uk-button-text:disabled {
  color: #999999;
}
/*
   * Link
   * 1. Reset
   * 2. Style
   */
.uk-button-link {
  /* 1 */
  padding: 0;
  line-height: 1.5;
  background: none;
  /* 2 */
  color: #235ff5;
}
/* Hover + Focus */
.uk-button-link:hover,
.uk-button-link:focus {
  color: #3390ff;
}
/* Disabled */
.uk-button-link:disabled {
  color: #999999;
  text-decoration: none;
}
/* Style modifiers
   ========================================================================== */
/*
   * Default
   */
.uk-section-default,
.ap-container-default .uk-container {
  background: #ffffff;
}
/*
   * Primary
   */
.uk-section-primary,
.ap-container-primary .uk-container {
  background: #3390ff;
}
/*
   * Secondary
   */
.uk-section-secondary,
.ap-container-secondary .uk-container {
  background: #4a4a4a;
}
.uk-section-muted,
.ap-container-muted .uk-container {
  background: #f1f1f1;
}
/* Style modifiers
   ========================================================================== */
/*
   * Default
   */
.uk-tile-default {
  background: #ffffff;
}
/*
   * Muted
   */
.uk-tile-muted {
  background: #f1f1f1;
}
/*
   * Primary
   */
.uk-tile-primary {
  background: #3390ff;
}
/*
   * Secondary
   */
.uk-tile-secondary {
  background: #4a4a4a;
}
/* ========================================================================
     Component: Card
   ========================================================================== */
/* Badge
   ========================================================================== */
.uk-card-badge {
  color: #666;
}
/*
   * Remove margin from adjacent element
   */
.uk-card-badge:first-child + * {
  margin-top: 0;
}
/* Style modifiers
   ========================================================================== */
/*
   * Default
   * Note: Header and Footer are only implemented for the default style
   */
.uk-card-default {
  background: #ffffff;
  color: #666;
}
.uk-card-default.uk-card-hover:hover {
  background-color: #ffffff;
}
/*
   * Primary
   */
.uk-card-primary {
  background: #3390ff;
  color: #ffffff;
}
.uk-card-primary .uk-card-title {
  color: #ffffff;
}
/*
   * Secondary
   */
.uk-card-secondary {
  background: #4a4a4a;
  color: #ffffff;
}
.uk-card-secondary .uk-card-title {
  color: #ffffff;
}
/* ========================================================================
     Component: Close
   ========================================================================== */
/* Hover + Focus */
/* Hover + Focus */
.uk-totop:hover,
.uk-totop:focus {
  outline: none;
  background-color: transparent;
}
/* OnClick */
.uk-totop:active {
  color: #3390ff;
  background-color: transparent;
}
/* ========================================================================
     Component: Marker
   ========================================================================== */
/*
   * Addopts `uk-icon`
   */
.uk-marker {
  padding: 5px;
  background: #4a4a4a;
  color: #ffffff;
}
/* Hover + Focus */
.uk-marker:hover,
.uk-marker:focus {
  color: #ffffff;
  outline: none;
}
/* ========================================================================
     Component: Alert
   ========================================================================== */
.uk-alert {
  position: relative;
  background: #ffffff;
  color: #333;
}
/* Style modifiers
   ========================================================================== */
/*
   * Primary
   */
.uk-alert-primary {
  background: #ffffff;
  color: #3390ff;
}
/*
   * Success
   */
.uk-alert-success {
  background: #ffffff;
  color: #32d296;
}
/*
   * Warning
   */
.uk-alert-warning {
  background: #ffffff;
  color: #faa05a;
}
/*
   * Danger
   */
.uk-alert-danger {
  background: #ffffff;
  color: #f0506e;
}
/* ========================================================================
     Component: Badge
   ========================================================================== */
/*
   * 1. Style
   * 2. Center child vertically and horizontally
   */
.uk-badge {
  /* 1 */
  background: #3390ff;
  color: #ffffff;
}
/*
   * Required for `a`
   */
.uk-badge:hover,
.uk-badge:focus {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
/* ========================================================================
     Component: Label
   ========================================================================== */
.uk-label {
  background: #3390ff;
  color: #ffffff;
}
/* Color modifiers
   ========================================================================== */
/*
   * Success
   */
.uk-label-success {
  background-color: #32d296;
  color: #ffffff;
}
/*
   * Warning
   */
.uk-label-warning {
  background-color: #faa05a;
  color: #ffffff;
}
/*
   * Danger
   */
.uk-label-danger {
  background-color: #f0506e;
  color: #ffffff;
}
/* ========================================================================
     Component: Overlay
   ========================================================================== */
.uk-overlay {
  padding: 20px 20px;
}
/*
   * Remove margin from the last-child
   */
.uk-overlay > :last-child {
  margin-bottom: 0;
}
/* Title
   ========================================================================== */
/* Meta
   ========================================================================== */
.uk-article-meta {
  color: #999999;
}
.uk-article-meta a {
  color: #999999;
}
.uk-article-meta a:hover {
  color: #666;
  text-decoration: none;
}
/* Meta
   ========================================================================== */
.uk-comment-meta {
  color: #999999;
}
/* Style modifier
   ========================================================================== */
.uk-comment-primary {
  background-color: #f1f1f1;
}
.uk-search-input:focus {
  outline: none;
}
/* Placeholder */
.uk-search-input:-ms-input-placeholder {
  color: #999999 !important;
}
.uk-search-input::-moz-placeholder {
  color: #999999;
}
.uk-search-input::-webkit-input-placeholder {
  color: #999999;
}
/* Icon (Adopts `uk-icon`)
   ========================================================================== */
/*
   * Remove default focus style
   */
.uk-search-icon:focus {
  outline: none;
}
.uk-search .uk-search-icon {
  color: #999999;
}
/*
   * Required for `a`.
   */
.uk-search .uk-search-icon:hover {
  color: #999999;
}
/* Focus */
.uk-search-default .uk-search-input:focus {
  background-color: #ffffff;
}
/* Toggle
   ========================================================================== */
.uk-search-toggle {
  color: #999999;
}
/* Hover + Focus */
.uk-search-toggle:hover,
.uk-search-toggle:focus {
  color: #666;
}
/* Parent icon modifier
   ========================================================================== */
.uk-nav-parent-icon > .uk-parent > a::after {
  content: "";
  width: 1.5 em;
  height: 1.5 em;
}
/*
   * Items
   */
.uk-nav-default > li > a {
  color: #999999;
}
/* Hover + Focus */
.uk-nav-default > li > a:hover,
.uk-nav-default > li > a:focus {
  color: #3390ff;
  background-color: transparent;
}
/* Active */
.uk-nav-default > li.uk-active > a {
  background-color: transparent;
}
/*
   * Header
   */
/*
   * Sublists
   */
.uk-nav-default .uk-nav-sub a {
  color: #999999;
}
.uk-nav-default .uk-nav-sub a:hover,
.uk-nav-default .uk-nav-sub a:focus {
  color: #666;
}
/*
   * Items
   */
.uk-nav-primary > li > a {
  line-height: 1.5;
  color: #999999;
}
/* Hover + Focus */
.uk-nav-primary > li > a:hover,
.uk-nav-primary > li > a:focus {
  color: #3390ff;
}
/* Active */
/*
   * Header
   */
/*
   * Sublists
   */
.uk-nav-primary .uk-nav-sub a {
  color: #999999;
}
.uk-nav-primary .uk-nav-sub a:hover,
.uk-nav-primary .uk-nav-sub a:focus {
  color: #666;
}
/*
   * Nav items
   */
.uk-navbar-nav > li > a {
  color: #666;
}
.uk-navbar-nav > li > a,
.uk-navbar-item,
.uk-navbar-toggle {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Microsoft Yahei";
}
/*
   * Hover
   * Apply hover style also to focus state and if dropdown is opened
   */
.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li > a.uk-open {
  color: #3390ff;
  outline: none;
}
.uk-navbar-nav > li > a:hover::before {
  background-color: currentColor;
}
/* OnClick */
.uk-navbar-nav > li.uk-active > a::before {
  background-color: #3390ff;
}
/* Item
   ========================================================================== */
.uk-navbar-item {
  color: #666;
}
/* Toggle
   ========================================================================== */
.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus,
.uk-navbar-toggle.uk-open {
  color: #3390ff;
}
/* Dropdown
   ========================================================================== */
/*
   * Adopts `uk-dropdown`
   * 1. Hide by default
   * 2. Set position
   * 3. Set a default width
   * 4. Style
   */
.uk-navbar-dropdown {
  background: #ffffff;
  color: #666;
}
/*
   * Items
   */
.uk-navbar-dropdown-nav > li > a {
  color: #999999;
  padding: 5px 0;
}
/* Hover + Focus */
.uk-navbar-dropdown-nav > li > a:hover,
.uk-navbar-dropdown-nav > li > a:focus {
  color: #3390ff;
  background-color: transparent;
}
/* Active */
/*
   * Sublists
   */
.uk-navbar-dropdown-nav .uk-nav-sub a {
  color: #999999;
}
.uk-navbar-dropdown-nav .uk-nav-sub a:hover,
.uk-navbar-dropdown-nav .uk-nav-sub a:focus {
  color: #666;
}
/* Dropbar
   ========================================================================== */
.uk-navbar-dropbar {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
/* Items
   ========================================================================== */
/*
   * Items must target `a` elements to exclude other elements (e.g. dropdowns)
   * Using `:first-child` instead of `a` to support `span` elements for text
   * 1. Prevent gap if child element is `inline-block`, e.g. an icon
   * 2. Style
   */
.uk-subnav > * > :first-child {
  color: #999999;
}
/* Hover + Focus */
.uk-subnav > * > a:hover,
.uk-subnav > * > a:focus {
  color: #666;
  text-decoration: none;
  outline: none;
}
/* Active */
/* Pill modifier
   ========================================================================== */
.uk-subnav-pill > * > :first-child {
  color: #999999;
}
/* Hover + Focus */
.uk-subnav-pill > * > a:hover,
.uk-subnav-pill > * > a:focus {
  background-color: #ffffff;
  color: #666;
}
/* OnClick */
.uk-subnav-pill > * > a:active {
  background-color: #ffffff;
}
/* Active */
.uk-subnav-pill > .uk-active > a {
  background-color: #3390ff;
  color: #ffffff;
}
/* Disabled
   * The same for all style modifiers
   ========================================================================== */
.uk-subnav > .uk-disabled > a {
  color: #999999;
}
/* Items
   ========================================================================== */
.uk-breadcrumb > * > * {
  color: #999999;
}
/* Hover + Focus */
.uk-breadcrumb > * > :hover,
.uk-breadcrumb > * > :focus {
  color: #666;
  text-decoration: none;
}
/* Disabled */
.uk-breadcrumb > .uk-disabled > * {
  color: #999999;
}
/* Active */
/* Items
   ========================================================================== */
/*
   * 1. Prevent gap if child element is `inline-block`, e.g. an icon
   * 2. Style
   */
.uk-pagination > * > * {
  color: #999999;
}
/* Hover + Focus */
.uk-pagination > * > :hover,
.uk-pagination > * > :focus {
  background-color: #ffffff;
}
/* Active */
.uk-pagination > .uk-active > * {
  color: #3390ff;
  background-color: transparent;
}
/* Disabled */
.uk-pagination > .uk-disabled > * {
  color: #999999;
  background-color: transparent;
}
/* Items
   ========================================================================== */
/*
   * Items must target `a` elements to exclude other elements (e.g. dropdowns)
   * 1. Center text if a width is set
   * 2. Style
   */
.uk-tab > * > a {
  color: #999999;
}
/* Hover + Focus */
.uk-tab > * > a:hover,
.uk-tab > * > a:focus {
  color: #666;
  text-decoration: none;
  border-color: transparent;
}
/* Active */
.uk-tab > .uk-active > a {
  border-color: #3390ff;
}
/* Disabled */
.uk-tab > .uk-disabled > a {
  color: #999999;
}
/* Items
   ========================================================================== */
/* Hover + Focus */
.uk-dotnav > * > :hover,
.uk-dotnav > * > :focus {
  background-color: rgba(248, 108, 74, 0.4);
  outline: none;
  border-color: transparent;
}
/* OnClick */
.uk-dotnav > * > :active {
  background-color: #3390ff;
  border-color: transparent;
}
/* Active */
.uk-dotnav > .uk-active > * {
  background-color: #3390ff;
  border-color: transparent;
}
/* ========================================================================
     Component: Dropdown
   ========================================================================== */
.uk-dropdown {
  background: #ffffff;
  color: #666;
}
/*
   * Items
   */
.uk-dropdown-nav > li > a {
  color: #999999;
}
/* Hover + Focus + Active */
.uk-dropdown-nav > li > a:hover,
.uk-dropdown-nav > li > a:focus,
.uk-dropdown-nav > li.uk-active > a {
  background-color: transparent;
}
/*
   * Header
   */
.uk-dropdown-nav .uk-nav-header {
  color: #3390ff;
}
/*
   * Sublists
   */
.uk-dropdown-nav .uk-nav-sub a {
  color: #999999;
}
.uk-dropdown-nav .uk-nav-sub a:hover,
.uk-dropdown-nav .uk-nav-sub a:focus {
  color: #3390ff;
}
/* Dialog
   ========================================================================== */
/*
   * 1. Create position context for spinner and close button
   * 2. Dimensions
   * 3. Fix `max-width: 100%` not working in combination with flex and responsive images in IE11
   *    `!important` needed to overwrite `uk-width-auto`. See `#modal-media-image` in tests
   * 4. Style
   * 5. Slide-in transition
   */
.uk-modal-dialog {
  background: #ffffff;
}
/*
   * Open
   */
.uk-open > .uk-modal-dialog {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* Message
  ========================================================================== */
.uk-notification-message {
  background: #f1f1f1;
  color: #666;
}
/* Style modifiers
   ========================================================================== */
/*
   * Primary
   */
.uk-notification-message-primary {
  color: #3390ff;
}
/*
   * Success
   */
.uk-notification-message-success {
  color: #32d296;
}
/*
   * Warning
   */
.uk-notification-message-warning {
  color: #faa05a;
}
/*
   * Danger
   */
.uk-notification-message-danger {
  color: #f0506e;
}
/* ========================================================================
     Component: Tooltip
   ========================================================================== */
.uk-tooltip {
  /* 4 */
  background: #3390ff;
  color: #ffffff;
}
/*
   * Remove animated circles for indeterminate state in IE11 and Edge
   */
.uk-progress:indeterminate {
  color: transparent;
}
/*
   * Progress container
   * 2. Remove progress bar for indeterminate state in Firefox
   */
.uk-progress::-webkit-progress-bar {
  background-color: #f1f1f1;
  border-radius: 500px;
  overflow: hidden;
}
/*
   * Progress bar
   * 1. Remove right border in IE11 and Edge
   */
.uk-progress::-webkit-progress-value {
  background-color: #3390ff;
}
.uk-progress::-moz-progress-bar {
  background-color: #3390ff;
}
.uk-progress::-ms-fill {
  background-color: #3390ff;
}
/* ========================================================================
     Component: Text
   ========================================================================== */
/* Style modifiers
   ========================================================================== */
.uk-text-meta {
  color: #999999;
}
.uk-text-meta a {
  color: #999999;
}
.uk-text-meta a:hover {
  color: #666;
  text-decoration: none;
}
/* Size modifiers
   ========================================================================== */
.uk-text-small {
  font-size: 12px;
  line-height: 1.5;
}
.uk-text-large {
  font-size: 20px;
  line-height: 1.5;
}
/* Weight modifier
   ========================================================================== */
.uk-text-bold {
  font-weight: bolder;
}
/* Transform modifier
   ========================================================================== */
.uk-text-uppercase {
  text-transform: uppercase !important;
}
.uk-text-capitalize {
  text-transform: capitalize !important;
}
.uk-text-lowercase {
  text-transform: lowercase !important;
}
/* Color modifiers
   ========================================================================== */
.uk-text-muted {
  color: #999999 !important;
}
.uk-text-primary {
  color: #3390ff !important;
}
.uk-text-success {
  color: #32d296 !important;
}
.uk-text-warning {
  color: #faa05a !important;
}
.uk-text-danger {
  color: #f0506e !important;
}
/* Background modifier */
.uk-text-background {
  color: #3390ff !important;
}
@supports (-webkit-background-clip: text) {
  .uk-text-background {
    background-color: #3390ff;
  }
}
/* ========================================================================
     Component: Background
   ========================================================================== */
/* Color
   ========================================================================== */
.uk-background-default {
  background-color: #ffffff;
}
.uk-background-muted {
  background-color: #f1f1f1;
}
.uk-background-primary {
  background-color: #3390ff;
}
.uk-background-secondary {
  background-color: #4a4a4a;
}
/* ========================================================================
     Component: Inverse
   ========================================================================== */
.uk-light a,
.uk-light .uk-link,
.uk-section-primary:not(.uk-preserve-color) a,
.uk-section-primary:not(.uk-preserve-color) .uk-link,
.uk-section-secondary:not(.uk-preserve-color) a,
.uk-section-secondary:not(.uk-preserve-color) .uk-link,
.uk-tile-primary:not(.uk-preserve-color) a,
.uk-tile-primary:not(.uk-preserve-color) .uk-link,
.uk-tile-secondary:not(.uk-preserve-color) a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link,
.uk-card-primary.uk-card-body a,
.uk-card-primary.uk-card-body .uk-link,
.uk-card-primary > :not([class*='uk-card-media']) a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link,
.uk-card-secondary.uk-card-body a,
.uk-card-secondary.uk-card-body .uk-link,
.uk-card-secondary > :not([class*='uk-card-media']) a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link,
.uk-overlay-primary a,
.uk-overlay-primary .uk-link,
.ap-toolbar a,
.ap-toolbar .uk-link {
  color: #ffffff;
}
.uk-light a:hover,
.uk-light .uk-link:hover,
.uk-section-primary:not(.uk-preserve-color) a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-link:hover,
.uk-section-secondary:not(.uk-preserve-color) a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-link:hover,
.uk-tile-primary:not(.uk-preserve-color) a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link:hover,
.uk-tile-secondary:not(.uk-preserve-color) a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link:hover,
.uk-card-primary.uk-card-body a:hover,
.uk-card-primary.uk-card-body .uk-link:hover,
.uk-card-primary > :not([class*='uk-card-media']) a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link:hover,
.uk-card-secondary.uk-card-body a:hover,
.uk-card-secondary.uk-card-body .uk-link:hover,
.uk-card-secondary > :not([class*='uk-card-media']) a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link:hover,
.uk-overlay-primary a:hover,
.uk-overlay-primary .uk-link:hover,
.ap-toolbar a:hover,
.ap-toolbar .uk-link:hover {
  color: #ffffff;
}
.uk-light em,
.uk-section-primary:not(.uk-preserve-color) em,
.uk-section-secondary:not(.uk-preserve-color) em,
.uk-tile-primary:not(.uk-preserve-color) em,
.uk-tile-secondary:not(.uk-preserve-color) em,
.uk-card-primary.uk-card-body em,
.uk-card-primary > :not([class*='uk-card-media']) em,
.uk-card-secondary.uk-card-body em,
.uk-card-secondary > :not([class*='uk-card-media']) em,
.uk-overlay-primary em,
.ap-toolbar em {
  color: #ffffff;
}
.uk-light h1,
.uk-light .uk-h1,
.uk-light h2,
.uk-light .uk-h2,
.uk-light h3,
.uk-light .uk-h3,
.uk-light h4,
.uk-light .uk-h4,
.uk-light h5,
.uk-light .uk-h5,
.uk-light h6,
.uk-light .uk-h6,
.uk-section-primary:not(.uk-preserve-color) h1,
.uk-section-primary:not(.uk-preserve-color) .uk-h1,
.uk-section-primary:not(.uk-preserve-color) h2,
.uk-section-primary:not(.uk-preserve-color) .uk-h2,
.uk-section-primary:not(.uk-preserve-color) h3,
.uk-section-primary:not(.uk-preserve-color) .uk-h3,
.uk-section-primary:not(.uk-preserve-color) h4,
.uk-section-primary:not(.uk-preserve-color) .uk-h4,
.uk-section-primary:not(.uk-preserve-color) h5,
.uk-section-primary:not(.uk-preserve-color) .uk-h5,
.uk-section-primary:not(.uk-preserve-color) h6,
.uk-section-primary:not(.uk-preserve-color) .uk-h6,
.uk-section-secondary:not(.uk-preserve-color) h1,
.uk-section-secondary:not(.uk-preserve-color) .uk-h1,
.uk-section-secondary:not(.uk-preserve-color) h2,
.uk-section-secondary:not(.uk-preserve-color) .uk-h2,
.uk-section-secondary:not(.uk-preserve-color) h3,
.uk-section-secondary:not(.uk-preserve-color) .uk-h3,
.uk-section-secondary:not(.uk-preserve-color) h4,
.uk-section-secondary:not(.uk-preserve-color) .uk-h4,
.uk-section-secondary:not(.uk-preserve-color) h5,
.uk-section-secondary:not(.uk-preserve-color) .uk-h5,
.uk-section-secondary:not(.uk-preserve-color) h6,
.uk-section-secondary:not(.uk-preserve-color) .uk-h6,
.uk-tile-primary:not(.uk-preserve-color) h1,
.uk-tile-primary:not(.uk-preserve-color) .uk-h1,
.uk-tile-primary:not(.uk-preserve-color) h2,
.uk-tile-primary:not(.uk-preserve-color) .uk-h2,
.uk-tile-primary:not(.uk-preserve-color) h3,
.uk-tile-primary:not(.uk-preserve-color) .uk-h3,
.uk-tile-primary:not(.uk-preserve-color) h4,
.uk-tile-primary:not(.uk-preserve-color) .uk-h4,
.uk-tile-primary:not(.uk-preserve-color) h5,
.uk-tile-primary:not(.uk-preserve-color) .uk-h5,
.uk-tile-primary:not(.uk-preserve-color) h6,
.uk-tile-primary:not(.uk-preserve-color) .uk-h6,
.uk-tile-secondary:not(.uk-preserve-color) h1,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h1,
.uk-tile-secondary:not(.uk-preserve-color) h2,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h2,
.uk-tile-secondary:not(.uk-preserve-color) h3,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h3,
.uk-tile-secondary:not(.uk-preserve-color) h4,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h4,
.uk-tile-secondary:not(.uk-preserve-color) h5,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h5,
.uk-tile-secondary:not(.uk-preserve-color) h6,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h6,
.uk-card-primary.uk-card-body h1,
.uk-card-primary.uk-card-body .uk-h1,
.uk-card-primary.uk-card-body h2,
.uk-card-primary.uk-card-body .uk-h2,
.uk-card-primary.uk-card-body h3,
.uk-card-primary.uk-card-body .uk-h3,
.uk-card-primary.uk-card-body h4,
.uk-card-primary.uk-card-body .uk-h4,
.uk-card-primary.uk-card-body h5,
.uk-card-primary.uk-card-body .uk-h5,
.uk-card-primary.uk-card-body h6,
.uk-card-primary.uk-card-body .uk-h6,
.uk-card-primary > :not([class*='uk-card-media']) h1,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h1,
.uk-card-primary > :not([class*='uk-card-media']) h2,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h2,
.uk-card-primary > :not([class*='uk-card-media']) h3,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h3,
.uk-card-primary > :not([class*='uk-card-media']) h4,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h4,
.uk-card-primary > :not([class*='uk-card-media']) h5,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h5,
.uk-card-primary > :not([class*='uk-card-media']) h6,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h6,
.uk-card-secondary.uk-card-body h1,
.uk-card-secondary.uk-card-body .uk-h1,
.uk-card-secondary.uk-card-body h2,
.uk-card-secondary.uk-card-body .uk-h2,
.uk-card-secondary.uk-card-body h3,
.uk-card-secondary.uk-card-body .uk-h3,
.uk-card-secondary.uk-card-body h4,
.uk-card-secondary.uk-card-body .uk-h4,
.uk-card-secondary.uk-card-body h5,
.uk-card-secondary.uk-card-body .uk-h5,
.uk-card-secondary.uk-card-body h6,
.uk-card-secondary.uk-card-body .uk-h6,
.uk-card-secondary > :not([class*='uk-card-media']) h1,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h1,
.uk-card-secondary > :not([class*='uk-card-media']) h2,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h2,
.uk-card-secondary > :not([class*='uk-card-media']) h3,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h3,
.uk-card-secondary > :not([class*='uk-card-media']) h4,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h4,
.uk-card-secondary > :not([class*='uk-card-media']) h5,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h5,
.uk-card-secondary > :not([class*='uk-card-media']) h6,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h6,
.uk-overlay-primary h1,
.uk-overlay-primary .uk-h1,
.uk-overlay-primary h2,
.uk-overlay-primary .uk-h2,
.uk-overlay-primary h3,
.uk-overlay-primary .uk-h3,
.uk-overlay-primary h4,
.uk-overlay-primary .uk-h4,
.uk-overlay-primary h5,
.uk-overlay-primary .uk-h5,
.uk-overlay-primary h6,
.uk-overlay-primary .uk-h6,
.ap-toolbar h1,
.ap-toolbar .uk-h1,
.ap-toolbar h2,
.ap-toolbar .uk-h2,
.ap-toolbar h3,
.ap-toolbar .uk-h3,
.ap-toolbar h4,
.ap-toolbar .uk-h4,
.ap-toolbar h5,
.ap-toolbar .uk-h5,
.ap-toolbar h6,
.ap-toolbar .uk-h6 {
  color: #ffffff;
}
.uk-light blockquote,
.uk-section-primary:not(.uk-preserve-color) blockquote,
.uk-section-secondary:not(.uk-preserve-color) blockquote,
.uk-tile-primary:not(.uk-preserve-color) blockquote,
.uk-tile-secondary:not(.uk-preserve-color) blockquote,
.uk-card-primary.uk-card-body blockquote,
.uk-card-primary > :not([class*='uk-card-media']) blockquote,
.uk-card-secondary.uk-card-body blockquote,
.uk-card-secondary > :not([class*='uk-card-media']) blockquote,
.uk-overlay-primary blockquote,
.ap-toolbar blockquote {
  color: #ffffff;
}
.uk-light .uk-heading-primary,
.uk-section-primary:not(.uk-preserve-color) .uk-heading-primary,
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-primary,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-primary,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-primary,
.uk-card-primary.uk-card-body .uk-heading-primary,
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-primary,
.uk-card-secondary.uk-card-body .uk-heading-primary,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-primary,
.uk-overlay-primary .uk-heading-primary,
.ap-toolbar .uk-heading-primary {
  color: #ffffff;
}
.uk-light .uk-heading-hero,
.uk-section-primary:not(.uk-preserve-color) .uk-heading-hero,
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-hero,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-hero,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-hero,
.uk-card-primary.uk-card-body .uk-heading-hero,
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-hero,
.uk-card-secondary.uk-card-body .uk-heading-hero,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-hero,
.uk-overlay-primary .uk-heading-hero,
.ap-toolbar .uk-heading-hero {
  color: #ffffff;
}
.uk-light .uk-icon-button,
.uk-section-primary:not(.uk-preserve-color) .uk-icon-button,
.uk-section-secondary:not(.uk-preserve-color) .uk-icon-button,
.uk-tile-primary:not(.uk-preserve-color) .uk-icon-button,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-button,
.uk-card-primary.uk-card-body .uk-icon-button,
.uk-card-primary > :not([class*='uk-card-media']) .uk-icon-button,
.uk-card-secondary.uk-card-body .uk-icon-button,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-icon-button,
.uk-overlay-primary .uk-icon-button,
.ap-toolbar .uk-icon-button {
  background-color: #ffffff;
  background-image: none;
}
.uk-light .uk-radio:checked,
.uk-light .uk-checkbox:checked,
.uk-light .uk-checkbox:indeterminate,
.uk-section-primary:not(.uk-preserve-color) .uk-radio:checked,
.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-section-secondary:not(.uk-preserve-color) .uk-radio:checked,
.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-tile-primary:not(.uk-preserve-color) .uk-radio:checked,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-tile-secondary:not(.uk-preserve-color) .uk-radio:checked,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-card-primary.uk-card-body .uk-radio:checked,
.uk-card-primary.uk-card-body .uk-checkbox:checked,
.uk-card-primary.uk-card-body .uk-checkbox:indeterminate,
.uk-card-primary > :not([class*='uk-card-media']) .uk-radio:checked,
.uk-card-primary > :not([class*='uk-card-media']) .uk-checkbox:checked,
.uk-card-primary > :not([class*='uk-card-media']) .uk-checkbox:indeterminate,
.uk-card-secondary.uk-card-body .uk-radio:checked,
.uk-card-secondary.uk-card-body .uk-checkbox:checked,
.uk-card-secondary.uk-card-body .uk-checkbox:indeterminate,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-radio:checked,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-checkbox:checked,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-checkbox:indeterminate,
.uk-overlay-primary .uk-radio:checked,
.uk-overlay-primary .uk-checkbox:checked,
.uk-overlay-primary .uk-checkbox:indeterminate,
.ap-toolbar .uk-radio:checked,
.ap-toolbar .uk-checkbox:checked,
.ap-toolbar .uk-checkbox:indeterminate {
  background-color: #ffffff;
  border-color: transparent;
}
.uk-light .uk-form-label,
.uk-section-primary:not(.uk-preserve-color) .uk-form-label,
.uk-section-secondary:not(.uk-preserve-color) .uk-form-label,
.uk-tile-primary:not(.uk-preserve-color) .uk-form-label,
.uk-tile-secondary:not(.uk-preserve-color) .uk-form-label,
.uk-card-primary.uk-card-body .uk-form-label,
.uk-card-primary > :not([class*='uk-card-media']) .uk-form-label,
.uk-card-secondary.uk-card-body .uk-form-label,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-form-label,
.uk-overlay-primary .uk-form-label,
.ap-toolbar .uk-form-label {
  color: #ffffff;
}
.uk-light .uk-button-default,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default,
.uk-card-primary.uk-card-body .uk-button-default,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default,
.uk-card-secondary.uk-card-body .uk-button-default,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default,
.uk-overlay-primary .uk-button-default,
.ap-toolbar .uk-button-default {
  background-color: #ffffff;
  color: #333;
  border-color: transparent;
  background-image: none;
  box-shadow: none;
}
.uk-light .uk-button-default:hover,
.uk-light .uk-button-default:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:focus,
.uk-card-primary.uk-card-body .uk-button-default:hover,
.uk-card-primary.uk-card-body .uk-button-default:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default:focus,
.uk-card-secondary.uk-card-body .uk-button-default:hover,
.uk-card-secondary.uk-card-body .uk-button-default:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default:focus,
.uk-overlay-primary .uk-button-default:hover,
.uk-overlay-primary .uk-button-default:focus,
.ap-toolbar .uk-button-default:hover,
.ap-toolbar .uk-button-default:focus {
  background-color: #ffffff;
  color: #3390ff;
  border-color: transparent;
  box-shadow: none;
}
.uk-light .uk-button-default:active,
.uk-light .uk-button-default.uk-active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default:active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default.uk-active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default.uk-active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default.uk-active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default.uk-active,
.uk-card-primary.uk-card-body .uk-button-default:active,
.uk-card-primary.uk-card-body .uk-button-default.uk-active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default.uk-active,
.uk-card-secondary.uk-card-body .uk-button-default:active,
.uk-card-secondary.uk-card-body .uk-button-default.uk-active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default.uk-active,
.uk-overlay-primary .uk-button-default:active,
.uk-overlay-primary .uk-button-default.uk-active,
.ap-toolbar .uk-button-default:active,
.ap-toolbar .uk-button-default.uk-active {
  background-color: #3390ff;
  color: #ffffff;
  border-color: transparent;
}
.uk-light .uk-button-primary,
.uk-section-primary:not(.uk-preserve-color) .uk-button-primary,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary,
.uk-card-primary.uk-card-body .uk-button-primary,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary,
.uk-card-secondary.uk-card-body .uk-button-primary,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary,
.uk-overlay-primary .uk-button-primary,
.ap-toolbar .uk-button-primary {
  background-color: #3390ff;
  color: #ffffff;
  border-color: transparent;
  background-image: none;
  box-shadow: none;
}
.uk-light .uk-button-primary:hover,
.uk-light .uk-button-primary:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-button-primary:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-button-primary:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary:focus,
.uk-card-primary.uk-card-body .uk-button-primary:hover,
.uk-card-primary.uk-card-body .uk-button-primary:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary:focus,
.uk-card-secondary.uk-card-body .uk-button-primary:hover,
.uk-card-secondary.uk-card-body .uk-button-primary:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary:focus,
.uk-overlay-primary .uk-button-primary:hover,
.uk-overlay-primary .uk-button-primary:focus,
.ap-toolbar .uk-button-primary:hover,
.ap-toolbar .uk-button-primary:focus {
  color: #ffffff;
  border-color: transparent;
  box-shadow: none;
}
.uk-light .uk-button-primary:active,
.uk-light .uk-button-primary.uk-active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-primary:active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-primary.uk-active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary.uk-active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary.uk-active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary.uk-active,
.uk-card-primary.uk-card-body .uk-button-primary:active,
.uk-card-primary.uk-card-body .uk-button-primary.uk-active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary.uk-active,
.uk-card-secondary.uk-card-body .uk-button-primary:active,
.uk-card-secondary.uk-card-body .uk-button-primary.uk-active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary.uk-active,
.uk-overlay-primary .uk-button-primary:active,
.uk-overlay-primary .uk-button-primary.uk-active,
.ap-toolbar .uk-button-primary:active,
.ap-toolbar .uk-button-primary.uk-active {
  color: #ffffff;
  border-color: transparent;
}
.uk-light .uk-button-secondary,
.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary,
.uk-card-primary.uk-card-body .uk-button-secondary,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary,
.uk-card-secondary.uk-card-body .uk-button-secondary,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary,
.uk-overlay-primary .uk-button-secondary,
.ap-toolbar .uk-button-secondary {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
  background-image: none;
  box-shadow: none;
}
.uk-light .uk-button-secondary:hover,
.uk-light .uk-button-secondary:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary:focus,
.uk-card-primary.uk-card-body .uk-button-secondary:hover,
.uk-card-primary.uk-card-body .uk-button-secondary:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary:focus,
.uk-card-secondary.uk-card-body .uk-button-secondary:hover,
.uk-card-secondary.uk-card-body .uk-button-secondary:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary:focus,
.uk-overlay-primary .uk-button-secondary:hover,
.uk-overlay-primary .uk-button-secondary:focus,
.ap-toolbar .uk-button-secondary:hover,
.ap-toolbar .uk-button-secondary:focus {
  background-color: transparent;
  color: #ffffff;
  box-shadow: none;
}
.uk-light .uk-button-secondary:active,
.uk-light .uk-button-secondary.uk-active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary:active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
.uk-card-primary.uk-card-body .uk-button-secondary:active,
.uk-card-primary.uk-card-body .uk-button-secondary.uk-active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary.uk-active,
.uk-card-secondary.uk-card-body .uk-button-secondary:active,
.uk-card-secondary.uk-card-body .uk-button-secondary.uk-active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary.uk-active,
.uk-overlay-primary .uk-button-secondary:active,
.uk-overlay-primary .uk-button-secondary.uk-active,
.ap-toolbar .uk-button-secondary:active,
.ap-toolbar .uk-button-secondary.uk-active {
  background-color: #ffffff;
  border-color: #ffffff;
}
.uk-light .uk-button-text,
.uk-section-primary:not(.uk-preserve-color) .uk-button-text,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-text,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-text,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-text,
.uk-card-primary.uk-card-body .uk-button-text,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-text,
.uk-card-secondary.uk-card-body .uk-button-text,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-text,
.uk-overlay-primary .uk-button-text,
.ap-toolbar .uk-button-text {
  color: #ffffff;
}
.uk-light .uk-totop:active,
.uk-section-primary:not(.uk-preserve-color) .uk-totop:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-totop:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-totop:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-totop:active,
.uk-card-primary.uk-card-body .uk-totop:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-totop:active,
.uk-card-secondary.uk-card-body .uk-totop:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-totop:active,
.uk-overlay-primary .uk-totop:active,
.ap-toolbar .uk-totop:active {
  color: #ffffff;
  background-color: transparent;
}
.uk-light .uk-marker,
.uk-section-primary:not(.uk-preserve-color) .uk-marker,
.uk-section-secondary:not(.uk-preserve-color) .uk-marker,
.uk-tile-primary:not(.uk-preserve-color) .uk-marker,
.uk-tile-secondary:not(.uk-preserve-color) .uk-marker,
.uk-card-primary.uk-card-body .uk-marker,
.uk-card-primary > :not([class*='uk-card-media']) .uk-marker,
.uk-card-secondary.uk-card-body .uk-marker,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-marker,
.uk-overlay-primary .uk-marker,
.ap-toolbar .uk-marker {
  background: #f1f1f1;
  color: #666;
}
.uk-light .uk-marker:hover,
.uk-light .uk-marker:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-marker:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-marker:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-marker:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-marker:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-marker:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-marker:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-marker:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-marker:focus,
.uk-card-primary.uk-card-body .uk-marker:hover,
.uk-card-primary.uk-card-body .uk-marker:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-marker:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-marker:focus,
.uk-card-secondary.uk-card-body .uk-marker:hover,
.uk-card-secondary.uk-card-body .uk-marker:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-marker:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-marker:focus,
.uk-overlay-primary .uk-marker:hover,
.uk-overlay-primary .uk-marker:focus,
.ap-toolbar .uk-marker:hover,
.ap-toolbar .uk-marker:focus {
  color: #666;
}
.uk-light .uk-badge,
.uk-section-primary:not(.uk-preserve-color) .uk-badge,
.uk-section-secondary:not(.uk-preserve-color) .uk-badge,
.uk-tile-primary:not(.uk-preserve-color) .uk-badge,
.uk-tile-secondary:not(.uk-preserve-color) .uk-badge,
.uk-card-primary.uk-card-body .uk-badge,
.uk-card-primary > :not([class*='uk-card-media']) .uk-badge,
.uk-card-secondary.uk-card-body .uk-badge,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-badge,
.uk-overlay-primary .uk-badge,
.ap-toolbar .uk-badge {
  background-color: #ffffff;
  color: #333;
}
.uk-light .uk-label,
.uk-section-primary:not(.uk-preserve-color) .uk-label,
.uk-section-secondary:not(.uk-preserve-color) .uk-label,
.uk-tile-primary:not(.uk-preserve-color) .uk-label,
.uk-tile-secondary:not(.uk-preserve-color) .uk-label,
.uk-card-primary.uk-card-body .uk-label,
.uk-card-primary > :not([class*='uk-card-media']) .uk-label,
.uk-card-secondary.uk-card-body .uk-label,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-label,
.uk-overlay-primary .uk-label,
.ap-toolbar .uk-label {
  background-color: #ffffff;
}
.uk-light .uk-article-title,
.uk-section-primary:not(.uk-preserve-color) .uk-article-title,
.uk-section-secondary:not(.uk-preserve-color) .uk-article-title,
.uk-tile-primary:not(.uk-preserve-color) .uk-article-title,
.uk-tile-secondary:not(.uk-preserve-color) .uk-article-title,
.uk-card-primary.uk-card-body .uk-article-title,
.uk-card-primary > :not([class*='uk-card-media']) .uk-article-title,
.uk-card-secondary.uk-card-body .uk-article-title,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-article-title,
.uk-overlay-primary .uk-article-title,
.ap-toolbar .uk-article-title {
  color: #ffffff;
}
.uk-light .uk-nav-default > li > a:hover,
.uk-light .uk-nav-default > li > a:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li > a:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default > li > a:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default > li > a:focus,
.uk-card-primary.uk-card-body .uk-nav-default > li > a:hover,
.uk-card-primary.uk-card-body .uk-nav-default > li > a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default > li > a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default > li > a:focus,
.uk-card-secondary.uk-card-body .uk-nav-default > li > a:hover,
.uk-card-secondary.uk-card-body .uk-nav-default > li > a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default > li > a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default > li > a:focus,
.uk-overlay-primary .uk-nav-default > li > a:hover,
.uk-overlay-primary .uk-nav-default > li > a:focus,
.ap-toolbar .uk-nav-default > li > a:hover,
.ap-toolbar .uk-nav-default > li > a:focus {
  color: rgba(197, 57, 15, 0.7);
  background-color: transparent;
}
.uk-light .uk-nav-default > li.uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
.uk-card-primary.uk-card-body .uk-nav-default > li.uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default > li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-nav-default > li.uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default > li.uk-active > a,
.uk-overlay-primary .uk-nav-default > li.uk-active > a,
.ap-toolbar .uk-nav-default > li.uk-active > a {
  color: #ffffff;
  background-color: transparent;
}
.uk-light .uk-nav-default .uk-nav-header,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-header,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-header,
.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-header,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-header,
.uk-overlay-primary .uk-nav-default .uk-nav-header,
.ap-toolbar .uk-nav-default .uk-nav-header {
  color: #ffffff;
}
.uk-light .uk-nav-primary > li.uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
.uk-card-primary.uk-card-body .uk-nav-primary > li.uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary > li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-nav-primary > li.uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary > li.uk-active > a,
.uk-overlay-primary .uk-nav-primary > li.uk-active > a,
.ap-toolbar .uk-nav-primary > li.uk-active > a {
  color: #ffffff;
}
.uk-light .uk-nav-primary .uk-nav-header,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-header,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-header,
.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-header,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-header,
.uk-overlay-primary .uk-nav-primary .uk-nav-header,
.ap-toolbar .uk-nav-primary .uk-nav-header {
  color: #ffffff;
}
.uk-light .uk-navbar-nav > li > a::before,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a::before,
.uk-card-primary.uk-card-body .uk-navbar-nav > li > a::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a::before,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li > a::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a::before,
.uk-overlay-primary .uk-navbar-nav > li > a::before,
.ap-toolbar .uk-navbar-nav > li > a::before {
  background-color: transparent;
}
.uk-light .uk-navbar-nav > li:hover > a,
.uk-light .uk-navbar-nav > li > a:focus,
.uk-light .uk-navbar-nav > li > a.uk-open,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a.uk-open,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a.uk-open,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a.uk-open,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a.uk-open,
.uk-card-primary.uk-card-body .uk-navbar-nav > li:hover > a,
.uk-card-primary.uk-card-body .uk-navbar-nav > li > a:focus,
.uk-card-primary.uk-card-body .uk-navbar-nav > li > a.uk-open,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li:hover > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a.uk-open,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li:hover > a,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li > a:focus,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li > a.uk-open,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li:hover > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a.uk-open,
.uk-overlay-primary .uk-navbar-nav > li:hover > a,
.uk-overlay-primary .uk-navbar-nav > li > a:focus,
.uk-overlay-primary .uk-navbar-nav > li > a.uk-open,
.ap-toolbar .uk-navbar-nav > li:hover > a,
.ap-toolbar .uk-navbar-nav > li > a:focus,
.ap-toolbar .uk-navbar-nav > li > a.uk-open {
  color: #ffffff;
}
.uk-light .uk-navbar-nav > li.uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
.uk-card-primary.uk-card-body .uk-navbar-nav > li.uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li.uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li.uk-active > a,
.uk-overlay-primary .uk-navbar-nav > li.uk-active > a,
.ap-toolbar .uk-navbar-nav > li.uk-active > a {
  color: #ffffff;
}
.uk-light .uk-navbar-nav > li.uk-active > a::before,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a::before,
.uk-card-primary.uk-card-body .uk-navbar-nav > li.uk-active > a::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li.uk-active > a::before,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li.uk-active > a::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li.uk-active > a::before,
.uk-overlay-primary .uk-navbar-nav > li.uk-active > a::before,
.ap-toolbar .uk-navbar-nav > li.uk-active > a::before {
  background-color: #3390ff;
}
.uk-light .uk-navbar-toggle,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-card-primary.uk-card-body .uk-navbar-toggle,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-toggle,
.uk-card-secondary.uk-card-body .uk-navbar-toggle,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-toggle,
.uk-overlay-primary .uk-navbar-toggle,
.ap-toolbar .uk-navbar-toggle {
  color: #ffffff;
}
.uk-light .uk-subnav > .uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-card-primary.uk-card-body .uk-subnav > .uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-subnav > .uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav > .uk-active > a,
.uk-overlay-primary .uk-subnav > .uk-active > a,
.ap-toolbar .uk-subnav > .uk-active > a {
  color: #ffffff;
}
.uk-light .uk-subnav-pill > .uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-card-primary.uk-card-body .uk-subnav-pill > .uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav-pill > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-subnav-pill > .uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav-pill > .uk-active > a,
.uk-overlay-primary .uk-subnav-pill > .uk-active > a,
.ap-toolbar .uk-subnav-pill > .uk-active > a {
  background-color: #ffffff;
  box-shadow: none;
}
.uk-light .uk-tab > .uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-card-primary.uk-card-body .uk-tab > .uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-tab > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-tab > .uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-tab > .uk-active > a,
.uk-overlay-primary .uk-tab > .uk-active > a,
.ap-toolbar .uk-tab > .uk-active > a {
  color: #ffffff;
  border-color: #ffffff;
}
.uk-light .uk-dotnav > .uk-active > *,
.uk-section-primary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-section-secondary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-card-primary.uk-card-body .uk-dotnav > .uk-active > *,
.uk-card-primary > :not([class*='uk-card-media']) .uk-dotnav > .uk-active > *,
.uk-card-secondary.uk-card-body .uk-dotnav > .uk-active > *,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-dotnav > .uk-active > *,
.uk-overlay-primary .uk-dotnav > .uk-active > *,
.ap-toolbar .uk-dotnav > .uk-active > * {
  background-color: #ffffff;
  border-color: transparent;
}
.uk-light .uk-countdown-number,
.uk-light .uk-countdown-separator,
.uk-section-primary:not(.uk-preserve-color) .uk-countdown-number,
.uk-section-primary:not(.uk-preserve-color) .uk-countdown-separator,
.uk-section-secondary:not(.uk-preserve-color) .uk-countdown-number,
.uk-section-secondary:not(.uk-preserve-color) .uk-countdown-separator,
.uk-tile-primary:not(.uk-preserve-color) .uk-countdown-number,
.uk-tile-primary:not(.uk-preserve-color) .uk-countdown-separator,
.uk-tile-secondary:not(.uk-preserve-color) .uk-countdown-number,
.uk-tile-secondary:not(.uk-preserve-color) .uk-countdown-separator,
.uk-card-primary.uk-card-body .uk-countdown-number,
.uk-card-primary.uk-card-body .uk-countdown-separator,
.uk-card-primary > :not([class*='uk-card-media']) .uk-countdown-number,
.uk-card-primary > :not([class*='uk-card-media']) .uk-countdown-separator,
.uk-card-secondary.uk-card-body .uk-countdown-number,
.uk-card-secondary.uk-card-body .uk-countdown-separator,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-countdown-number,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-countdown-separator,
.uk-overlay-primary .uk-countdown-number,
.uk-overlay-primary .uk-countdown-separator,
.ap-toolbar .uk-countdown-number,
.ap-toolbar .uk-countdown-separator {
  color: #ffffff;
}
.uk-light .uk-countdown-label,
.uk-section-primary:not(.uk-preserve-color) .uk-countdown-label,
.uk-section-secondary:not(.uk-preserve-color) .uk-countdown-label,
.uk-tile-primary:not(.uk-preserve-color) .uk-countdown-label,
.uk-tile-secondary:not(.uk-preserve-color) .uk-countdown-label,
.uk-card-primary.uk-card-body .uk-countdown-label,
.uk-card-primary > :not([class*='uk-card-media']) .uk-countdown-label,
.uk-card-secondary.uk-card-body .uk-countdown-label,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-countdown-label,
.uk-overlay-primary .uk-countdown-label,
.ap-toolbar .uk-countdown-label {
  color: #ffffff;
}
.uk-light .uk-text-lead,
.uk-section-primary:not(.uk-preserve-color) .uk-text-lead,
.uk-section-secondary:not(.uk-preserve-color) .uk-text-lead,
.uk-tile-primary:not(.uk-preserve-color) .uk-text-lead,
.uk-tile-secondary:not(.uk-preserve-color) .uk-text-lead,
.uk-card-primary.uk-card-body .uk-text-lead,
.uk-card-primary > :not([class*='uk-card-media']) .uk-text-lead,
.uk-card-secondary.uk-card-body .uk-text-lead,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-text-lead,
.uk-overlay-primary .uk-text-lead,
.ap-toolbar .uk-text-lead {
  color: #ffffff;
}
/* Header
   ========================================================================== */
/*
   * Header
   */
/*
   * Headerbars
   */
.ap-headerbar-top {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #ffffff;
}
.ap-headerbar-bottom {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #ffffff;
}
.ap-header .uk-navbar-nav .menu-item a {
  position: relative;
}
.ap-header .uk-navbar-nav .menu-item a:hover,
.ap-header .uk-navbar-nav .uk-active a {
  font-weight: bolder;
}
.ap-header .uk-navbar-nav .menu-item a:hover::before,
.ap-header .uk-navbar-nav .uk-active a::before {
  right: 15px;
  display: block;
}
.ap-header-transparent {
  position: absolute;
  z-index: 980;
  left: 0;
  right: 0;
}
.ap-header-transparent .uk-navbar-nav .menu-item a {
  position: relative;
  color: #fff;
}
.ap-header-transparent .uk-navbar-nav .menu-item a:hover::before,
.ap-header-transparent .uk-navbar-nav .uk-active a::before {
  background-color: #fff;
}
.uk-navbar-transparent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 80px;
  z-index: 100;
  transition: background-color 0.3s ease-in;
}
.uk-navbar-transparent.uk-sticky-below {
  z-index: 1000;
}
.uk-navbar-transparent.uk-sticky-below .uk-navbar-nav > li.uk-active > a,
.uk-navbar-transparent.uk-sticky-below .uk-navbar-nav > li > a:hover {
  color: #292929;
}
.uk-navbar-transparent.uk-sticky-below .uk-navbar-nav > li > a {
  color: #4f5260;
}
.uk-section-secondary .uk-navbar-transparent.uk-sticky-below,
.uk-section-secondary .uk-navbar-container:not(.uk-navbar-transparent) {
  background: rgba(74, 74, 74, 0.94);
}
.uk-section-secondary .uk-navbar-transparent.uk-sticky-below .uk-navbar-nav > li > a,
.uk-section-secondary .uk-navbar-transparent.uk-sticky-below .uk-navbar-nav > li > a:hover {
  color: #fff;
}
.uk-section-primary .uk-navbar-container.uk-navbar-sticky {
  background-color: #3390ff;
}
.uk-section-muted .uk-navbar-container.uk-navbar-sticky {
  background-color: #f1f1f1;
}
.uk-section-primary .uk-navbar-container.uk-navbar-sticky {
  background-color: #3390ff;
}
.uk-navbar-container:not(.uk-navbar-transparent) {
  background: transparent;
}
.uk-navbar-sticky {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
}
.uk-navbar-nav > li > a::before {
  content: '';
  display: none;
  position: absolute;
  bottom: 24px;
  height: 1px;
  background-color: #00a0de;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transition-property: background-color, border-color, box-shadow, height, right;
  transition-property: background-color, border-color, box-shadow, height, right;
  left: 15px;
  right: calc(77%);
}
.category .uk-pagination li.uk-active,
.ap-pagination li.uk-active,
.dynamic-pagination li.uk-active,
.category .uk-pagination li.active,
.ap-pagination li.active,
.dynamic-pagination li.active {
  background-color: #3390ff;
  border-color: #3390ff;
}
.category .uk-pagination li:hover,
.ap-pagination li:hover,
.dynamic-pagination li:hover {
  border-color: #3390ff;
}
/* ========================================================================
   Component: Padding
 ========================================================================== */
/* mobile */
@media (max-width: 640px) {
  .uk-padding {
    padding: 14px;
  }
  .uk-padding-small {
    padding: 12px 15px 8px;
  }
  * + .uk-margin-medium {
    margin-top: 12px !important;
  }
  .uk-margin-medium {
    margin-bottom: 16px;
  }
  .uk-button {
    padding: 0 12px;
    line-height: 30px;
  }
  .uk-card-default .uk-card-title,
  .uk-card-title {
    font-size: 1rem;
  }
  .uk-card-body {
    padding: 10px;
  }
  .uk-tile-large {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .uk-heading-primary,
  .uk-heading-hero,
  .uk-h1,
  h1 {
    font-size: 1.75rem;
  }
  .uk-h2,
  h2 {
    font-size: 1.25rem;
  }
  .uk-h3,
  h3 {
    font-size: 1.125rem;
  }
  .uk-h4,
  h4 {
    font-size: .875rem;
  }
  .uk-h5,
  h5,
  .uk-h6,
  h6 {
    font-size: .75rem;
  }
  .uk-margin {
    margin-bottom: 14px;
  }
  * + .uk-margin {
    margin-top: 14px!important;
  }
  .uk-grid {
    margin-left: -6px;
  }
  .uk-grid > * {
    padding-left: 6px;
  }
  * + .uk-grid-margin,
  .uk-grid + .uk-grid,
  .uk-grid > .uk-grid-margin {
    margin-top: 12px;
  }
  .uk-grid + .uk-grid-collapse,
  .uk-grid-collapse > .uk-grid-margin {
    margin-top: 0;
  }
  .uk-grid-collapse > * {
    padding-left: 0;
  }
  .uk-grid-collapse {
    margin-left: 0;
  }
  .uk-card-small .uk-card-body,
  .uk-card-small.uk-card-body {
    padding: 6px;
  }
  .uk-section {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .uk-section-xsmall {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .uk-section-small {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .uk-margin-large-top {
    margin-top: 26px !important;
  }
  .uk-margin-large {
    margin-bottom: 26px;
  }
  .ap-pagination li,
  .dynamic-pagination li {
    height: 24px;
  }
  .dynamic-pagination li a {
    padding: 0 2px;
    line-height: 24px;
    min-width: 24px;
    font-size: 12px;
  }
}
.preview .uk-section-secondary .uk-button-primary:hover {
  background-color: #0074ff;
}
.ap-list-filter dd a.active {
  background-color: #3390ff;
  color: #fff;
  border-radius: 2px;
}
.ap-filter-dropdown .filter-item-wrap.open,
.ap-filter-dropdown .filter-item.active {
  color: #3390ff;
}
.category li a.active {
  color: #3390ff;
}
.uk-lightbox-items > * > video {
  width: 80%;
}
/* 兼容uk-heading-primary */
@media (min-width: 1200px) {
  .uk-heading-primary {
    font-size: 3.75rem;
    line-height: 1.1;
  }
}
.uk-list ul {
  padding-left: 10px;
}
.onepage-pagination li a.active:before {
  background: #3390ff;
}
.fr-text-bordered {
  padding-top: 6px;
  padding-bottom: 6px;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}
.fr-text-uppercase {
  text-transform: uppercase;
}
.param-field .param-tag {
  color: #3390ff;
  border: 1px solid rgba(51, 144, 255, 0.2);
}
form .step .step-bg-progress,
form .add-file .file-btn,
form .step-btns a,
form .step .ui-step.active .ui-step-num {
  background: #3390ff;
}
form .step .ui-step.active .ui-step-title {
  color: #3390ff;
}
/**************** 自定义版块样式 ********************/
.btn-effect-1 {
  border-color: #3390ff;
  background-color: #3390ff;
  color: #fff;
}
.header-effect-6 [data-item='title']::before {
  background-color: #3390ff;
}
.btn-effect-2 {
  background-color: transparent;
  border: 1px solid #3390ff;
  color: #3390ff;
}
.btn-effect-2:hover {
  background-color: #3390ff;
}
.uk-button.btn-effect-5 {
  background-color: #3390ff;
  box-shadow: 0 0 15px rgba(51, 144, 255, 0.8);
}
.header-effect-3 [data-item='title']::after {
  background: #3390ff;
}
.header-effect-6 [data-item='title']::before {
  background-color: #3390ff;
}
#abddfa211da81d8 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
@media (min-width: 1200px) {
  #a7312addabadf5e .uk-container {
    padding: 0 60px;
  }
}
@media (min-width: 980px) {
  #a7312addabadf5e .sidebar {
    width: 28.5%;
    padding-left: 32px;
    border-left: 1px solid #ececec;
    margin-left: 32px;
  }
}
#a7312addabadf5e .sidebar .uk-h3 {
  position: relative;
  padding-bottom: 12px;
  font-size: 18px;
}
#a7312addabadf5e .sidebar .uk-h3:before {
  content: ' ';
  position: absolute;
  width: 3px;
  height: 100%;
  left: -33px;
  top: 0;
  background-color: #3390ff;
}
#a7312addabadf5e .sidebar .uk-h3:after {
  content: ' ';
  position: absolute;
  width: 35px;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #666666;
}
#a7312addabadf5e .uk-list li::before {
  color: #3390ff;
}
#a7312addabadf5e .uk-list a {
  color: #4c4c4c;
}
#a7312addabadf5e .uk-list a.active,
#a7312addabadf5e .uk-list a:hover {
  color: #3390ff;
  text-decoration: none;
}
#a7312addabadf5e .post-sidebar-image {
  width: 90px;
  height: auto;
  margin-right: 15px;
}
#a7312addabadf5e .tag {
  display: inline-block;
  margin: 0 8px 10px 0;
  border: 1px solid #ececec;
}
#a7312addabadf5e .tag a {
  line-height: 32px;
  padding: 0 12px;
  font-size: 14px;
  color: #666666;
}
#a3e81a02f2a3866 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#ae3c1ab775a0bd1 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#afd57a394da7639 {
  min-height: 300px;
}
#a1cc0ae26ea7143 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a7073ac59ba1c9f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7d3dae64fabc81 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a7d3dae64fabc81 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a7d3dae64fabc81 .ap-icon {
  margin-right: 6px;
}
#a7d3dae64fabc81 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  margin-right: 10px;
  width: 150px;
  background-color: #ffffff;
  height: 50px;
}
#a7d3dae64fabc81 .menu-list > li.icon-bottom > a,
#a7d3dae64fabc81 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a7d3dae64fabc81 .menu-list > li.icon-bottom > a .ap-icon,
#a7d3dae64fabc81 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a7d3dae64fabc81 .menu-list > li.icon-bottom > a .ap-icon svg,
#a7d3dae64fabc81 .menu-list > li.icon-top > a .ap-icon svg,
#a7d3dae64fabc81 .menu-list > li.icon-bottom > a .ap-icon img,
#a7d3dae64fabc81 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a7d3dae64fabc81 .menu-list > li.icon-right > a .ap-icon,
#a7d3dae64fabc81 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a7d3dae64fabc81 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a7d3dae64fabc81 .menu-list > li:hover > a,
#a7d3dae64fabc81 .menu-list > li.active > a {
  background: #004992;
  background-color: #004992;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 0;
  border-top-color: #235ff5;
  border-top-style: none;
  border-right-color: #235ff5;
  border-left-color: #235ff5;
  border-bottom-color: #235ff5;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#a7d3dae64fabc81 .menu-list > li.active > a {
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a7d3dae64fabc81 .menu-list ul,
#a7d3dae64fabc81 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a7d3dae64fabc81 .menu-list ul {
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
}
#a7d3dae64fabc81 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a7d3dae64fabc81 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a7d3dae64fabc81 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#abad4a8557a8b7d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae432a8b1ea3423 {
  overflow: hidden;
}
#ae432a8b1ea3423 , #ae432a8b1ea3423 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 32px;font-family: inherit;color: rgba(51, 51, 51, 1);}#abd64abfe5acdd3 {
  overflow: hidden;
}
#ac93aa173aa3b9c > .ele-wrap {background-color: rgba(12, 77, 161, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a584caaccdabd0f > .ele-wrap {background-color: rgba(0, 73, 146, 0.9);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a64f5a1468ac9f3 , #a64f5a1468ac9f3 .param-tag {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(255, 255, 255, 1);}#abc81ac479adfc1 {
  overflow: hidden;
}
#abc81ac479adfc1 , #abc81ac479adfc1 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a557ba24afa509d {
  overflow: hidden;
}
#ae17bad321a1dd4 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4a96a102bafef5 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a4a96a102bafef5 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a4a96a102bafef5 .ap-icon {
  margin-right: 6px;
}
#a4a96a102bafef5 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  margin-right: 10px;
  width: 150px;
  background-color: #ffffff;
  height: 50px;
}
#a4a96a102bafef5 .menu-list > li.icon-bottom > a,
#a4a96a102bafef5 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a4a96a102bafef5 .menu-list > li.icon-bottom > a .ap-icon,
#a4a96a102bafef5 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a4a96a102bafef5 .menu-list > li.icon-bottom > a .ap-icon svg,
#a4a96a102bafef5 .menu-list > li.icon-top > a .ap-icon svg,
#a4a96a102bafef5 .menu-list > li.icon-bottom > a .ap-icon img,
#a4a96a102bafef5 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a4a96a102bafef5 .menu-list > li.icon-right > a .ap-icon,
#a4a96a102bafef5 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a4a96a102bafef5 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a4a96a102bafef5 .menu-list > li:hover > a,
#a4a96a102bafef5 .menu-list > li.active > a {
  background: #004992;
  background-color: #004992;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 0;
  border-top-color: #235ff5;
  border-top-style: none;
  border-right-color: #235ff5;
  border-left-color: #235ff5;
  border-bottom-color: #235ff5;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#a4a96a102bafef5 .menu-list > li.active > a {
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4a96a102bafef5 .menu-list ul,
#a4a96a102bafef5 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4a96a102bafef5 .menu-list ul {
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
}
#a4a96a102bafef5 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4a96a102bafef5 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4a96a102bafef5 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a7682aa93fafc25 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd3a03e5a6179 {
  overflow: hidden;
}
#abfd3a03e5a6179 , #abfd3a03e5a6179 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 32px;font-family: inherit;color: rgba(51, 51, 51, 1);}#aef93ae839ae31b {
  overflow: hidden;
}
#a6a0aa0bf7aca21 > .ele-wrap {background-color: rgba(12, 77, 161, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac25faf2dda2bce > .ele-wrap {background-color: rgba(0, 73, 146, 0.9);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a529eaa4c4ac01d , #a529eaa4c4ac01d .param-tag {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(255, 255, 255, 1);}#aae1ca291fa480c {
  overflow: hidden;
  pointer-events: none;
}
#aae1ca291fa480c > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 50px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#aae1ca291fa480c > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#aae1ca291fa480c > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#aae1ca291fa480c > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 50px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#aae1ca291fa480c > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#aae1ca291fa480c > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#aae1ca291fa480c > .tab-wrap > div > .tab-nav,
#aae1ca291fa480c > .tab-nav,
#aae1ca291fa480c > .tab-tabs > .tab-wrap > div > .tab-nav,
#aae1ca291fa480c > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 0;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
  border-right-color: rgba(204, 204, 204, 0.39);
  border-left-color: rgba(204, 204, 204, 0.39);
  border-top-color: rgba(204, 204, 204, 0.39);
  border-right-width: 0;
  border-left-width: 0;
  border-top-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-top-style: solid;
}
#aae1ca291fa480c > .tab-wrap > div > .tab-nav-horizontal,
#aae1ca291fa480c > .tab-nav-horizontal,
#aae1ca291fa480c > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#aae1ca291fa480c > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#aae1ca291fa480c > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#aae1ca291fa480c > .tab-nav-horizontal::-webkit-scrollbar,
#aae1ca291fa480c > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#aae1ca291fa480c > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#aae1ca291fa480c > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#aae1ca291fa480c > .tab-nav-horizontal.tagScroll,
#aae1ca291fa480c > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#aae1ca291fa480c > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#aae1ca291fa480c > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#aae1ca291fa480c > .tab-nav-horizontal.tagScroll li a,
#aae1ca291fa480c > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#aae1ca291fa480c > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#aae1ca291fa480c > .tab-wrap > div > .tab-nav a,
#aae1ca291fa480c > .tab-nav a,
#aae1ca291fa480c > .tab-tabs > .tab-wrap > div > .tab-nav a,
#aae1ca291fa480c > .tab-tabs > .tab-nav a {
  padding: 0 38px;
}
#aae1ca291fa480c > .tab-wrap > div > .tab-nav li a,
#aae1ca291fa480c > .tab-nav li a,
#aae1ca291fa480c > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#aae1ca291fa480c > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 3px;
  margin-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  background-color: #e5e5e5;
  padding: 0 38px;
}
#aae1ca291fa480c > .tab-wrap > div > .tab-nav li a svg,
#aae1ca291fa480c > .tab-nav li a svg,
#aae1ca291fa480c > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#aae1ca291fa480c > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#aae1ca291fa480c > .tab-wrap > div > .tab-nav li a .ap_icon,
#aae1ca291fa480c > .tab-nav li a .ap_icon,
#aae1ca291fa480c > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#aae1ca291fa480c > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#aae1ca291fa480c > .tab-wrap > div > .tab-nav li a:hover,
#aae1ca291fa480c > .tab-nav li a:hover,
#aae1ca291fa480c > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#aae1ca291fa480c > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a90e2;
  border-bottom-width: 0;
  border-bottom-color: #4a90e2;
  border-bottom-style: solid;
  border-right-color: #4a90e2;
  border-left-color: #4a90e2;
  border-top-color: #4a90e2;
  border-right-width: 0;
  border-left-width: 0;
  border-top-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-top-style: solid;
}
#aae1ca291fa480c > .tab-wrap > div > .tab-nav li.uk-active a,
#aae1ca291fa480c > .tab-nav li.uk-active a,
#aae1ca291fa480c > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#aae1ca291fa480c > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 0;
  border-bottom-style: solid;
  border-right-width: 0;
  border-left-width: 0;
  border-top-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-top-style: solid;
  background-color: #666666;
}
#aae1ca291fa480c .layout-left li,
#aae1ca291fa480c .layout-center li,
#aae1ca291fa480c .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#aae1ca291fa480c .layout-left li a,
#aae1ca291fa480c .layout-center li a,
#aae1ca291fa480c .layout-right li a {
  height: 100%;
}
#aae1ca291fa480c > .tab-tabs .layout-left {
  text-align: left;
}
#aae1ca291fa480c > .tab-tabs .layout-center {
  text-align: center;
}
#aae1ca291fa480c > .tab-tabs .layout-right {
  text-align: right;
}
#aae1ca291fa480c .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#aae1ca291fa480c .tab-content-wrap {
  background-color: #ffffff;
}
#aae1ca291fa480c .tab-contents,
#aae1ca291fa480c .tab-contents-wrap {
  pointer-events: none;
}
#aae1ca291fa480c .tab-content,
#aae1ca291fa480c .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#aae1ca291fa480c .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#aae1ca291fa480c .tab-wrap .tab-contents {
  height: 100%;
}
#aae1ca291fa480c .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ab0a7a3241a2ec6 {
  overflow: hidden;
}
#ab0a7a3241a2ec6 , #ab0a7a3241a2ec6 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(0, 0, 0, 1);}#aa458aff76a63e1 {
  overflow: hidden;
  pointer-events: none;
}
#aa458aff76a63e1 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 50px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#aa458aff76a63e1 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#aa458aff76a63e1 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#aa458aff76a63e1 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 50px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#aa458aff76a63e1 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#aa458aff76a63e1 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#aa458aff76a63e1 > .tab-wrap > div > .tab-nav,
#aa458aff76a63e1 > .tab-nav,
#aa458aff76a63e1 > .tab-tabs > .tab-wrap > div > .tab-nav,
#aa458aff76a63e1 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 0;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
  border-right-color: rgba(204, 204, 204, 0.39);
  border-left-color: rgba(204, 204, 204, 0.39);
  border-top-color: rgba(204, 204, 204, 0.39);
  border-right-width: 0;
  border-left-width: 0;
  border-top-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-top-style: solid;
}
#aa458aff76a63e1 > .tab-wrap > div > .tab-nav-horizontal,
#aa458aff76a63e1 > .tab-nav-horizontal,
#aa458aff76a63e1 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#aa458aff76a63e1 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#aa458aff76a63e1 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#aa458aff76a63e1 > .tab-nav-horizontal::-webkit-scrollbar,
#aa458aff76a63e1 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#aa458aff76a63e1 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#aa458aff76a63e1 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#aa458aff76a63e1 > .tab-nav-horizontal.tagScroll,
#aa458aff76a63e1 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#aa458aff76a63e1 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#aa458aff76a63e1 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#aa458aff76a63e1 > .tab-nav-horizontal.tagScroll li a,
#aa458aff76a63e1 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#aa458aff76a63e1 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#aa458aff76a63e1 > .tab-wrap > div > .tab-nav a,
#aa458aff76a63e1 > .tab-nav a,
#aa458aff76a63e1 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#aa458aff76a63e1 > .tab-tabs > .tab-nav a {
  padding: 0 38px;
}
#aa458aff76a63e1 > .tab-wrap > div > .tab-nav li a,
#aa458aff76a63e1 > .tab-nav li a,
#aa458aff76a63e1 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#aa458aff76a63e1 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 3px;
  margin-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  background-color: #e5e5e5;
  padding: 0 38px;
}
#aa458aff76a63e1 > .tab-wrap > div > .tab-nav li a svg,
#aa458aff76a63e1 > .tab-nav li a svg,
#aa458aff76a63e1 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#aa458aff76a63e1 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#aa458aff76a63e1 > .tab-wrap > div > .tab-nav li a .ap_icon,
#aa458aff76a63e1 > .tab-nav li a .ap_icon,
#aa458aff76a63e1 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#aa458aff76a63e1 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#aa458aff76a63e1 > .tab-wrap > div > .tab-nav li a:hover,
#aa458aff76a63e1 > .tab-nav li a:hover,
#aa458aff76a63e1 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#aa458aff76a63e1 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a90e2;
  border-bottom-width: 0;
  border-bottom-color: #4a90e2;
  border-bottom-style: solid;
  border-right-color: #4a90e2;
  border-left-color: #4a90e2;
  border-top-color: #4a90e2;
  border-right-width: 0;
  border-left-width: 0;
  border-top-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-top-style: solid;
}
#aa458aff76a63e1 > .tab-wrap > div > .tab-nav li.uk-active a,
#aa458aff76a63e1 > .tab-nav li.uk-active a,
#aa458aff76a63e1 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#aa458aff76a63e1 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 0;
  border-bottom-style: solid;
  border-right-width: 0;
  border-left-width: 0;
  border-top-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-top-style: solid;
  background-color: #666666;
}
#aa458aff76a63e1 .layout-left li,
#aa458aff76a63e1 .layout-center li,
#aa458aff76a63e1 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#aa458aff76a63e1 .layout-left li a,
#aa458aff76a63e1 .layout-center li a,
#aa458aff76a63e1 .layout-right li a {
  height: 100%;
}
#aa458aff76a63e1 > .tab-tabs .layout-left {
  text-align: left;
}
#aa458aff76a63e1 > .tab-tabs .layout-center {
  text-align: center;
}
#aa458aff76a63e1 > .tab-tabs .layout-right {
  text-align: right;
}
#aa458aff76a63e1 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#aa458aff76a63e1 .tab-content-wrap {
  background-color: #ffffff;
}
#aa458aff76a63e1 .tab-contents,
#aa458aff76a63e1 .tab-contents-wrap {
  pointer-events: none;
}
#aa458aff76a63e1 .tab-content,
#aa458aff76a63e1 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#aa458aff76a63e1 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#aa458aff76a63e1 .tab-wrap .tab-contents {
  height: 100%;
}
#aa458aff76a63e1 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a97e3a2f02a44bb > .ele-wrap {background-color: rgba(240, 240, 240, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 4px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-left-radius: 4px;}#a81a2a5612adb03 > .ele-wrap {background-color: rgba(240, 240, 240, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 4px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-left-radius: 4px;}#a2b62ac898a25d9 > .ele-wrap {background-color: rgba(240, 240, 240, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 4px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-left-radius: 4px;}#a0a7ea2638ab0c6 > .ele-wrap {background-color: rgba(240, 240, 240, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 4px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-left-radius: 4px;}#abeedaacd8adacd > .ele-wrap {background-color: rgba(240, 240, 240, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 4px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-left-radius: 4px;}#a48f2aa2f8aa877 > .ele-wrap {background-color: rgba(240, 240, 240, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 4px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-left-radius: 4px;}#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#acaaba61f4a8240 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ae355af997aec75 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a5f40a9902ab76a > .ele-wrap {background-color: rgba(0, 73, 146, 0.55);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4912a947aae55a .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a4912a947aae55a .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a4912a947aae55a .ap-icon {
  margin-right: 6px;
}
#a4912a947aae55a .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #e5e5e5;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 12px;
  margin-right: 8px;
  margin-left: 0;
  width: nullpx;
  height: 38px;
  background-color: #e5e5e5;
}
#a4912a947aae55a .menu-list > li.icon-bottom > a,
#a4912a947aae55a .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a4912a947aae55a .menu-list > li.icon-bottom > a .ap-icon,
#a4912a947aae55a .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a4912a947aae55a .menu-list > li.icon-bottom > a .ap-icon svg,
#a4912a947aae55a .menu-list > li.icon-top > a .ap-icon svg,
#a4912a947aae55a .menu-list > li.icon-bottom > a .ap-icon img,
#a4912a947aae55a .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a4912a947aae55a .menu-list > li.icon-right > a .ap-icon,
#a4912a947aae55a .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a4912a947aae55a .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a4912a947aae55a .menu-list > li:hover > a,
#a4912a947aae55a .menu-list > li.active > a {
  background: #004992;
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 0;
  border-top-color: #235ff5;
  border-top-style: none;
  border-right-color: #235ff5;
  border-left-color: #235ff5;
  border-bottom-color: #235ff5;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#a4912a947aae55a .menu-list > li.active > a {
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4912a947aae55a .menu-list ul,
#a4912a947aae55a .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4912a947aae55a .menu-list ul {
  top: 107px;
  left: 50%;
  transform: translateX(-50%);
}
#a4912a947aae55a .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4912a947aae55a .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4912a947aae55a .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aa058afdd8a6a77 .a7341a07d3a4ece {
  overflow: hidden;
}
#aa058afdd8a6a77 .a7341a07d3a4ece , #aa058afdd8a6a77 .a7341a07d3a4ece > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(11, 11, 11, 1);}#aa058afdd8a6a77 .a93cfaa965a39f6 {
  overflow: hidden;
}
#aa058afdd8a6a77 .a93cfaa965a39f6 , #aa058afdd8a6a77 .a93cfaa965a39f6 > * {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(106, 106, 106, 1);}#aa058afdd8a6a77 .a4c85abc4fa717b > .ele-wrap {background-color: rgba(75, 75, 75, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa058afdd8a6a77 .a0956a1e9fa5242  {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#aa058afdd8a6a77 .acda2ad469aa77b > .ele-wrap {background-color: rgba(0, 73, 146, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa058afdd8a6a77 .a2d44a43aeae36d  {
        font-weight: normal;
        font-style: normal;
    font-size: 30px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#aa058afdd8a6a77 .a1655a6081a1176 > .ele-wrap {background-color: rgba(194, 200, 204, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa058afdd8a6a77 .a5fbea714bad73a  {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#aa058afdd8a6a77 .aa7a0af869a36f5 .ele-wrap {border-width: 0px;border-style: solid;font-size: 14px;justify-content: center;}#aa058afdd8a6a77 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aa058afdd8a6a77 .uk-position-center-left-out {
    left: -30px;
  }
  #aa058afdd8a6a77 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#a6551a56c3a7b31 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ab1e5a4ccaabab0 {
  min-height: 300px;
}
#a6eeca0feda3bb4 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a5f40a9902ab76a > .ele-wrap {background-color: rgba(0, 73, 146, 0.55);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a160ca9f61a40a4 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a160ca9f61a40a4 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a160ca9f61a40a4 .ap-icon {
  margin-right: 6px;
}
#a160ca9f61a40a4 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #e5e5e5;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 12px;
  margin-right: 8px;
  margin-left: 0;
  width: nullpx;
  height: 38px;
  background-color: #e5e5e5;
}
#a160ca9f61a40a4 .menu-list > li.icon-bottom > a,
#a160ca9f61a40a4 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a160ca9f61a40a4 .menu-list > li.icon-bottom > a .ap-icon,
#a160ca9f61a40a4 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a160ca9f61a40a4 .menu-list > li.icon-bottom > a .ap-icon svg,
#a160ca9f61a40a4 .menu-list > li.icon-top > a .ap-icon svg,
#a160ca9f61a40a4 .menu-list > li.icon-bottom > a .ap-icon img,
#a160ca9f61a40a4 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a160ca9f61a40a4 .menu-list > li.icon-right > a .ap-icon,
#a160ca9f61a40a4 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a160ca9f61a40a4 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a160ca9f61a40a4 .menu-list > li:hover > a,
#a160ca9f61a40a4 .menu-list > li.active > a {
  background: #004992;
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 0;
  border-top-color: #235ff5;
  border-top-style: none;
  border-right-color: #235ff5;
  border-left-color: #235ff5;
  border-bottom-color: #235ff5;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#a160ca9f61a40a4 .menu-list > li.active > a {
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a160ca9f61a40a4 .menu-list ul,
#a160ca9f61a40a4 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a160ca9f61a40a4 .menu-list ul {
  top: 107px;
  left: 50%;
  transform: translateX(-50%);
}
#a160ca9f61a40a4 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a160ca9f61a40a4 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a160ca9f61a40a4 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a1f43a8e17ad8f5 a {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(0, 73, 146, 1);}#a1f43a8e17ad8f5 a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(0, 73, 146, 1);}#ac630a12b3aa7c6 {
  overflow: hidden;
}
#ac630a12b3aa7c6 , #ac630a12b3aa7c6 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 30px;text-align: center;font-family: inherit;color: rgba(51, 51, 51, 1);}#ab678a6932ab454  {
        font-weight: normal;
        font-style: normal;
    text-align: right;font-family: inherit;}#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#a85b8aac60a45b4 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ada15aaaa5af6c7 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a91ecaf839ac00f > .ele-wrap {background-color: rgba(0, 73, 146, 0.55);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a721da841ea81fe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a721da841ea81fe .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a721da841ea81fe .ap-icon {
  margin-right: 6px;
}
#a721da841ea81fe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #e5e5e5;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 12px;
  margin-right: 8px;
  margin-left: 0;
  width: nullpx;
  height: 38px;
  background-color: #e5e5e5;
}
#a721da841ea81fe .menu-list > li.icon-bottom > a,
#a721da841ea81fe .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a721da841ea81fe .menu-list > li.icon-bottom > a .ap-icon,
#a721da841ea81fe .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a721da841ea81fe .menu-list > li.icon-bottom > a .ap-icon svg,
#a721da841ea81fe .menu-list > li.icon-top > a .ap-icon svg,
#a721da841ea81fe .menu-list > li.icon-bottom > a .ap-icon img,
#a721da841ea81fe .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a721da841ea81fe .menu-list > li.icon-right > a .ap-icon,
#a721da841ea81fe .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a721da841ea81fe .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a721da841ea81fe .menu-list > li:hover > a,
#a721da841ea81fe .menu-list > li.active > a {
  background: #004992;
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 0;
  border-top-color: #235ff5;
  border-top-style: none;
  border-right-color: #235ff5;
  border-left-color: #235ff5;
  border-bottom-color: #235ff5;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#a721da841ea81fe .menu-list > li.active > a {
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a721da841ea81fe .menu-list ul,
#a721da841ea81fe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a721da841ea81fe .menu-list ul {
  top: 107px;
  left: 50%;
  transform: translateX(-50%);
}
#a721da841ea81fe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a721da841ea81fe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a721da841ea81fe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a4836ab327ab844 .a4acfad530a7da6 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4836ab327ab844 .a4acfad530a7da6  > .ele-wrap:hover {background-color: rgba(0, 73, 146, 1);color: #ffffff;}#a4836ab327ab844 .a4acfad530a7da6:hover * {color: #ffffff  !important}
                            #a4836ab327ab844 .a4acfad530a7da6:hover .line{border-color: #ffffff  !important}#a4836ab327ab844 .a78caac8b7a0430 {
  overflow: hidden;
}
#a4836ab327ab844 .a78caac8b7a0430 , #a4836ab327ab844 .a78caac8b7a0430 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(153, 153, 153, 1);}#a4836ab327ab844 .a34b1a40b5a603a {
  overflow: hidden;
}
#a4836ab327ab844 .a34b1a40b5a603a , #a4836ab327ab844 .a34b1a40b5a603a > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(51, 51, 51, 1);}#a4836ab327ab844 .a3960aa380a94b1 .ele-wrap {color: #333;border-width: 0px;border-style: solid;font-size: 14px;justify-content: center;background-color: transparent;}#a4836ab327ab844 .uk-grid {
  margin-left: -23px;
}
#a4836ab327ab844 .uk-grid > * {
  padding-left: 23px;
}
#a4836ab327ab844 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a4836ab327ab844 .uk-position-center-left-out {
    left: -30px;
  }
  #a4836ab327ab844 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#a85b8aac60a45b4 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ab393a4610a4f24 {
  min-height: 300px;
}
#a3fd6a80b8a1f15 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a6f08a6d9aa4a8f > .ele-wrap {background-color: rgba(0, 73, 146, 0.55);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a61efa0185a789a .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a61efa0185a789a .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a61efa0185a789a .ap-icon {
  margin-right: 6px;
}
#a61efa0185a789a .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #e5e5e5;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 12px;
  margin-right: 8px;
  margin-left: 0;
  width: nullpx;
  height: 38px;
  background-color: #e5e5e5;
}
#a61efa0185a789a .menu-list > li.icon-bottom > a,
#a61efa0185a789a .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a61efa0185a789a .menu-list > li.icon-bottom > a .ap-icon,
#a61efa0185a789a .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a61efa0185a789a .menu-list > li.icon-bottom > a .ap-icon svg,
#a61efa0185a789a .menu-list > li.icon-top > a .ap-icon svg,
#a61efa0185a789a .menu-list > li.icon-bottom > a .ap-icon img,
#a61efa0185a789a .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a61efa0185a789a .menu-list > li.icon-right > a .ap-icon,
#a61efa0185a789a .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a61efa0185a789a .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a61efa0185a789a .menu-list > li:hover > a,
#a61efa0185a789a .menu-list > li.active > a {
  background: #004992;
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 0;
  border-top-color: #235ff5;
  border-top-style: none;
  border-right-color: #235ff5;
  border-left-color: #235ff5;
  border-bottom-color: #235ff5;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#a61efa0185a789a .menu-list > li.active > a {
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a61efa0185a789a .menu-list ul,
#a61efa0185a789a .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a61efa0185a789a .menu-list ul {
  top: 107px;
  left: 50%;
  transform: translateX(-50%);
}
#a61efa0185a789a .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a61efa0185a789a .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a61efa0185a789a .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ad67eaceefa8071 a {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(0, 73, 146, 1);}#ad67eaceefa8071 a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(0, 73, 146, 1);}#abd17a3acaa09ae {
  overflow: hidden;
}
#abd17a3acaa09ae , #abd17a3acaa09ae > * {
        font-weight: normal;
        font-style: normal;
    font-size: 30px;text-align: center;font-family: inherit;color: rgba(51, 51, 51, 1);}#a4904a566ba8bff  {
        font-weight: normal;
        font-style: normal;
    text-align: right;font-family: inherit;}#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#ae3c1ab775a0bd1 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a2731ac834acf5c .news-list {
  overflow: hidden;
}
#a2731ac834acf5c .owl-dots {
  left: 50%;
  transform: translateX(-50%);
}
#a2731ac834acf5c .owl-carousel .owl-item {
  width: 100%;
}
#a1422a60fcabec4 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a064ca83c8ae746 .a3f49a59c4a4431 > .ele-wrap {background-color: rgba(74, 144, 226, 1);}#a064ca83c8ae746 .a3f49a59c4a4431  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a064ca83c8ae746 .a1b80ad590a9567 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a064ca83c8ae746 .ae5a6ab8d4abc54 {
  overflow: hidden;
}
#a064ca83c8ae746 .ae5a6ab8d4abc54 .img-wrap {
  transition: all 0.3s ease-in;
}
#a064ca83c8ae746 .ae5a6ab8d4abc54 .img-wrap:hover {
  transform: scale(1.1);
}
#a064ca83c8ae746 .af3f1af182a4585 > .ele-wrap {background-color: rgba(0, 73, 146, 0.8);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a064ca83c8ae746 .a636da4f8dac94d {
  overflow: hidden;
}
#a064ca83c8ae746 .a636da4f8dac94d , #a064ca83c8ae746 .a636da4f8dac94d > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a064ca83c8ae746 .aa78ea3b30a0b69 .ele-wrap {border-color: rgba(255, 255, 255, 1);color: #ffffff;border-width: 1px;border-style: solid;font-size: 12px;justify-content: center;background-color: transparent;}#a064ca83c8ae746 .aba70a9c2ca191f .ele-wrap {border-width: 0px;border-style: solid;font-size: 14px;justify-content: center;background-color: transparent;}#a064ca83c8ae746 .uk-grid {
  margin-left: -12px;
}
#a064ca83c8ae746 .uk-grid > * {
  padding-left: 12px;
}
#a064ca83c8ae746 .uk-grid > .uk-grid-margin {
  margin-top: 12px;
}
#a064ca83c8ae746 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a064ca83c8ae746 .uk-position-center-left-out {
    left: -30px;
  }
  #a064ca83c8ae746 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a0443a294dacee7 .a3c6eaa440a404d {
  overflow: hidden;
}
#a0443a294dacee7 .a3c6eaa440a404d .img-wrap {
  transition: all 0.3s ease-in;
}
#a0443a294dacee7 .a3c6eaa440a404d .img-wrap:hover {
  transform: scale(1.1);
}
#a0443a294dacee7 .af566a58e1abf3f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0443a294dacee7 .a9122a41c6a425d {
  overflow: hidden;
}
#a0443a294dacee7 .a9122a41c6a425d , #a0443a294dacee7 .a9122a41c6a425d > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a0443a294dacee7 .ada88af1cbae34c {
  overflow: hidden;
}
#a0443a294dacee7 .ada88af1cbae34c , #a0443a294dacee7 .ada88af1cbae34c > * {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;}#a0443a294dacee7 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a0443a294dacee7 .uk-position-center-left-out {
    left: -30px;
  }
  #a0443a294dacee7 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ac752aaa4bac5f7 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(52, 125, 179, 1);border-right-color: rgba(52, 125, 179, 1);border-left-color: rgba(52, 125, 179, 1);border-bottom-color: rgba(52, 125, 179, 1);}#ac752aaa4bac5f7  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);color: #00519d;}#ac752aaa4bac5f7:hover * {color: #00519d  !important}
                            #ac752aaa4bac5f7:hover .line{border-color: #00519d  !important}#a2946a8007a7205 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(103, 172, 224, 1);border-right-color: rgba(52, 125, 179, 1);border-left-color: rgba(103, 172, 224, 1);border-bottom-color: rgba(103, 172, 224, 1);}#a2946a8007a7205  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);color: #00519d;}#a2946a8007a7205:hover * {color: #00519d  !important}
                            #a2946a8007a7205:hover .line{border-color: #00519d  !important}#a71bca1507a6b7b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(103, 172, 224, 1);border-right-color: rgba(52, 125, 179, 1);border-left-color: rgba(103, 172, 224, 1);border-bottom-color: rgba(103, 172, 224, 1);}#a71bca1507a6b7b  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);color: #00519d;}#a71bca1507a6b7b:hover * {color: #00519d  !important}
                            #a71bca1507a6b7b:hover .line{border-color: #00519d  !important}#a9d7caf1d8a29be > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(103, 172, 224, 1);border-right-color: rgba(52, 125, 179, 1);border-left-color: rgba(103, 172, 224, 1);border-bottom-color: rgba(103, 172, 224, 1);}#a9d7caf1d8a29be  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);color: #00519d;}#a9d7caf1d8a29be:hover * {color: #00519d  !important}
                            #a9d7caf1d8a29be:hover .line{border-color: #00519d  !important}#a9c0ea3d14a1b5e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af771ad816a9d1d {
  overflow: hidden;
}
#af771ad816a9d1d , #af771ad816a9d1d > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(0, 0, 0, 1);}#adbb1af7eba0e45 .ab3efa03faa3c48 > .ele-wrap {background-color: rgba(0, 0, 0, 0.84);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#adbb1af7eba0e45 .abe63a1008a5f13 {
  overflow: hidden;
}
#adbb1af7eba0e45 .abe63a1008a5f13 , #adbb1af7eba0e45 .abe63a1008a5f13 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(255, 255, 255, 1);}#adbb1af7eba0e45 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #adbb1af7eba0e45 .uk-position-center-left-out {
    left: -30px;
  }
  #adbb1af7eba0e45 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a1fa9a753bab2f2 .ab987a95f1a3716 {
  overflow: hidden;
}
#a1fa9a753bab2f2 .ab987a95f1a3716 , #a1fa9a753bab2f2 .ab987a95f1a3716 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(11, 11, 11, 1);}#a1fa9a753bab2f2 .a96c6a702ca9d1a {
  overflow: hidden;
}
#a1fa9a753bab2f2 .a96c6a702ca9d1a , #a1fa9a753bab2f2 .a96c6a702ca9d1a > * {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(106, 106, 106, 1);}#a1fa9a753bab2f2 .a1ed6aa3c4a1a80 > .ele-wrap {background-color: rgba(75, 75, 75, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1fa9a753bab2f2 .a11f6aab15a2c20  {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a1fa9a753bab2f2 .a8f72a50e2a998b > .ele-wrap {background-color: rgba(0, 73, 146, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1fa9a753bab2f2 .a1b8aa2474a60f9  {
        font-weight: normal;
        font-style: normal;
    font-size: 30px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a1fa9a753bab2f2 .a1a28a6cecae839 > .ele-wrap {background-color: rgba(194, 200, 204, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1fa9a753bab2f2 .a40aea7184a3570  {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a1fa9a753bab2f2 .af8aaadd9da1a62 .ele-wrap {border-width: 0px;border-style: solid;font-size: 14px;justify-content: center;background-image: url(/resources/upload/aaae9ac7f6a8e08/1651026931610.png);background-color: transparent;}#a1fa9a753bab2f2 .af8aaadd9da1a62 .ele-wrap:hover {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651026943557.png);}#a1fa9a753bab2f2 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a1fa9a753bab2f2 .uk-position-center-left-out {
    left: -30px;
  }
  #a1fa9a753bab2f2 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#aea65ac74fa525d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a39d0a49b5a3097 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#ade7aae645a0c14 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a11a5a9be4ad8b7 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a11a5a9be4ad8b7 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a11a5a9be4ad8b7 .ap-icon {
  margin-right: 6px;
}
#a11a5a9be4ad8b7 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  margin-right: 10px;
  width: 150px;
  background-color: #ffffff;
  height: 50px;
}
#a11a5a9be4ad8b7 .menu-list > li.icon-bottom > a,
#a11a5a9be4ad8b7 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a11a5a9be4ad8b7 .menu-list > li.icon-bottom > a .ap-icon,
#a11a5a9be4ad8b7 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a11a5a9be4ad8b7 .menu-list > li.icon-bottom > a .ap-icon svg,
#a11a5a9be4ad8b7 .menu-list > li.icon-top > a .ap-icon svg,
#a11a5a9be4ad8b7 .menu-list > li.icon-bottom > a .ap-icon img,
#a11a5a9be4ad8b7 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a11a5a9be4ad8b7 .menu-list > li.icon-right > a .ap-icon,
#a11a5a9be4ad8b7 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a11a5a9be4ad8b7 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a11a5a9be4ad8b7 .menu-list > li:hover > a,
#a11a5a9be4ad8b7 .menu-list > li.active > a {
  background: #004992;
  background-color: #004992;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 0;
  border-top-color: #235ff5;
  border-top-style: none;
  border-right-color: #235ff5;
  border-left-color: #235ff5;
  border-bottom-color: #235ff5;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#a11a5a9be4ad8b7 .menu-list > li.active > a {
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a11a5a9be4ad8b7 .menu-list ul,
#a11a5a9be4ad8b7 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a11a5a9be4ad8b7 .menu-list ul {
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
}
#a11a5a9be4ad8b7 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a11a5a9be4ad8b7 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a11a5a9be4ad8b7 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a61b9a2570ac93d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;box-shadow: 0px 3px 21px 3px rgba(99, 99, 99, 0.31);}#a001aaeaefa4eb2 .a3053ab383ab7b5 {
  overflow: hidden;
}
#a001aaeaefa4eb2 .a3053ab383ab7b5 .img-wrap {
  transition: all 0.3s ease-in;
}
#a001aaeaefa4eb2 .a3053ab383ab7b5 .img-wrap:hover {
  transform: scale(1.1);
}
#a001aaeaefa4eb2 .ac953a9542a6674 {
  overflow: hidden;
}
#a001aaeaefa4eb2 .ac953a9542a6674 , #a001aaeaefa4eb2 .ac953a9542a6674 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(42, 42, 42, 1);}#a001aaeaefa4eb2 .uk-grid {
  margin-left: -20px;
}
#a001aaeaefa4eb2 .uk-grid > * {
  padding-left: 20px;
}
#a001aaeaefa4eb2 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a001aaeaefa4eb2 .uk-position-center-left-out {
    left: -30px;
  }
  #a001aaeaefa4eb2 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a9fadac325a7641 {
  overflow: hidden;
}
#a9fadac325a7641 , #a9fadac325a7641 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#a85b8aac60a45b4 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a54f9a5fa1aefdf .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a84f8a8fe9a17a9 > .ele-wrap {background-color: rgba(0, 73, 146, 0.55);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2284a7f21a34b5 > .ele-wrap {background-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a694fa7305ad80c > .ele-wrap {background-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a44dba73aba959e {
  overflow: hidden;
}
#a44dba73aba959e .img-wrap {
  box-shadow: NaNpx NaNpx 0px 0px ;
  transition: all 0.3s ease-in;
}
#a44dba73aba959e .img-wrap:hover {
  transform: scale(1);
}
#a20e8aecbba639b > .ele-wrap {background-color: rgba(0, 0, 0, 0.37);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1b25a888fad196 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#accc3a51eea764e {
  overflow: hidden;
}
#accc3a51eea764e .img-wrap {
  transition: all 0.3s ease-in;
}
#accc3a51eea764e .img-wrap:hover {
  transform: scale(1);
}
#acce7aced1a0b2f > .ele-wrap {background-color: rgba(0, 73, 146, 0.7);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad22da44bcaed16 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6ad6aac28a88e7 {
  overflow: hidden;
}
#a6ad6aac28a88e7 .img-wrap {
  box-shadow: NaNpx NaNpx 0px 0px ;
  transition: all 0.3s ease-in;
}
#a6ad6aac28a88e7 .img-wrap:hover {
  transform: scale(1);
}
#ab21caf8d0a46b0 > .ele-wrap {background-color: rgba(0, 0, 0, 0.37);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae5c1a8729ae6b8 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0412a3014ac273 {
  overflow: hidden;
}
#a0412a3014ac273 .img-wrap {
  transition: all 0.3s ease-in;
}
#a0412a3014ac273 .img-wrap:hover {
  transform: scale(1);
}
#a511ba34bca9820 > .ele-wrap {background-color: rgba(0, 73, 146, 0.7);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6672a1b8ba77fc > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2fd4a3522a52ce {
  overflow: hidden;
}
#a2fd4a3522a52ce .img-wrap {
  box-shadow: NaNpx NaNpx 0px 0px ;
  transition: all 0.3s ease-in;
}
#a2fd4a3522a52ce .img-wrap:hover {
  transform: scale(1);
}
#afd61a541fa8901 > .ele-wrap {background-color: rgba(0, 0, 0, 0.37);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#adbe2aa45ba2826 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a51bfa1d4cab1a2 {
  overflow: hidden;
}
#a51bfa1d4cab1a2 .img-wrap {
  transition: all 0.3s ease-in;
}
#a51bfa1d4cab1a2 .img-wrap:hover {
  transform: scale(1);
}
#a5075a5e38addbb > .ele-wrap {background-color: rgba(0, 73, 146, 0.7);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a626aa1bbfac3fc > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa1bda3979aa3c3 {
  overflow: hidden;
}
#aa1bda3979aa3c3 .img-wrap {
  box-shadow: NaNpx NaNpx 0px 0px ;
  transition: all 0.3s ease-in;
}
#aa1bda3979aa3c3 .img-wrap:hover {
  transform: scale(1);
}
#af79aa213ba5ddc > .ele-wrap {background-color: rgba(0, 0, 0, 0.37);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa2cca79cda2ead > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0ee7afea4a250d {
  overflow: hidden;
}
#a0ee7afea4a250d .img-wrap {
  transition: all 0.3s ease-in;
}
#a0ee7afea4a250d .img-wrap:hover {
  transform: scale(1);
}
#a0be0ae6d7a0b39 > .ele-wrap {background-color: rgba(0, 73, 146, 0.7);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a68e5a6d4ea365a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa13cabe55a32bf {
  overflow: hidden;
}
#aa13cabe55a32bf .img-wrap {
  box-shadow: NaNpx NaNpx 0px 0px ;
  transition: all 0.3s ease-in;
}
#aa13cabe55a32bf .img-wrap:hover {
  transform: scale(1);
}
#abe16ad945a6eda > .ele-wrap {background-color: rgba(0, 0, 0, 0.37);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa3c9adafdae22f > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6957aad84acc37 {
  overflow: hidden;
}
#a6957aad84acc37 .img-wrap {
  transition: all 0.3s ease-in;
}
#a6957aad84acc37 .img-wrap:hover {
  transform: scale(1);
}
#a7a35a5ce7ac1af > .ele-wrap {background-color: rgba(0, 73, 146, 0.7);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acaeca8d18a0368 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ef6ab0b1af121 {
  overflow: hidden;
}
#a5ef6ab0b1af121 .img-wrap {
  box-shadow: NaNpx NaNpx 0px 0px ;
  transition: all 0.3s ease-in;
}
#a5ef6ab0b1af121 .img-wrap:hover {
  transform: scale(1);
}
#a7e02a02a8af866 > .ele-wrap {background-color: rgba(0, 0, 0, 0.37);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a60d1ae22da292c > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abb84ad1dea3fc3 {
  overflow: hidden;
}
#abb84ad1dea3fc3 .img-wrap {
  transition: all 0.3s ease-in;
}
#abb84ad1dea3fc3 .img-wrap:hover {
  transform: scale(1);
}
#a22c8ad8e8a926b > .ele-wrap {background-color: rgba(0, 73, 146, 0.7);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a080fa9a59a3081 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab317a9701a87ac {
  overflow: hidden;
}
#ab317a9701a87ac .img-wrap {
  box-shadow: NaNpx NaNpx 0px 0px ;
  transition: all 0.3s ease-in;
}
#ab317a9701a87ac .img-wrap:hover {
  transform: scale(1);
}
#a3983abac3a21eb > .ele-wrap {background-color: rgba(0, 0, 0, 0.37);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af17babdcba4986 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1cc2a2531a95f1 {
  overflow: hidden;
}
#a1cc2a2531a95f1 .img-wrap {
  transition: all 0.3s ease-in;
}
#a1cc2a2531a95f1 .img-wrap:hover {
  transform: scale(1);
}
#a64c7a56beaf586 > .ele-wrap {background-color: rgba(0, 73, 146, 0.7);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af872a87baaae2d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac202a8f41aba91 {
  overflow: hidden;
}
#ac202a8f41aba91 .img-wrap {
  box-shadow: NaNpx NaNpx 0px 0px ;
  transition: all 0.3s ease-in;
}
#ac202a8f41aba91 .img-wrap:hover {
  transform: scale(1);
}
#a9699a0a54a7c44 > .ele-wrap {background-color: rgba(0, 0, 0, 0.37);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2747a02ffa62ff > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aab49aaf1fae1dc {
  overflow: hidden;
}
#aab49aaf1fae1dc .img-wrap {
  transition: all 0.3s ease-in;
}
#aab49aaf1fae1dc .img-wrap:hover {
  transform: scale(1);
}
#a8e4daebeca6f7c > .ele-wrap {background-color: rgba(0, 73, 146, 0.7);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0636af7a8a8312 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aba19aa004a7fce {
  overflow: hidden;
}
#aba19aa004a7fce .img-wrap {
  box-shadow: NaNpx NaNpx 0px 0px ;
  transition: all 0.3s ease-in;
}
#aba19aa004a7fce .img-wrap:hover {
  transform: scale(1);
}
#afc90a8fa9a1cd0 > .ele-wrap {background-color: rgba(0, 0, 0, 0.37);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a66e7a336ca1539 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2abea30cfa25ff {
  overflow: hidden;
}
#a2abea30cfa25ff .img-wrap {
  transition: all 0.3s ease-in;
}
#a2abea30cfa25ff .img-wrap:hover {
  transform: scale(1);
}
#a9d78af1e0a4ba9 > .ele-wrap {background-color: rgba(0, 73, 146, 0.7);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5e21af999a55c7 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a964ca5300a0002 {
  overflow: hidden;
}
#a964ca5300a0002 .img-wrap {
  box-shadow: NaNpx NaNpx 0px 0px ;
  transition: all 0.3s ease-in;
}
#a964ca5300a0002 .img-wrap:hover {
  transform: scale(1);
}
#a1355a1db3ac392 > .ele-wrap {background-color: rgba(0, 0, 0, 0.37);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad83aa4c58a4039 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac3d7aa28fa121a {
  overflow: hidden;
}
#ac3d7aa28fa121a .img-wrap {
  transition: all 0.3s ease-in;
}
#ac3d7aa28fa121a .img-wrap:hover {
  transform: scale(1);
}
#a21e5a95e6a1cf1 > .ele-wrap {background-color: rgba(0, 73, 146, 0.7);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1106a31a8a2d3c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2211ac3d4a91be {
  overflow: hidden;
}
#a2211ac3d4a91be .img-wrap {
  box-shadow: NaNpx NaNpx 0px 0px ;
  transition: all 0.3s ease-in;
}
#a2211ac3d4a91be .img-wrap:hover {
  transform: scale(1);
}
#a8e87a009da34d0 > .ele-wrap {background-color: rgba(0, 0, 0, 0.37);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#adca4a4befa4200 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa305aa656a2357 {
  overflow: hidden;
}
#aa305aa656a2357 .img-wrap {
  transition: all 0.3s ease-in;
}
#aa305aa656a2357 .img-wrap:hover {
  transform: scale(1);
}
#a3416aa013a73ad > .ele-wrap {background-color: rgba(0, 73, 146, 0.7);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6131a047ea34a4 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8049a01aba35bd {
  overflow: hidden;
}
#a8049a01aba35bd .img-wrap {
  box-shadow: NaNpx NaNpx 0px 0px ;
  transition: all 0.3s ease-in;
}
#a8049a01aba35bd .img-wrap:hover {
  transform: scale(1);
}
#a2744aef18a8ac6 > .ele-wrap {background-color: rgba(0, 0, 0, 0.37);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae2c2a641fac8a2 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4b25ad756aca8d {
  overflow: hidden;
}
#a4b25ad756aca8d .img-wrap {
  transition: all 0.3s ease-in;
}
#a4b25ad756aca8d .img-wrap:hover {
  transform: scale(1);
}
#ac896a07aba0c62 > .ele-wrap {background-color: rgba(0, 73, 146, 0.7);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab081a1fa4a8576 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5139ad9eda9a2d [data-item="undefined"] {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#a85c7afc31afe59 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a20a5ad18ca85fc .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#acde0a3835a00dd > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aca00a8777a967e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;box-shadow: 0px 3px 21px 3px rgba(99, 99, 99, 0.31);}#aee6fa0aeca03fe .a4d00adc79a0af7 {
  overflow: hidden;
}
#aee6fa0aeca03fe .a4d00adc79a0af7 .img-wrap {
  transition: all 0.3s ease-in;
}
#aee6fa0aeca03fe .a4d00adc79a0af7 .img-wrap:hover {
  transform: scale(1.1);
}
#aee6fa0aeca03fe .a1ff0aed65a8f78 {
  overflow: hidden;
}
#aee6fa0aeca03fe .a1ff0aed65a8f78 , #aee6fa0aeca03fe .a1ff0aed65a8f78 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(42, 42, 42, 1);}#aee6fa0aeca03fe .uk-grid {
  margin-left: -20px;
}
#aee6fa0aeca03fe .uk-grid > * {
  padding-left: 20px;
}
#aee6fa0aeca03fe .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aee6fa0aeca03fe .uk-position-center-left-out {
    left: -30px;
  }
  #aee6fa0aeca03fe .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a7654a5112a8751 {
  overflow: hidden;
}
#a7654a5112a8751 , #a7654a5112a8751 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(0, 0, 0, 1);}#ac8aea6323a4fd1 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ac8aea6323a4fd1 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ac8aea6323a4fd1 .ap-icon {
  margin-right: 6px;
}
#ac8aea6323a4fd1 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  margin-right: 10px;
  width: 150px;
  background-color: #ffffff;
  height: 50px;
}
#ac8aea6323a4fd1 .menu-list > li.icon-bottom > a,
#ac8aea6323a4fd1 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ac8aea6323a4fd1 .menu-list > li.icon-bottom > a .ap-icon,
#ac8aea6323a4fd1 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ac8aea6323a4fd1 .menu-list > li.icon-bottom > a .ap-icon svg,
#ac8aea6323a4fd1 .menu-list > li.icon-top > a .ap-icon svg,
#ac8aea6323a4fd1 .menu-list > li.icon-bottom > a .ap-icon img,
#ac8aea6323a4fd1 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ac8aea6323a4fd1 .menu-list > li.icon-right > a .ap-icon,
#ac8aea6323a4fd1 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ac8aea6323a4fd1 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ac8aea6323a4fd1 .menu-list > li:hover > a,
#ac8aea6323a4fd1 .menu-list > li.active > a {
  background: #004992;
  background-color: #004992;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 0;
  border-top-color: #235ff5;
  border-top-style: none;
  border-right-color: #235ff5;
  border-left-color: #235ff5;
  border-bottom-color: #235ff5;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#ac8aea6323a4fd1 .menu-list > li.active > a {
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#ac8aea6323a4fd1 .menu-list ul,
#ac8aea6323a4fd1 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ac8aea6323a4fd1 .menu-list ul {
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
}
#ac8aea6323a4fd1 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ac8aea6323a4fd1 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ac8aea6323a4fd1 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#a4f51a5a5fa0e11 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a82dba0e8ba8d7e .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a102ca158ca6459 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ace1da40c1a321d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;box-shadow: 0px 3px 21px 3px rgba(99, 99, 99, 0.31);}#aa48ea0d97ae361 .afbdaaa0a5ab329 {
  overflow: hidden;
}
#aa48ea0d97ae361 .afbdaaa0a5ab329 .img-wrap {
  transition: all 0.3s ease-in;
}
#aa48ea0d97ae361 .afbdaaa0a5ab329 .img-wrap:hover {
  transform: scale(1.1);
}
#aa48ea0d97ae361 .a2260ad8abadb88 {
  overflow: hidden;
}
#aa48ea0d97ae361 .a2260ad8abadb88 , #aa48ea0d97ae361 .a2260ad8abadb88 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(42, 42, 42, 1);}#aa48ea0d97ae361 .uk-grid {
  margin-left: -20px;
}
#aa48ea0d97ae361 .uk-grid > * {
  padding-left: 20px;
}
#aa48ea0d97ae361 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aa48ea0d97ae361 .uk-position-center-left-out {
    left: -30px;
  }
  #aa48ea0d97ae361 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ae5e0ae2e9ae2fb {
  overflow: hidden;
}
#ae5e0ae2e9ae2fb , #ae5e0ae2e9ae2fb > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a04fba1185a931e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a04fba1185a931e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a04fba1185a931e .ap-icon {
  margin-right: 6px;
}
#a04fba1185a931e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  margin-right: 10px;
  width: 150px;
  background-color: #ffffff;
  height: 50px;
}
#a04fba1185a931e .menu-list > li.icon-bottom > a,
#a04fba1185a931e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a04fba1185a931e .menu-list > li.icon-bottom > a .ap-icon,
#a04fba1185a931e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a04fba1185a931e .menu-list > li.icon-bottom > a .ap-icon svg,
#a04fba1185a931e .menu-list > li.icon-top > a .ap-icon svg,
#a04fba1185a931e .menu-list > li.icon-bottom > a .ap-icon img,
#a04fba1185a931e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a04fba1185a931e .menu-list > li.icon-right > a .ap-icon,
#a04fba1185a931e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a04fba1185a931e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a04fba1185a931e .menu-list > li:hover > a,
#a04fba1185a931e .menu-list > li.active > a {
  background: #004992;
  background-color: #004992;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 0;
  border-top-color: #235ff5;
  border-top-style: none;
  border-right-color: #235ff5;
  border-left-color: #235ff5;
  border-bottom-color: #235ff5;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#a04fba1185a931e .menu-list > li.active > a {
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a04fba1185a931e .menu-list ul,
#a04fba1185a931e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a04fba1185a931e .menu-list ul {
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
}
#a04fba1185a931e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a04fba1185a931e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a04fba1185a931e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#ac597ada7faf5c4 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ab664a02d6a5df3 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a851aa9b6aa3128 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad506a3465aa773 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;box-shadow: 0px 3px 21px 3px rgba(99, 99, 99, 0.31);}#a64d5aad81a62ad .a7f39a0451a18ca {
  overflow: hidden;
}
#a64d5aad81a62ad .a7f39a0451a18ca .img-wrap {
  transition: all 0.3s ease-in;
}
#a64d5aad81a62ad .a7f39a0451a18ca .img-wrap:hover {
  transform: scale(1.1);
}
#a64d5aad81a62ad .ae691a6c73aca4c {
  overflow: hidden;
}
#a64d5aad81a62ad .ae691a6c73aca4c , #a64d5aad81a62ad .ae691a6c73aca4c > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(42, 42, 42, 1);}#a64d5aad81a62ad .uk-grid {
  margin-left: -20px;
}
#a64d5aad81a62ad .uk-grid > * {
  padding-left: 20px;
}
#a64d5aad81a62ad .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a64d5aad81a62ad .uk-position-center-left-out {
    left: -30px;
  }
  #a64d5aad81a62ad .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ade69a6f2fa6e98 {
  overflow: hidden;
}
#ade69a6f2fa6e98 , #ade69a6f2fa6e98 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(0, 0, 0, 1);}#aa887a73f7a027c .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#aa887a73f7a027c .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#aa887a73f7a027c .ap-icon {
  margin-right: 6px;
}
#aa887a73f7a027c .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  margin-right: 10px;
  width: 150px;
  background-color: #ffffff;
  height: 50px;
}
#aa887a73f7a027c .menu-list > li.icon-bottom > a,
#aa887a73f7a027c .menu-list > li.icon-top > a {
  flex-direction: column;
}
#aa887a73f7a027c .menu-list > li.icon-bottom > a .ap-icon,
#aa887a73f7a027c .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#aa887a73f7a027c .menu-list > li.icon-bottom > a .ap-icon svg,
#aa887a73f7a027c .menu-list > li.icon-top > a .ap-icon svg,
#aa887a73f7a027c .menu-list > li.icon-bottom > a .ap-icon img,
#aa887a73f7a027c .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#aa887a73f7a027c .menu-list > li.icon-right > a .ap-icon,
#aa887a73f7a027c .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#aa887a73f7a027c .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#aa887a73f7a027c .menu-list > li:hover > a,
#aa887a73f7a027c .menu-list > li.active > a {
  background: #004992;
  background-color: #004992;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 0;
  border-top-color: #235ff5;
  border-top-style: none;
  border-right-color: #235ff5;
  border-left-color: #235ff5;
  border-bottom-color: #235ff5;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#aa887a73f7a027c .menu-list > li.active > a {
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aa887a73f7a027c .menu-list ul,
#aa887a73f7a027c .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#aa887a73f7a027c .menu-list ul {
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
}
#aa887a73f7a027c .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#aa887a73f7a027c .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#aa887a73f7a027c .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#a208ca6e34a40c3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a5e30a6ca0aff6c .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a4aeea5dd8aee0c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afb67a8660a4b25 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;box-shadow: 0px 3px 21px 3px rgba(99, 99, 99, 0.31);}#a764ea5720aa85e .a8565a7363a5b77 {
  overflow: hidden;
}
#a764ea5720aa85e .a8565a7363a5b77 .img-wrap {
  transition: all 0.3s ease-in;
}
#a764ea5720aa85e .a8565a7363a5b77 .img-wrap:hover {
  transform: scale(1.1);
}
#a764ea5720aa85e .a2d89a0617a53c8 {
  overflow: hidden;
}
#a764ea5720aa85e .a2d89a0617a53c8 , #a764ea5720aa85e .a2d89a0617a53c8 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(42, 42, 42, 1);}#a764ea5720aa85e .uk-grid {
  margin-left: -20px;
}
#a764ea5720aa85e .uk-grid > * {
  padding-left: 20px;
}
#a764ea5720aa85e .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a764ea5720aa85e .uk-position-center-left-out {
    left: -30px;
  }
  #a764ea5720aa85e .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#aef81a6323a1755 {
  overflow: hidden;
}
#aef81a6323a1755 , #aef81a6323a1755 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(0, 0, 0, 1);}#adf48a4a9ea6465 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#adf48a4a9ea6465 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#adf48a4a9ea6465 .ap-icon {
  margin-right: 6px;
}
#adf48a4a9ea6465 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  margin-right: 10px;
  width: 150px;
  background-color: #ffffff;
  height: 50px;
}
#adf48a4a9ea6465 .menu-list > li.icon-bottom > a,
#adf48a4a9ea6465 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#adf48a4a9ea6465 .menu-list > li.icon-bottom > a .ap-icon,
#adf48a4a9ea6465 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#adf48a4a9ea6465 .menu-list > li.icon-bottom > a .ap-icon svg,
#adf48a4a9ea6465 .menu-list > li.icon-top > a .ap-icon svg,
#adf48a4a9ea6465 .menu-list > li.icon-bottom > a .ap-icon img,
#adf48a4a9ea6465 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#adf48a4a9ea6465 .menu-list > li.icon-right > a .ap-icon,
#adf48a4a9ea6465 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#adf48a4a9ea6465 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#adf48a4a9ea6465 .menu-list > li:hover > a,
#adf48a4a9ea6465 .menu-list > li.active > a {
  background: #004992;
  background-color: #004992;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 0;
  border-top-color: #235ff5;
  border-top-style: none;
  border-right-color: #235ff5;
  border-left-color: #235ff5;
  border-bottom-color: #235ff5;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#adf48a4a9ea6465 .menu-list > li.active > a {
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#adf48a4a9ea6465 .menu-list ul,
#adf48a4a9ea6465 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#adf48a4a9ea6465 .menu-list ul {
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
}
#adf48a4a9ea6465 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#adf48a4a9ea6465 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#adf48a4a9ea6465 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#a8336aeffeaaee8 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a44fba8693ae0e9 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#af174ae842a8872 > .ele-wrap {background-color: rgba(0, 73, 146, 0.55);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#ae3c1ab775a0bd1 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a8d81af060a44ce .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#abec7aefa3ace16 > .ele-wrap {background-color: rgba(0, 73, 146, 0.55);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab8f5a2be2aa01d > .ele-wrap {background-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa4d5a26a5aab5e > .ele-wrap {background-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a64eaa16e5a5b16 > .ele-wrap {background-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8443abd5bab04a > .ele-wrap {background-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aac0aaab08ab47f > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a438ba24d9ae5e4 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9633a9597a3e4d > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aeef7a930aa2cd3 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4395a18f8a454c > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a38c2a8022a834e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6896ab076a45f9 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad93da0417aae51 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a54feae981a6bdc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a79e8a8125a921a {
  overflow: hidden;
  pointer-events: none;
  border-bottom-width: 0;
  border-right-width: 0;
  border-left-width: 0;
  border-top-width: 0;
}
#a79e8a8125a921a > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 100px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a79e8a8125a921a > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a79e8a8125a921a > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a79e8a8125a921a > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 100px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a79e8a8125a921a > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a79e8a8125a921a > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a79e8a8125a921a > .tab-wrap > div > .tab-nav,
#a79e8a8125a921a > .tab-nav,
#a79e8a8125a921a > .tab-tabs > .tab-wrap > div > .tab-nav,
#a79e8a8125a921a > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 0;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: none;
  border-right-color: rgba(204, 204, 204, 0.39);
  border-left-color: rgba(204, 204, 204, 0.39);
  border-top-color: rgba(204, 204, 204, 0.39);
  border-right-width: 0;
  border-left-width: 0;
  border-top-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a79e8a8125a921a > .tab-wrap > div > .tab-nav-horizontal,
#a79e8a8125a921a > .tab-nav-horizontal,
#a79e8a8125a921a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a79e8a8125a921a > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a79e8a8125a921a > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a79e8a8125a921a > .tab-nav-horizontal::-webkit-scrollbar,
#a79e8a8125a921a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a79e8a8125a921a > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a79e8a8125a921a > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a79e8a8125a921a > .tab-nav-horizontal.tagScroll,
#a79e8a8125a921a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a79e8a8125a921a > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 100px;
  overflow-x: auto;
}
#a79e8a8125a921a > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a79e8a8125a921a > .tab-nav-horizontal.tagScroll li a,
#a79e8a8125a921a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a79e8a8125a921a > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a79e8a8125a921a > .tab-wrap > div > .tab-nav a,
#a79e8a8125a921a > .tab-nav a,
#a79e8a8125a921a > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a79e8a8125a921a > .tab-tabs > .tab-nav a {
  padding: 0 30px;
}
#a79e8a8125a921a > .tab-wrap > div > .tab-nav li a,
#a79e8a8125a921a > .tab-nav li a,
#a79e8a8125a921a > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a79e8a8125a921a > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 99px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 100px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  border-right-style: none;
  margin-right: 81px;
  margin-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  background-image: url(/resources/upload/aaae9ac7f6a8e08/1651043149610.png);
  padding: 0 30px;
}
#a79e8a8125a921a > .tab-wrap > div > .tab-nav li a svg,
#a79e8a8125a921a > .tab-nav li a svg,
#a79e8a8125a921a > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a79e8a8125a921a > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a79e8a8125a921a > .tab-wrap > div > .tab-nav li a .ap_icon,
#a79e8a8125a921a > .tab-nav li a .ap_icon,
#a79e8a8125a921a > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a79e8a8125a921a > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a79e8a8125a921a > .tab-wrap > div > .tab-nav li a:hover,
#a79e8a8125a921a > .tab-nav li a:hover,
#a79e8a8125a921a > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a79e8a8125a921a > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a90e2;
  border-bottom-width: 0;
  border-bottom-color: #4a90e2;
  border-bottom-style: solid;
  border-right-color: #4a90e2;
  border-left-color: #4a90e2;
  border-top-color: #4a90e2;
  border-right-width: 0;
  border-left-width: 0;
  border-top-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-top-style: solid;
}
#a79e8a8125a921a > .tab-wrap > div > .tab-nav li.uk-active a,
#a79e8a8125a921a > .tab-nav li.uk-active a,
#a79e8a8125a921a > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a79e8a8125a921a > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 0;
  border-bottom-color: #4a90e2;
  border-bottom-style: none;
  border-right-color: #4a90e2;
  border-left-color: #4a90e2;
  border-top-color: #4a90e2;
  border-right-width: 0;
  border-left-width: 0;
  border-top-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
  background-image: url(/resources/upload/aaae9ac7f6a8e08/1651043149949.png);
}
#a79e8a8125a921a .layout-left li,
#a79e8a8125a921a .layout-center li,
#a79e8a8125a921a .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a79e8a8125a921a .layout-left li a,
#a79e8a8125a921a .layout-center li a,
#a79e8a8125a921a .layout-right li a {
  height: 100%;
}
#a79e8a8125a921a > .tab-tabs .layout-left {
  text-align: left;
}
#a79e8a8125a921a > .tab-tabs .layout-center {
  text-align: center;
}
#a79e8a8125a921a > .tab-tabs .layout-right {
  text-align: right;
}
#a79e8a8125a921a .tab-contents {
  height: 100%;
  height: calc(100% - 100px);
}
#a79e8a8125a921a .tab-content-wrap {
  background-color: transparent;
}
#a79e8a8125a921a .tab-contents,
#a79e8a8125a921a .tab-contents-wrap {
  pointer-events: none;
}
#a79e8a8125a921a .tab-content,
#a79e8a8125a921a .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a79e8a8125a921a .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a79e8a8125a921a .tab-wrap .tab-contents {
  height: 100%;
}
#a79e8a8125a921a .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a0510a344da082e > .ele-wrap {background-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad452ad9afa80b7 > .ele-wrap {background-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a19eba71bca3caa .uk-grid {
  margin-left: -20px;
}
#a19eba71bca3caa .uk-grid > * {
  padding-left: 20px;
}
#a19eba71bca3caa .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a19eba71bca3caa .uk-position-center-left-out {
    left: -30px;
  }
  #a19eba71bca3caa .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#a85b8aac60a45b4 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a3a96a33e6a7b04 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#ac343a1536a98f5 > .ele-wrap {background-color: rgba(0, 73, 146, 0.55);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a371fa359ca7fbf .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a371fa359ca7fbf .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a371fa359ca7fbf .ap-icon {
  margin-right: 6px;
}
#a371fa359ca7fbf .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #e5e5e5;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 12px;
  margin-right: 8px;
  margin-left: 0;
  width: nullpx;
  height: 38px;
  background-color: #e5e5e5;
}
#a371fa359ca7fbf .menu-list > li.icon-bottom > a,
#a371fa359ca7fbf .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a371fa359ca7fbf .menu-list > li.icon-bottom > a .ap-icon,
#a371fa359ca7fbf .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a371fa359ca7fbf .menu-list > li.icon-bottom > a .ap-icon svg,
#a371fa359ca7fbf .menu-list > li.icon-top > a .ap-icon svg,
#a371fa359ca7fbf .menu-list > li.icon-bottom > a .ap-icon img,
#a371fa359ca7fbf .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a371fa359ca7fbf .menu-list > li.icon-right > a .ap-icon,
#a371fa359ca7fbf .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a371fa359ca7fbf .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a371fa359ca7fbf .menu-list > li:hover > a,
#a371fa359ca7fbf .menu-list > li.active > a {
  background: #004992;
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 0;
  border-top-color: #235ff5;
  border-top-style: none;
  border-right-color: #235ff5;
  border-left-color: #235ff5;
  border-bottom-color: #235ff5;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#a371fa359ca7fbf .menu-list > li.active > a {
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a371fa359ca7fbf .menu-list ul,
#a371fa359ca7fbf .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a371fa359ca7fbf .menu-list ul {
  top: 57px;
  left: 50%;
  transform: translateX(-50%);
}
#a371fa359ca7fbf .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a371fa359ca7fbf .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a371fa359ca7fbf .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a1b19a0f87a013d > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abb61a3259a49d9 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad4b3aa44ca660a > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac483a1a61a4cfc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acd2aa089aab79b > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5e52a7c05a34e7 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#a364fa63c2abff7 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ae7aba6bcdaffa3 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#add69a03deac99a > .ele-wrap {background-color: rgba(0, 73, 146, 0.55);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae8e1a9439a094a .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ae8e1a9439a094a .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ae8e1a9439a094a .ap-icon {
  margin-right: 6px;
}
#ae8e1a9439a094a .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #e5e5e5;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 12px;
  margin-right: 8px;
  margin-left: 0;
  width: nullpx;
  height: 38px;
  background-color: #e5e5e5;
}
#ae8e1a9439a094a .menu-list > li.icon-bottom > a,
#ae8e1a9439a094a .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ae8e1a9439a094a .menu-list > li.icon-bottom > a .ap-icon,
#ae8e1a9439a094a .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ae8e1a9439a094a .menu-list > li.icon-bottom > a .ap-icon svg,
#ae8e1a9439a094a .menu-list > li.icon-top > a .ap-icon svg,
#ae8e1a9439a094a .menu-list > li.icon-bottom > a .ap-icon img,
#ae8e1a9439a094a .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ae8e1a9439a094a .menu-list > li.icon-right > a .ap-icon,
#ae8e1a9439a094a .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ae8e1a9439a094a .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ae8e1a9439a094a .menu-list > li:hover > a,
#ae8e1a9439a094a .menu-list > li.active > a {
  background: #004992;
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 0;
  border-top-color: #235ff5;
  border-top-style: none;
  border-right-color: #235ff5;
  border-left-color: #235ff5;
  border-bottom-color: #235ff5;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#ae8e1a9439a094a .menu-list > li.active > a {
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#ae8e1a9439a094a .menu-list ul,
#ae8e1a9439a094a .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ae8e1a9439a094a .menu-list ul {
  top: 57px;
  left: 50%;
  transform: translateX(-50%);
}
#ae8e1a9439a094a .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ae8e1a9439a094a .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ae8e1a9439a094a .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#af1a7a0a0ca8e17 {
  overflow: hidden;
}
#af1a7a0a0ca8e17 .img-wrap {
  transition: all 0.3s ease-in;
}
#af1a7a0a0ca8e17 .img-wrap:hover {
  transform: scale(1.1);
}
#aad99afca0a132f {
  overflow: hidden;
}
#aad99afca0a132f .img-wrap {
  transition: all 0.3s ease-in;
}
#aad99afca0a132f .img-wrap:hover {
  transform: scale(1.1);
}
#a4240a937ca62cd {
  overflow: hidden;
}
#a4240a937ca62cd .img-wrap {
  transition: all 0.3s ease-in;
}
#a4240a937ca62cd .img-wrap:hover {
  transform: scale(1.1);
}
#aa8e5a02c7a36ac {
  overflow: hidden;
}
#aa8e5a02c7a36ac .img-wrap {
  transition: all 0.3s ease-in;
}
#aa8e5a02c7a36ac .img-wrap:hover {
  transform: scale(1.1);
}
#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#abddfa211da81d8 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#af80ba68beaeadb .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#af12fabcc6a3946 > .ele-wrap {background-color: rgba(0, 73, 146, 0.55);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6cd1ae395a1fc8 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6cd1ae395a1fc8 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6cd1ae395a1fc8 .ap-icon {
  margin-right: 6px;
}
#a6cd1ae395a1fc8 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #e5e5e5;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 12px;
  margin-right: 8px;
  margin-left: 0;
  width: nullpx;
  height: 38px;
  background-color: #e5e5e5;
}
#a6cd1ae395a1fc8 .menu-list > li.icon-bottom > a,
#a6cd1ae395a1fc8 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6cd1ae395a1fc8 .menu-list > li.icon-bottom > a .ap-icon,
#a6cd1ae395a1fc8 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6cd1ae395a1fc8 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6cd1ae395a1fc8 .menu-list > li.icon-top > a .ap-icon svg,
#a6cd1ae395a1fc8 .menu-list > li.icon-bottom > a .ap-icon img,
#a6cd1ae395a1fc8 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6cd1ae395a1fc8 .menu-list > li.icon-right > a .ap-icon,
#a6cd1ae395a1fc8 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6cd1ae395a1fc8 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6cd1ae395a1fc8 .menu-list > li:hover > a,
#a6cd1ae395a1fc8 .menu-list > li.active > a {
  background: #004992;
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 0;
  border-top-color: #235ff5;
  border-top-style: none;
  border-right-color: #235ff5;
  border-left-color: #235ff5;
  border-bottom-color: #235ff5;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#a6cd1ae395a1fc8 .menu-list > li.active > a {
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6cd1ae395a1fc8 .menu-list ul,
#a6cd1ae395a1fc8 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6cd1ae395a1fc8 .menu-list ul {
  top: 57px;
  left: 50%;
  transform: translateX(-50%);
}
#a6cd1ae395a1fc8 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6cd1ae395a1fc8 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6cd1ae395a1fc8 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a2e08accbea8f3e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4419a9643a170b > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a67ccab345acd54 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a306da40a3a6fb7 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#a8ddda493aa63a4 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aae36a3a4ca025b .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a5b9da52e4a2b7b > .ele-wrap {background-color: rgba(0, 73, 146, 0.55);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a63c5aecbca9634 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a63c5aecbca9634 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a63c5aecbca9634 .ap-icon {
  margin-right: 6px;
}
#a63c5aecbca9634 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #e5e5e5;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 12px;
  margin-right: 8px;
  margin-left: 0;
  width: nullpx;
  height: 38px;
  background-color: #e5e5e5;
}
#a63c5aecbca9634 .menu-list > li.icon-bottom > a,
#a63c5aecbca9634 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a63c5aecbca9634 .menu-list > li.icon-bottom > a .ap-icon,
#a63c5aecbca9634 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a63c5aecbca9634 .menu-list > li.icon-bottom > a .ap-icon svg,
#a63c5aecbca9634 .menu-list > li.icon-top > a .ap-icon svg,
#a63c5aecbca9634 .menu-list > li.icon-bottom > a .ap-icon img,
#a63c5aecbca9634 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a63c5aecbca9634 .menu-list > li.icon-right > a .ap-icon,
#a63c5aecbca9634 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a63c5aecbca9634 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a63c5aecbca9634 .menu-list > li:hover > a,
#a63c5aecbca9634 .menu-list > li.active > a {
  background: #004992;
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 0;
  border-top-color: #235ff5;
  border-top-style: none;
  border-right-color: #235ff5;
  border-left-color: #235ff5;
  border-bottom-color: #235ff5;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#a63c5aecbca9634 .menu-list > li.active > a {
  background-color: #004992;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a63c5aecbca9634 .menu-list ul,
#a63c5aecbca9634 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a63c5aecbca9634 .menu-list ul {
  top: 57px;
  left: 50%;
  transform: translateX(-50%);
}
#a63c5aecbca9634 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a63c5aecbca9634 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a63c5aecbca9634 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aad81adbcaa531b > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0607a1ddaa3d72 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8773a36bba0161 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#abddfa211da81d8 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4668a68c3af82b {
  min-height: 500px;
  /* mobile */
}
#a4668a68c3af82b .search-highlight {
  background: yellow;
}
#a4668a68c3af82b .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a4668a68c3af82b .el-title {
  margin-bottom: 20px;
}
#a4668a68c3af82b .el-item:hover .el-title {
  color: #3390ff;
}
#a4668a68c3af82b .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a4668a68c3af82b .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a4668a68c3af82b .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a4668a68c3af82b .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a4668a68c3af82b .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a4668a68c3af82b .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a4668a68c3af82b .el-title {
    margin-bottom: 0;
  }
  #a4668a68c3af82b .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a4668a68c3af82b .category {
    font-size: 12px;
  }
  #a4668a68c3af82b .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#ad02daaba4ac1f1 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#abddfa211da81d8 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#af6d4acdeda3eda {
  /* Error Page */
  /* Error Page */
  /*--------------------------------------------Framework --------------------------------*/
  /*done*/
  /*done*/
  /*done*/
  /* Padding Section*/
  /*done*/
  /*done*/
  /*done*/
  /*done*/
  /*done*/
  /*done*/
  /* Padding Section*/
  /* Margin section */
  /*done*/
  /*done*/
  /*done*/
  /*done*/
  /*done*/
  /*done*/
  /*done*/
  /*done*/
  /*done - For the inside sections that has also Title section*/
  /* Margin section */
  /*--------------------------------------------FrameWork------------------------*/
}
#af6d4acdeda3eda * {
  font-family: 'PT Sans Caption', sans-serif, 'arial', 'Times New Roman';
}
#af6d4acdeda3eda .error .clip .shadow {
  height: 180px;
  /*Contrall*/
}
#af6d4acdeda3eda .error .clip:nth-of-type(2) .shadow {
  width: 130px;
  /*Contrall play with javascript*/
}
#af6d4acdeda3eda .error .clip:nth-of-type(1) .shadow,
#af6d4acdeda3eda .error .clip:nth-of-type(3) .shadow {
  width: 250px;
  /*Contrall*/
}
#af6d4acdeda3eda .error .digit {
  width: 150px;
  /*Contrall*/
  height: 150px;
  /*Contrall*/
  line-height: 150px;
  /*Contrall*/
  font-size: 120px;
  font-weight: bold;
}
#af6d4acdeda3eda .error h2 {
  font-size: 32px;
}
#af6d4acdeda3eda .error .msg {
  top: -190px;
  left: 30%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 32px;
}
#af6d4acdeda3eda .error span.triangle {
  top: 70%;
  right: 0%;
  border-left: 20px solid #535353;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
#af6d4acdeda3eda .error .container-error-404 {
  margin-top: 10%;
  position: relative;
  height: 250px;
  padding-top: 40px;
  text-align: center;
}
#af6d4acdeda3eda .error .container-error-404 .clip {
  display: inline-block;
  transform: skew(-45deg);
}
#af6d4acdeda3eda .error .clip .shadow {
  overflow: hidden;
}
#af6d4acdeda3eda .error .clip:nth-of-type(2) .shadow {
  overflow: hidden;
  position: relative;
  box-shadow: inset 20px 0px 20px -15px rgba(150, 150, 150, 0.8), 20px 0px 20px -15px rgba(150, 150, 150, 0.8);
}
#af6d4acdeda3eda .error .clip:nth-of-type(3) .shadow:after,
#af6d4acdeda3eda .error .clip:nth-of-type(1) .shadow:after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 0px;
  z-index: 9999;
  height: 100%;
  width: 10px;
  background: linear-gradient(90deg, transparent, rgba(173, 173, 173, 0.8), transparent);
  border-radius: 50%;
}
#af6d4acdeda3eda .error .clip:nth-of-type(3) .shadow:after {
  left: -8px;
}
#af6d4acdeda3eda .error .digit {
  position: relative;
  top: 8%;
  color: white;
  background: #07B3F9;
  border-radius: 50%;
  display: inline-block;
  transform: skew(45deg);
}
#af6d4acdeda3eda .error .clip:nth-of-type(2) .digit {
  left: -10%;
}
#af6d4acdeda3eda .error .clip:nth-of-type(1) .digit {
  right: -20%;
}
#af6d4acdeda3eda .error .clip:nth-of-type(3) .digit {
  left: -20%;
}
#af6d4acdeda3eda .error h2 {
  color: #A2A2A2;
  font-weight: bold;
  padding-bottom: 20px;
}
#af6d4acdeda3eda .error .msg {
  position: relative;
  z-index: 9999;
  display: block;
  background: #535353;
  color: #A2A2A2;
  border-radius: 50%;
  font-style: italic;
}
#af6d4acdeda3eda .error .triangle {
  position: absolute;
  z-index: 999;
  transform: rotate(45deg);
  content: "";
  width: 0;
  height: 0;
}
@media (max-width: 767px) {
  #af6d4acdeda3eda {
    /* Error Page */
    /* Error Page */
  }
  #af6d4acdeda3eda .error .clip .shadow {
    height: 100px;
    /*Contrall*/
  }
  #af6d4acdeda3eda .error .clip:nth-of-type(2) .shadow {
    width: 80px;
    /*Contrall play with javascript*/
  }
  #af6d4acdeda3eda .error .clip:nth-of-type(1) .shadow,
  #af6d4acdeda3eda .error .clip:nth-of-type(3) .shadow {
    width: 100px;
    /*Contrall*/
  }
  #af6d4acdeda3eda .error .digit {
    width: 80px;
    /*Contrall*/
    height: 80px;
    /*Contrall*/
    line-height: 80px;
    /*Contrall*/
    font-size: 52px;
  }
  #af6d4acdeda3eda .error h2 {
    font-size: 24px;
  }
  #af6d4acdeda3eda .error .msg {
    top: -110px;
    left: 15%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  #af6d4acdeda3eda .error span.triangle {
    top: 70%;
    right: -3%;
    border-left: 10px solid #535353;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  #af6d4acdeda3eda .error .container-error-404 {
    height: 150px;
  }
}
#af6d4acdeda3eda .overlay {
  position: relative;
  z-index: 20;
}
#af6d4acdeda3eda .ground-color {
  background: white;
}
#af6d4acdeda3eda .item-bg-color {
  background: #EAEAEA;
}
#af6d4acdeda3eda .padding-top {
  padding-top: 10px;
}
#af6d4acdeda3eda .padding-bottom {
  padding-bottom: 10px;
}
#af6d4acdeda3eda .padding-vertical {
  padding-top: 10px;
  padding-bottom: 10px;
}
#af6d4acdeda3eda .padding-horizontal {
  padding-left: 10px;
  padding-right: 10px;
}
#af6d4acdeda3eda .padding-all {
  padding: 10px;
}
#af6d4acdeda3eda .no-padding-left {
  padding-left: 0px;
}
#af6d4acdeda3eda .no-padding-right {
  padding-right: 0px;
}
#af6d4acdeda3eda .no-vertical-padding {
  padding-top: 0px;
  padding-bottom: 0px;
}
#af6d4acdeda3eda .no-horizontal-padding {
  padding-left: 0px;
  padding-right: 0px;
}
#af6d4acdeda3eda .no-padding {
  padding: 0px;
}
#af6d4acdeda3eda .margin-top {
  margin-top: 10px;
}
#af6d4acdeda3eda .margin-bottom {
  margin-bottom: 10px;
}
#af6d4acdeda3eda .margin-right {
  margin-right: 10px;
}
#af6d4acdeda3eda .margin-left {
  margin-left: 10px;
}
#af6d4acdeda3eda .margin-horizontal {
  margin-left: 10px;
  margin-right: 10px;
}
#af6d4acdeda3eda .margin-vertical {
  margin-top: 10px;
  margin-bottom: 10px;
}
#af6d4acdeda3eda .margin-all {
  margin: 10px;
}
#af6d4acdeda3eda .no-margin {
  margin: 0px;
}
#af6d4acdeda3eda .no-vertical-margin {
  margin-top: 0px;
  margin-bottom: 0px;
}
#af6d4acdeda3eda .no-horizontal-margin {
  margin-left: 0px;
  margin-right: 0px;
}
#af6d4acdeda3eda .inside-col-shrink {
  margin: 0px 20px;
}
#af6d4acdeda3eda hr {
  margin: 0px;
  padding: 0px;
  border-top: 1px dashed #999;
}
#ae5e8aa091a1d49 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#abddfa211da81d8 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a59b6a731aaecf9 .login-main {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(12, 1, 4, 0.05);
}
#a59b6a731aaecf9 .switch_item {
  margin-right: 10px;
}
#a59b6a731aaecf9 a.switch_item:hover {
  text-decoration: underline;
}
#a59b6a731aaecf9 .slider {
  width: 420px;
  height: 600px;
}
#a59b6a731aaecf9 .uk-slideshow-items {
  height: 100%;
}
#a59b6a731aaecf9 .uk-slideshow-items a {
  width: 100%;
  height: 100%;
  display: block;
}
#a59b6a731aaecf9 .login-wrap {
  width: 100%;
  height: 100%;
}
#a59b6a731aaecf9 .uk-dotnav > * > * {
  background: #fff;
  border-color: #fff;
  opacity: .5;
}
#a59b6a731aaecf9 .uk-dotnav > .uk-active > * {
  border-color: #0076fe;
  background: #0076fe;
}
#a59b6a731aaecf9 .phone-login-box {
  margin: 40px auto 40px;
}
#a59b6a731aaecf9 .login-header {
  margin-bottom: 24px;
}
#a59b6a731aaecf9 .login-header h4 {
  font-size: 22px;
  font-weight: bolder;
  line-height: 1;
  padding-left: 20px;
  border-left: 4px solid #0076fe;
}
#a59b6a731aaecf9 .input-item {
  width: 330px;
  height: 45px;
  background-color: #f0f2f7;
  border-radius: 22px;
  border: solid 1px #e3e8f0;
  position: relative;
  overflow: hidden;
}
#a59b6a731aaecf9 .input-item input {
  width: 100%;
  padding: 0 16px 0 40px;
  height: 43px;
  border-radius: 0 21px 21px 0;
  position: absolute;
  right: 0;
  border: 0;
  line-height: 43px;
  background-color: transparent;
  outline: 0;
  font-size: 14px;
}
#a59b6a731aaecf9 .forget_password {
  cursor: pointer;
}
#a59b6a731aaecf9 .forget_password:hover {
  color: #3390ff;
}
#a59b6a731aaecf9 .input-item input.error,
#a59b6a731aaecf9 .input-item input.error::placeholder {
  color: #fc4343;
}
#a59b6a731aaecf9 .input-item input::placeholder {
  color: #999;
}
#a59b6a731aaecf9 .input-item .icon {
  position: absolute;
  left: 10px;
  top: 12px;
  fill: #ccc;
  width: 20px;
}
#a59b6a731aaecf9 .form-item {
  margin: 24px 0;
}
#a59b6a731aaecf9 .verifycode-input .input-item {
  width: 200px;
  float: left;
}
#a59b6a731aaecf9 .send-code {
  float: left;
  margin-left: 20px;
}
#a59b6a731aaecf9 .verifycode-input button {
  display: block;
  padding: 0;
  height: 45px;
  width: 105px;
  background-color: #f1f7ff;
  border-radius: 22px;
  font-size: 14px;
  -webkit-transition: .3s;
  transition: .3s;
  color: #999;
  cursor: pointer;
}
#a59b6a731aaecf9 .submit {
  width: 330px;
  height: 45px;
  background-color: #0076fe;
  border-radius: 22px;
  font-size: 18px;
  line-height: 45px;
  color: #fff;
  cursor: pointer;
}
#a59b6a731aaecf9 .error {
  color: #fc4343;
  font-size: 12px;
  padding-left: 10px;
  display: block;
  max-width: 300px;
}
#a59b6a731aaecf9 .login_btn_wrap {
  text-align: center;
}
#a59b6a731aaecf9 .login_btn_wrap .submit {
  display: block;
  margin-bottom: 10px;
}
#a59b6a731aaecf9 .input-item .pwd-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  font-size: 16px;
  color: #999;
  cursor: pointer;
}
#a59b6a731aaecf9 .input-item .pwd-toggle:hover {
  color: currentColor;
}
#a8142a7c8fa3589 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#abddfa211da81d8 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#acdbda5037aca32 .sidebar {
  width: 150px;
  max-width: 150px;
  height: 100%;
}
#acdbda5037aca32 .nav-items {
  background: #fafafa;
  min-height: 200px;
}
#acdbda5037aca32 .phone-info {
  background: #fafafa;
  margin-top: 10px;
  font-size: 12px;
  padding: 22px 4px 20px 16px;
  line-height: 1.5;
  color: #666;
}
#acdbda5037aca32 .phone-info .phone {
  line-height: 1.5;
  color: #333;
  font-size: 18px;
  font-family: Arial;
}
#acdbda5037aca32 .nav-type {
  line-height: 37px;
  padding-left: 20px;
  cursor: pointer;
}
#acdbda5037aca32 .nav-type.active {
  color: #FFF;
  cursor: default;
  background: #ff658c;
}
#acdbda5037aca32 .content {
  padding-bottom: 60px;
  color: #666;
  border: 1px solid #f0f0f0;
  min-height: 400px;
}
#acdbda5037aca32 .nav-list {
  padding: 0 20px;
}
#acdbda5037aca32 .nav-list .nav-item {
  display: inline-block;
  line-height: 21px;
  padding: 2px 6px 3px;
  font-size: 14px;
  color: #666;
  margin: 10px 30px 15px 0;
  cursor: pointer;
}
#acdbda5037aca32 .nav-list .nav-item.active {
  background-color: #ff5c89;
  color: #fff;
  cursor: default;
}
#acdbda5037aca32 .order-item {
  margin-top: 10px;
  background: #fff;
  padding: 0 20px;
}
#acdbda5037aca32 .order-item:hover {
  background: #f7f7f7;
}
#acdbda5037aca32 .del-order {
  cursor: pointer;
}
#acdbda5037aca32 .order-item .order-title {
  line-height: 40px;
  color: #666;
  font-size: 13px;
  border-bottom: 1px solid #f7f7f7;
}
#acdbda5037aca32 .goods-item {
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
}
#acdbda5037aca32 .order-goods-list .goods-item:last-child {
  border-bottom: none;
}
#acdbda5037aca32 .goods-item img {
  width: 100px;
  height: 100px;
  background: #f4f4f4;
}
#acdbda5037aca32 .goods-item .goods-info {
  padding: 0 15px;
}
#acdbda5037aca32 .appoint-time span {
  color: #e4393c;
  background-color: #f9eeee;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 2px;
  line-height: 1;
}
#acdbda5037aca32 .appoint-time {
  margin-bottom: 4px;
}
#acdbda5037aca32 .appoint-name {
  color: #333;
  font-size: 14px;
}
#acdbda5037aca32 .appoint-info {
  padding: 0 15px;
  font-size: 12px;
  color: #888;
}
#acdbda5037aca32 .goods-item .goods-name {
  color: #333;
}
#acdbda5037aca32 .goods-item .sku-name {
  color: #999;
  font-size: 12px;
}
#acdbda5037aca32 .order-total-info {
  padding-bottom: 10px;
  color: #999;
  font-size: 12px;
}
#acdbda5037aca32 .order-total-info .total-price {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
}
#acdbda5037aca32 .load-more {
  font-size: 12px;
  padding-bottom: 15px;
  color: #999;
}
#acdbda5037aca32 .order-btns {
  padding: 10px 0;
  border-top: 1px solid #f7f7f7;
}
#acdbda5037aca32 .order-btns .btn {
  line-height: 26px;
  border-radius: 2px;
  border: 1px solid #ececec;
  padding: 0 14px;
  display: inline-block;
  margin-left: 8px;
  background: #fff;
  color: #333;
}
#acdbda5037aca32 .order-btns .btn-warn {
  color: #fff;
  background: #eb3c3c;
  border-color: #eb3c3c;
  cursor: pointer;
}
#acdbda5037aca32 .appoint-info .title {
  font-weight: bold;
  color: #333;
}
#acdbda5037aca32 .coupon-item {
  margin: 10px 30px;
  display: inline-flex;
  width: 42%;
}
#acdbda5037aca32 .setting-form {
  padding: 30px 20px;
}
#acdbda5037aca32 .setting-item {
  margin-bottom: 20px;
  font-size: 13px;
  color: #666;
  line-height: 18px;
}
#acdbda5037aca32 .setting-item .label {
  display: inline-block;
  margin-right: 6px;
  text-align: right;
  min-width: 120px;
}
#acdbda5037aca32 .setting-item .input-text {
  border: 1px solid #ccc;
  line-height: 28px;
  padding: 0 10px;
  min-width: 200px;
  font-size: 13px;
}
#acdbda5037aca32 .setting-form .setting-btns {
  margin-left: 130px;
}
#acdbda5037aca32 .setting-form .uk-button {
  height: 30px;
  line-height: 30px;
  margin-right: 8px;
}
#acdbda5037aca32 .setting-wrap {
  position: relative;
}
#acdbda5037aca32 .user-info {
  border: 1px solid #ccc;
  width: 300px;
  position: absolute;
  right: 80px;
  top: 30px;
  color: #666;
  padding: 10px;
  font-size: 13px;
  background: #f9f9f9;
}
#acdbda5037aca32 .user-info .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 10px;
}
#acdbda5037aca32 .user-info .levels {
  color: #888;
  font-size: 12px;
}
#acdbda5037aca32 .address-wrap {
  padding: 30px 20px;
}
#acdbda5037aca32 .addr-header {
  font-size: 18px;
  color: #333;
  margin: 0;
}
#acdbda5037aca32 .addr-detail {
  border-bottom: 1px solid #ececec;
  margin-bottom: 10px;
}
#acdbda5037aca32 .addr-list {
  min-height: 200px;
}
#acdbda5037aca32 .addr-detail .addr-item-name,
#acdbda5037aca32 .addr-detail .addr-default {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 0 5px;
  vertical-align: middle;
  margin: -2px 5px 0 0;
  max-width: 8em;
  height: 16px;
  line-height: 14px;
  font-size: 12px;
  color: #4b9bfb;
  border: 1px solid #4b9bfb;
}
#acdbda5037aca32 .addr-detail .addr-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
#acdbda5037aca32 .addr-detail .addr-item-name {
  color: #e93b3d;
  border-color: #e93b3d;
}
#acdbda5037aca32 .addr-detail {
  padding: 12px 0;
  flex: 1;
}
#acdbda5037aca32 .op-btns a {
  font-size: 12px;
  color: #e93b3d;
  margin-left: 6px;
}
#acdbda5037aca32 .add-addr {
  height: 32px;
  line-height: 30px;
}
#acdbda5037aca32 .publish-item .status {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 50px;
  background: url(/resources/sys/img/icons/info-pass.png) center center no-repeat;
  background-size: contain;
}
#acdbda5037aca32 .publish-item {
  cursor: default;
  min-height: 120px;
}
#acdbda5037aca32 .publish-item .status-0 {
  background-image: url(/resources/sys/img/icons/info-unread.png);
}
#acdbda5037aca32 .publish-item .status-1 {
  background-image: url(/resources/sys/img/icons/info-fail.png);
}
#acdbda5037aca32 .publish-item .btns a {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 2px;
  color: #fff;
  background: #3390ff;
}
#acdbda5037aca32 .publish-item .btns .del-info {
  background: #ccc;
  color: #999;
}
#a2c9fa3670a9193 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#abddfa211da81d8 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a708aaa9f6a7547 {
  min-height: 500px;
  /* mobile */
}
#a708aaa9f6a7547 .search-highlight {
  background: yellow;
}
#a708aaa9f6a7547 .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a708aaa9f6a7547 .el-title {
  margin-bottom: 20px;
}
#a708aaa9f6a7547 .el-item:hover .el-title {
  color: #3390ff;
}
#a708aaa9f6a7547 .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a708aaa9f6a7547 .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a708aaa9f6a7547 .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a708aaa9f6a7547 .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a708aaa9f6a7547 .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a708aaa9f6a7547 .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a708aaa9f6a7547 .el-title {
    margin-bottom: 0;
  }
  #a708aaa9f6a7547 .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a708aaa9f6a7547 .category {
    font-size: 12px;
  }
  #a708aaa9f6a7547 .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#aea27ac45ca4ff6 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}#abddfa211da81d8 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a6067ad71eae5f1 .comment-detail {
  min-height: 600px;
}
#a6067ad71eae5f1 table {
  background: #f9fdff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#a6067ad71eae5f1 table th,
#a6067ad71eae5f1 table td {
  padding: 10px 20px;
  border: #ececec 1px solid;
  line-height: 1.8em;
}
#a6067ad71eae5f1 table th {
  padding-left: 0;
  text-align: right;
  background: #eff7fe;
  font-weight: normal;
  color: #333;
}
#a6067ad71eae5f1 .red {
  color: #F00!important;
}
#a6067ad71eae5f1 .table-title span {
  display: inline-block;
  padding: 0 40px;
  line-height: 40px;
  color: #274589;
  font-size: 16px;
  font-weight: bold;
  background: url(/resources/sys/img/icons/title_icon.png) 0 center no-repeat;
}
#a029eaa06aac572 .uk-container {
  line-height: 2;
  color: #999;
}
#abff0a6369a0dbe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#abff0a6369a0dbe .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#abff0a6369a0dbe .ap-icon {
  margin-right: 6px;
}
#abff0a6369a0dbe .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#abff0a6369a0dbe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  line-height: 26px;
}
#abff0a6369a0dbe .menu-list > li:hover > a,
#abff0a6369a0dbe .menu-list > li.active > a {
  background: #ffffff;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
}
#abff0a6369a0dbe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #0073bc;
  background-color: #ffffff;
}
#abff0a6369a0dbe .menu-list ul,
#abff0a6369a0dbe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #005ca9;
}
#abff0a6369a0dbe .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#abff0a6369a0dbe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abff0a6369a0dbe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abff0a6369a0dbe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  width: 150px;
  background-color: #005ca9;
}
#abff0a6369a0dbe .menu-list ul li a:hover {
  background-color: #004f91;
}
#a7483a7a93a4a0f , #a7483a7a93a4a0f a{color: rgba(0, 73, 146, 1);}#a368aafb75a4f82 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2456a5bd8a0a28 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac863a7500ab993 > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af82ea2d7dafade > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b35a363ca4cad > .ele-wrap {background-image: url(/resources/upload/aaae9ac7f6a8e08/1651027802509.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a792aa426ba4023 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa43ca2623a7cfd > .ele-wrap {background-color: rgba(112, 112, 112, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0948a9b88a1a00 > .ele-wrap {background-color: rgba(39, 39, 39, 1);}