.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: #ffffff;
}
/* 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: #20293a;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.uk-link:hover {
  color: #20293a;
}
/* 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: #20293a;
}
/* 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: #20293a;
  text-shadow: none;
}
::selection {
  background: #20293a;
  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 #20293a;
}
/* Small
   ========================================================================== */
/*
   * Reset child height, caused by `inline-block`
   */
.uk-divider-small {
  line-height: 0;
}
.uk-divider-small::after {
  border-top: 2px solid #20293a;
}
/* ========================================================================
     Component: List
   ========================================================================== */
.uk-list,
.ap-child-list > ul {
  padding: 0;
  list-style: none;
}
.uk-list-striped > li:nth-of-type(odd) {
  background: #f8f8f8;
}
/* ========================================================================
     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: #f8f8f8;
}
/* Style modifiers
   ========================================================================== */
/*
   * Link
   */
.uk-icon-link:hover,
.uk-icon-link:focus {
  color: #20293a;
  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: #20293a;
  outline: none;
}
/* OnClick + Active */
.uk-icon-button:active,
.uk-active > .uk-icon-button {
  background-color: #20293a;
  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: #f8f8f8;
  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: #20293a;
  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: #20293a;
}
/* OnClick + Active */
.uk-button-default:active,
.uk-button-default.uk-active {
  background-color: #20293a;
  color: #ffffff;
}
/*
   * Primary
   */
.uk-button-primary {
  background-color: #20293a;
  color: #ffffff;
}
/* Hover + Focus */
.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: #222222;
  color: #ffffff;
}
/* OnClick + Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
  color: #ffffff;
}
/*
   * Secondary
   */
.uk-button-secondary {
  color: #666;
  border: 1px solid #222222;
}
/* OnClick + Active */
.uk-button-secondary:active,
.uk-button-secondary.uk-active {
  background-color: #20293a;
  color: #ffffff;
  border-color: #20293a;
}
/*
   * 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: #f8f8f8;
  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: #20293a;
}
/* 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: #20293a;
}
/* Hover + Focus */
.uk-button-link:hover,
.uk-button-link:focus {
  color: #20293a;
}
/* 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: #20293a;
}
/*
   * Secondary
   */
.uk-section-secondary,
.ap-container-secondary .uk-container {
  background: #222222;
}
.uk-section-muted,
.ap-container-muted .uk-container {
  background: #f8f8f8;
}
/* Style modifiers
   ========================================================================== */
/*
   * Default
   */
.uk-tile-default {
  background: #ffffff;
}
/*
   * Muted
   */
.uk-tile-muted {
  background: #f8f8f8;
}
/*
   * Primary
   */
.uk-tile-primary {
  background: #20293a;
}
/*
   * Secondary
   */
.uk-tile-secondary {
  background: #222222;
}
/* ========================================================================
     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: #20293a;
  color: #ffffff;
}
.uk-card-primary .uk-card-title {
  color: #ffffff;
}
/*
   * Secondary
   */
.uk-card-secondary {
  background: #222222;
  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: #20293a;
  background-color: transparent;
}
/* ========================================================================
     Component: Marker
   ========================================================================== */
/*
   * Addopts `uk-icon`
   */
.uk-marker {
  padding: 5px;
  background: #222222;
  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: #20293a;
}
/*
   * 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: #20293a;
  color: #ffffff;
}
/*
   * Required for `a`
   */
.uk-badge:hover,
.uk-badge:focus {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
/* ========================================================================
     Component: Label
   ========================================================================== */
.uk-label {
  background: #20293a;
  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: #f8f8f8;
}
.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: #20293a;
  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: #20293a;
}
/* 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: #20293a;
  outline: none;
}
.uk-navbar-nav > li > a:hover::before {
  background-color: currentColor;
}
/* OnClick */
.uk-navbar-nav > li.uk-active > a::before {
  background-color: #20293a;
}
/* Item
   ========================================================================== */
.uk-navbar-item {
  color: #666;
}
/* Toggle
   ========================================================================== */
.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus,
.uk-navbar-toggle.uk-open {
  color: #20293a;
}
/* 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: #20293a;
  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: #20293a;
  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: #20293a;
  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: #20293a;
}
/* 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: #20293a;
  border-color: transparent;
}
/* Active */
.uk-dotnav > .uk-active > * {
  background-color: #20293a;
  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: #20293a;
}
/*
   * 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: #20293a;
}
/* 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: #f8f8f8;
  color: #666;
}
/* Style modifiers
   ========================================================================== */
/*
   * Primary
   */
.uk-notification-message-primary {
  color: #20293a;
}
/*
   * 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: #20293a;
  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: #f8f8f8;
  border-radius: 500px;
  overflow: hidden;
}
/*
   * Progress bar
   * 1. Remove right border in IE11 and Edge
   */
.uk-progress::-webkit-progress-value {
  background-color: #20293a;
}
.uk-progress::-moz-progress-bar {
  background-color: #20293a;
}
.uk-progress::-ms-fill {
  background-color: #20293a;
}
/* ========================================================================
     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: #20293a !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: #20293a !important;
}
@supports (-webkit-background-clip: text) {
  .uk-text-background {
    background-color: #20293a;
  }
}
/* ========================================================================
     Component: Background
   ========================================================================== */
/* Color
   ========================================================================== */
.uk-background-default {
  background-color: #ffffff;
}
.uk-background-muted {
  background-color: #f8f8f8;
}
.uk-background-primary {
  background-color: #20293a;
}
.uk-background-secondary {
  background-color: #222222;
}
/* ========================================================================
     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: #20293a;
  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: #20293a;
  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: #20293a;
  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: #f8f8f8;
  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: #20293a;
}
.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(34, 34, 34, 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: #20293a;
}
.uk-section-muted .uk-navbar-container.uk-navbar-sticky {
  background-color: #f8f8f8;
}
.uk-section-primary .uk-navbar-container.uk-navbar-sticky {
  background-color: #20293a;
}
.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: #20293a;
  border-color: #20293a;
}
.category .uk-pagination li:hover,
.ap-pagination li:hover,
.dynamic-pagination li:hover {
  border-color: #20293a;
}
/* ========================================================================
   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: #0e1219;
}
.ap-list-filter dd a.active {
  background-color: #20293a;
  color: #fff;
  border-radius: 2px;
}
.ap-filter-dropdown .filter-item-wrap.open,
.ap-filter-dropdown .filter-item.active {
  color: #20293a;
}
.category li a.active {
  color: #20293a;
}
.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: #20293a;
}
.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: #20293a;
  border: 1px solid rgba(32, 41, 58, 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: #20293a;
}
form .step .ui-step.active .ui-step-title {
  color: #20293a;
}
/**************** 自定义版块样式 ********************/
.btn-effect-1 {
  border-color: #20293a;
  background-color: #20293a;
  color: #fff;
}
.header-effect-6 [data-item='title']::before {
  background-color: #20293a;
}
.header-effect-7 [data-item='subTitle'] {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  background-color: #20293a;
  color: #fff !important;
}
.btn-effect-2 {
  background-color: transparent;
  border: 1px solid #20293a;
  color: #20293a;
}
.btn-effect-2:hover {
  background-color: #20293a;
}
.uk-button.btn-effect-5 {
  background-color: #20293a;
  box-shadow: 0 0 15px rgba(32, 41, 58, 0.8);
}
.header-effect-3 [data-item='title']::after {
  background: #20293a;
}
.header-effect-6 [data-item='title']::before {
  background-color: #20293a;
}
#aff76a0966ac012 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a98eda700da605e .sidebar {
  width: 300px;
  margin-left: 20px;
}
#a98eda700da605e .sidebar.left {
  margin-left: 0;
  margin-right: 20px;
}
@media (max-width: 640px) {
  #a98eda700da605e .sidebar {
    width: 100%;
    margin: 0 0 15px;
  }
}
#a98eda700da605e .data-list .uk-card {
  cursor: pointer !important;
}
#a98eda700da605e .data-list .uk-card img {
  max-height: 300px;
}
#a98eda700da605e .data-list .uk-card:hover {
  background: #fafafa;
}
#a98eda700da605e .data-list .uk-card:hover .uk-h4 {
  color: #20293a;
}
#a98eda700da605e .data-list .uk-card .uk-card-media-left img {
  transition: all .3s ease;
}
#a98eda700da605e .data-list .uk-card .uk-card-media-left:hover img {
  transform: scale(1.05);
}
#a98eda700da605e .data-list .uk-card-media-left {
  border-radius: 4px;
  overflow: hidden;
}
#a98eda700da605e .search-form {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: block;
}
#a98eda700da605e .search-form input.search-input {
  width: 100%;
  height: 34px;
  padding: 5px 52px 5px 10px;
  font-size: 14px;
  color: #333;
  border: 1px solid #efefef;
}
#a98eda700da605e .search-form .submit {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  width: 42px;
  height: 34px;
  padding: 0;
  font-family: FontAwesome;
  content: '\f13d';
  font-size: 16px;
  line-height: 34px;
  text-align: center;
  color: #fff;
  background-color: #20293a;
  cursor: pointer;
}
#a98eda700da605e .uk-card .category {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 6px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  background-color: #000;
  filter: alpha(opacity=60);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 2px;
  transition: all .3s ease;
}
#a98eda700da605e .uk-card .category:hover {
  background: #20293a;
}
#a98eda700da605e .accordion-menu {
  width: 100%;
}
#a98eda700da605e .accordion-menu ul ul.submenu,
#a98eda700da605e .accordion-menu ul ul.submenu li ul.submenu {
  background: transparent;
}
#a98eda700da605e .accordion-menu-header {
  padding: 10px 10px 0;
  border-bottom: 1px solid #ececec;
}
#a98eda700da605e .accordion-menu ul li a {
  margin-bottom: 1px;
  color: #555;
  display: block;
  width: 100%;
  padding: 0 40px;
  line-height: 40px;
  background: #ececec;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color .2s linear,background .2s linear;
  font-size: 13px;
  border: none;
}
#a98eda700da605e .accordion-menu > ul > li > a {
  background: #fff;
  font-size: 14px;
  border-bottom: 1px solid #ececec;
}
#a98eda700da605e .accordion-menu .menu-item.active > a {
  background: #20293a;
  color: #fff;
}
#a98eda700da605e .accordion-menu li a:hover {
  background-color: #20293a;
  color: #fff;
  border: none;
}
#a98eda700da605e .accordion-menu .submenu-indicator {
  cursor: pointer;
  position: absolute;
  font-size: 20px;
  line-height: 40px;
  padding: 0 20px;
  right: 0;
}
#a98eda700da605e .phone {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
#a98eda700da605e .hot-list,
#a98eda700da605e .new-list {
  padding: 12px;
}
#a98eda700da605e .new-list a:hover,
#a98eda700da605e .hot-list a:hover {
  color: #20293a;
}
#a98eda700da605e .hot-item .thumb {
  display: inline-block;
  width: 100px;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
#a98eda700da605e .hot-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s ease-out 0s;
}
#a98eda700da605e .hot-item:hover a {
  color: #20293a;
}
#a98eda700da605e .panel-title {
  position: relative;
  padding-left: 10px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
#a98eda700da605e .panel-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #20293a;
  content: "";
}
#a98eda700da605e .content-header {
  padding-bottom: 10px;
}
#a98eda700da605e .item-title {
  color: #333;
}
#a98eda700da605e input::placeholder {
  color: #999;
}
#a98eda700da605e .datetime {
  color: #999;
}
#a98eda700da605e .new-item a {
  padding-left: 25px;
}
#a98eda700da605e .new-item span {
  background-color: #f0f0f0;
  display: inline-block;
  font-size: 13px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  color: #999;
  text-align: center;
  position: absolute;
  left: 0;
  top: 3px;
}
#a8502a7dc3adaea .uk-container {
  line-height: 2;
  color: #999;
}
#a056dac99bada7e > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ae3a68aba0473 .ap-header-mobile-container {
  color: #fff;
  z-index: 70000;
}
#a5ae3a68aba0473 .ap-nav-mobile-wrapper {
  z-index: 9999;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon > svg,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon img {
  fill: #191919;
  min-width: 20px;
}
#a5ae3a68aba0473 .uk-navbar-toggle {
  min-height: 50px;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container {
  background-color: rgba(255, 255, 255, 0);
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
  width: 70%;
}
@media (min-width: 960px) {
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
    width: 25%;
  }
}
#a5ae3a68aba0473 .ap-nav-navbar-wrapper-children.expand {
  display: block;
}
#a5ae3a68aba0473 .ap-header-mobile .toggle-btn {
  color: #fff;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-color: transparent;
  display: block;
  margin-right: 60px;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a .nav-icon svg {
  color: currentColor;
  fill: currentColor;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:active {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item {
  position: relative;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item a {
  width: 100px;
}
#a4849a580caf499 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a4849a580caf499 .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a4849a580caf499 .ap-icon {
  margin-right: 6px;
}
#a4849a580caf499 .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a4849a580caf499 .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a4849a580caf499 .menu-list > li:hover > a,
#a4849a580caf499 .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list ul,
#a4849a580caf499 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4849a580caf499 .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a4849a580caf499 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4849a580caf499 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4849a580caf499 .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;
}
#ab77aa2142a8475 .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#ab77aa2142a8475 .ele-wrap:hover {background-color: #509c49;}#a1c1aaa9c9a17ea .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#a1c1aaa9c9a17ea .ele-wrap:hover {background-color: #509c49;}#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#aff76a0966ac012 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a3cfead742a4860 .sidebar {
  width: 300px;
  margin-left: 20px;
}
#a3cfead742a4860 .sidebar.left {
  margin-left: 0;
  margin-right: 20px;
}
#a3cfead742a4860 .abstract {
  white-space: pre-wrap;
}
@media (max-width: 640px) {
  #a3cfead742a4860 .sidebar {
    width: 100%;
    margin: 0 0 15px;
  }
  #a3cfead742a4860 .uk-container {
    padding: 0;
  }
  #a3cfead742a4860 .sidebar {
    padding: 10px;
  }
}
#a3cfead742a4860 .search-form {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: block;
}
#a3cfead742a4860 .search-form .search-input {
  width: 100%;
  height: 34px;
  padding: 5px 52px 5px 10px;
  font-size: 14px;
  color: #333;
  border: 1px solid #efefef;
}
#a3cfead742a4860 .search-form .submit {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  width: 42px;
  height: 34px;
  padding: 0;
  font-family: FontAwesome;
  content: '\f13d';
  font-size: 16px;
  line-height: 34px;
  text-align: center;
  color: #fff;
  background-color: #20293a;
  cursor: pointer;
}
#a3cfead742a4860 .content-tags a {
  display: inline-block;
  margin: 0 10px 5px 0;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 1.2;
  color: #666;
  border: 1px solid #999;
  border-radius: 3px;
  transition: all .3s ease;
}
#a3cfead742a4860 .content-tags a:hover {
  background: #20293a;
  color: #fff;
  border-color: #20293a;
}
#a3cfead742a4860 .abstract,
#a3cfead742a4860 .copyright {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #999;
  border: 1px solid #efefef;
  background: #fbfbfb;
  border-radius: 3px;
}
#a3cfead742a4860 .copyright a {
  color: #999;
  word-break: break-all;
}
#a3cfead742a4860 .detail-content {
  font-size: 16px;
  color: #444;
}
#a3cfead742a4860 .detail-content img {
  margin-bottom: 10px;
}
#a3cfead742a4860 .detail-content table {
  font-size: 13px;
}
#a3cfead742a4860 .phone {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
#a3cfead742a4860 .hot-list,
#a3cfead742a4860 .new-list {
  padding: 12px;
}
#a3cfead742a4860 .new-list a:hover,
#a3cfead742a4860 .hot-list a:hover {
  color: #20293a;
}
#a3cfead742a4860 .hot-item .thumb {
  display: inline-block;
  width: 100px;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
#a3cfead742a4860 .hot-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s ease-out 0s;
}
#a3cfead742a4860 .hot-item:hover a {
  color: #20293a;
}
#a3cfead742a4860 .panel-title {
  position: relative;
  padding-left: 10px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
#a3cfead742a4860 .panel-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #20293a;
  content: "";
}
#a3cfead742a4860 .content-header {
  padding-bottom: 10px;
}
#a3cfead742a4860 .item-title {
  color: #333;
}
#a3cfead742a4860 input::placeholder {
  color: #999;
}
#a3cfead742a4860 .datetime {
  color: #999;
}
#a3cfead742a4860 .new-item a {
  padding-left: 25px;
}
#a3cfead742a4860 .new-item span {
  background-color: #f0f0f0;
  display: inline-block;
  font-size: 13px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  color: #999;
  text-align: center;
  position: absolute;
  left: 0;
  top: 3px;
}
#a3cfead742a4860 .siblings a {
  color: #444;
  line-height: 2;
}
#a3cfead742a4860 .siblings a:hover {
  color: #20293a;
}
#a5ac6a393cab3c3 .uk-container {
  line-height: 2;
  color: #999;
}
#a056dac99bada7e > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ae3a68aba0473 .ap-header-mobile-container {
  color: #fff;
  z-index: 70000;
}
#a5ae3a68aba0473 .ap-nav-mobile-wrapper {
  z-index: 9999;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon > svg,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon img {
  fill: #191919;
  min-width: 20px;
}
#a5ae3a68aba0473 .uk-navbar-toggle {
  min-height: 50px;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container {
  background-color: rgba(255, 255, 255, 0);
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
  width: 70%;
}
@media (min-width: 960px) {
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
    width: 25%;
  }
}
#a5ae3a68aba0473 .ap-nav-navbar-wrapper-children.expand {
  display: block;
}
#a5ae3a68aba0473 .ap-header-mobile .toggle-btn {
  color: #fff;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-color: transparent;
  display: block;
  margin-right: 60px;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a .nav-icon svg {
  color: currentColor;
  fill: currentColor;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:active {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item {
  position: relative;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item a {
  width: 100px;
}
#a4849a580caf499 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a4849a580caf499 .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a4849a580caf499 .ap-icon {
  margin-right: 6px;
}
#a4849a580caf499 .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a4849a580caf499 .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a4849a580caf499 .menu-list > li:hover > a,
#a4849a580caf499 .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list ul,
#a4849a580caf499 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4849a580caf499 .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a4849a580caf499 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4849a580caf499 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4849a580caf499 .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;
}
#ab77aa2142a8475 .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#ab77aa2142a8475 .ele-wrap:hover {background-color: #509c49;}#a1c1aaa9c9a17ea .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#a1c1aaa9c9a17ea .ele-wrap:hover {background-color: #509c49;}#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#aff76a0966ac012 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#af5cca99aba3978 .sidebar {
  width: 280px;
}
@media (max-width: 640px) {
  #af5cca99aba3978 .sidebar {
    width: 100%;
  }
}
#af5cca99aba3978 .accordion-menu,
#af5cca99aba3978 .accordion-menu ul ul.submenu,
#af5cca99aba3978 .accordion-menu ul ul.submenu li ul.submenu {
  background: transparent;
}
#af5cca99aba3978 .accordion-menu-header h4 {
  color: #fff;
  font-weight: 500;
  line-height: 50px;
}
#af5cca99aba3978 .accordion-menu ul li a {
  margin-bottom: 1px;
  color: #555;
  background-color: #ECECEC;
  display: block;
  width: 100%;
  padding: 0 40px;
  line-height: 50px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color .2s linear,background .2s linear;
  font-size: 14px;
  border: none;
  text-overflow: ellipsis;
}
#af5cca99aba3978 .accordion-menu > ul > li > a {
  background: #ddd;
  font-size: 16px;
}
#af5cca99aba3978 .accordion-menu li a:hover {
  background-color: #20293a;
  color: #fff;
  border: none;
}
#af5cca99aba3978 .accordion-menu .submenu-indicator {
  cursor: pointer;
  position: absolute;
  font-size: 20px;
  line-height: 50px;
  padding: 0 20px;
  right: 0;
}
#af5cca99aba3978 .contact {
  color: #fff;
}
#af5cca99aba3978 .phone {
  display: block;
  font-size: 28px;
  font-weight: bold;
}
#af5cca99aba3978 .hot-list {
  background: #f7f8f9;
  padding: 15px;
}
#af5cca99aba3978 .hot-list a {
  color: #777;
}
#af5cca99aba3978 .hot-list a:hover {
  color: #20293a;
}
#af5cca99aba3978 .hot-item .thumb {
  display: block;
  overflow: hidden;
}
#af5cca99aba3978 .hot-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s ease-out 0s;
}
#af5cca99aba3978 .hot-item:hover a {
  color: #20293a;
}
#af5cca99aba3978 .hot-title {
  position: relative;
  padding-left: 10px;
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
#af5cca99aba3978 .hot-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #20293a;
  content: "";
}
#af5cca99aba3978 .content-header {
  padding-bottom: 10px;
}
#a3077a1b48a93c8 .uk-container {
  line-height: 2;
  color: #999;
}
#a056dac99bada7e > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ae3a68aba0473 .ap-header-mobile-container {
  color: #fff;
  z-index: 70000;
}
#a5ae3a68aba0473 .ap-nav-mobile-wrapper {
  z-index: 9999;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon > svg,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon img {
  fill: #191919;
  min-width: 20px;
}
#a5ae3a68aba0473 .uk-navbar-toggle {
  min-height: 50px;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container {
  background-color: rgba(255, 255, 255, 0);
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
  width: 70%;
}
@media (min-width: 960px) {
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
    width: 25%;
  }
}
#a5ae3a68aba0473 .ap-nav-navbar-wrapper-children.expand {
  display: block;
}
#a5ae3a68aba0473 .ap-header-mobile .toggle-btn {
  color: #fff;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-color: transparent;
  display: block;
  margin-right: 60px;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a .nav-icon svg {
  color: currentColor;
  fill: currentColor;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:active {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item {
  position: relative;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item a {
  width: 100px;
}
#a4849a580caf499 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a4849a580caf499 .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a4849a580caf499 .ap-icon {
  margin-right: 6px;
}
#a4849a580caf499 .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a4849a580caf499 .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a4849a580caf499 .menu-list > li:hover > a,
#a4849a580caf499 .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list ul,
#a4849a580caf499 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4849a580caf499 .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a4849a580caf499 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4849a580caf499 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4849a580caf499 .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;
}
#ab77aa2142a8475 .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#ab77aa2142a8475 .ele-wrap:hover {background-color: #509c49;}#a1c1aaa9c9a17ea .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#a1c1aaa9c9a17ea .ele-wrap:hover {background-color: #509c49;}#af5cca99aba3978 [data-item*=".abstract"], #af5cca99aba3978 [data-item*=".abstract"] a {show: true;}#af5cca99aba3978 [data-item*=".subTitle"], #af5cca99aba3978 [data-item*=".subTitle"] a {show: true;}#af5cca99aba3978 [data-item*=".category"], #af5cca99aba3978 [data-item*=".category"] a {show: true;}#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#abd0aabfbea2e73 .detail-content .goods-params div {
  margin: 4px 0;
}
#abd0aabfbea2e73 .desc {
  white-space: pre-wrap;
}
#abd0aabfbea2e73 .video-box,
#abd0aabfbea2e73 .preview-box {
  margin-bottom: 20px;
  border: 1px solid #eee;
}
#abd0aabfbea2e73 .video-box video {
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
#abd0aabfbea2e73 .goods-slider {
  width: 430px;
  max-width: 100%;
}
#abd0aabfbea2e73 .preview-box img {
  width: 100%;
}
#abd0aabfbea2e73 .preview-box .zoom-hover {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 180px;
  height: 180px;
  border: 1px solid #aaa;
  background: #0099ff;
  background-color: rgba(133, 111, 41, 0.3);
  opacity: .5;
  cursor: move;
}
#abd0aabfbea2e73 .zoom-indicator {
  background-color: #fff;
  opacity: .3;
  position: absolute;
  right: 0;
  bottom: 0;
}
#abd0aabfbea2e73 .zoom-indicator i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#abd0aabfbea2e73 .thumb-box {
  width: 100%;
  position: relative;
}
#abd0aabfbea2e73 .thumb-box .btn {
  width: 22px;
  height: 32px;
}
#abd0aabfbea2e73 .thumb-box .btn-next {
  background: url(/resources/sys/img/section/btn_next.png) no-repeat center center;
}
#abd0aabfbea2e73 .thumb-box .btn-prev {
  background: url(/resources/sys/img/section/btn_prev.png) no-repeat center center;
}
#abd0aabfbea2e73 .thumb-list {
  overflow: hidden;
}
#abd0aabfbea2e73 .thumb-list ul {
  width: 100000px;
}
#abd0aabfbea2e73 .thumb-list ul li {
  list-style: none;
  float: left;
  margin: 0 4px;
  cursor: pointer;
  position: relative;
}
#abd0aabfbea2e73 .thumb-list ul li img {
  width: 68px;
  height: 68px;
  border: 2px solid #fff;
}
#abd0aabfbea2e73 .thumb-list ul li.thumb-video::after {
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  background: url(/resources/sys/img/play-light.svg) center center no-repeat;
  background-size: 30px;
  position: absolute;
  opacity: .8;
  transition: all .2s ease;
}
#abd0aabfbea2e73 .thumb-list ul li.thumb-video:hover::after {
  opacity: 1;
  background-size: 35px;
}
#abd0aabfbea2e73 .thumb-list ul li.active img {
  border-color: #20293a;
}
#abd0aabfbea2e73 .zoom-box {
  display: none;
  overflow: hidden;
  position: absolute;
  left: 440px;
  top: 0;
  width: 500px;
  height: 500px;
  border: 1px solid #e4e4e4;
  z-index: 400;
  background: #fff;
}
#abd0aabfbea2e73 .zoom-box img {
  max-width: initial;
}
#abd0aabfbea2e73 .goods-intro .title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
#abd0aabfbea2e73 .goods-intro .desc {
  font-size: 14px;
  line-height: 20px;
  color: #999;
}
#abd0aabfbea2e73 .goods-intro .price {
  margin-top: 20px;
  background-color: #f5f3ef;
  border-top: 1px dotted #dedede;
  border-bottom: 1px dotted #dedede;
  padding: 16px 10px 13px;
  line-height: 24px;
  font-size: 13px;
  position: relative;
}
#abd0aabfbea2e73 .goods-intro .price span {
  line-height: 30px;
}
#abd0aabfbea2e73 .goods-intro .price .label {
  min-width: 55px;
  font-size: 13px;
  float: left;
  color: #666;
}
#abd0aabfbea2e73 .price .present-price {
  display: inline-block;
  font-weight: 700;
  margin-right: 1px;
  height: 30px;
  font-size: 28px;
  line-height: 30px;
  margin-left: 2px;
  color: #20293a;
  font-family: "Heiti SC", "Lucida Grande", "Hiragino Sans GB", "Hiragino Sans GB W3", verdana;
}
#abd0aabfbea2e73 .price .present-price .rmb {
  margin-left: 0;
  line-height: 30px;
  color: #20293a;
  font-size: 18px;
}
#abd0aabfbea2e73 .price .origin-price {
  display: inline-block;
  font-size: 13px;
  color: #999;
  line-height: 24px;
}
#abd0aabfbea2e73 .line-through {
  text-decoration: line-through;
}
#abd0aabfbea2e73 .price hr {
  margin: 10px 20px 10px 0;
  overflow: hidden;
  border: none;
  height: 1px;
  border-bottom: 1px dashed #d2d2d2;
}
#abd0aabfbea2e73 .price .policy-info {
  margin-left: 65px;
  padding-top: 2px;
  line-height: 20px;
  color: #666;
  display: block;
}
#abd0aabfbea2e73 .price .policy-info li {
  display: inline-block;
  position: relative;
  margin-right: 30px;
  line-height: 24px;
}
#abd0aabfbea2e73 .price .policy-info li::before {
  content: '? ';
  position: absolute;
  left: -10px;
  top: 0;
}
#abd0aabfbea2e73 .number {
  margin-top: 20px;
  margin-left: 10px;
}
#abd0aabfbea2e73 .number .name {
  line-height: 30px;
  width: 54px;
}
#abd0aabfbea2e73 .number .select-num {
  display: inline-block;
  border: 1px solid #ddd;
  overflow: hidden;
  line-height: 30px;
}
#abd0aabfbea2e73 .select-num .btn {
  position: relative;
  width: 36px;
  height: 30px;
  line-height: 28px;
  background: #fff;
  text-align: center;
  color: #888;
  cursor: pointer;
}
#abd0aabfbea2e73 .select-num .btn.disable {
  cursor: not-allowed;
  color: #ececec;
}
#abd0aabfbea2e73 .select-num i {
  line-height: 30px;
}
#abd0aabfbea2e73 .select-num .less {
  float: left;
  border-right: 1px solid #ddd;
}
#abd0aabfbea2e73 .select-num .more {
  float: right;
  border-left: 1px solid #ddd;
}
#abd0aabfbea2e73 .select-num input {
  border: none;
  text-align: center;
  font-size: 12px;
  color: #333;
  width: 60px;
  height: 28px;
}
#abd0aabfbea2e73 .buttons {
  margin: 30px 0 0 12px;
}
#abd0aabfbea2e73 .buttons .button {
  display: inline-block;
  margin-right: 8px;
  width: 168px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  color: #fff;
  background-color: #20293a;
  text-align: center;
  border-radius: 2px;
}
#abd0aabfbea2e73 .promote-goods {
  margin-top: 40px;
  border: 1px solid #e8e8e8;
}
#abd0aabfbea2e73 .promote-goods .price {
  color: #d62525;
  line-height: 22px;
}
#abd0aabfbea2e73 .promote-goods .promote-title {
  height: 44px;
  line-height: 44px;
  padding-left: 15px;
  font-size: 17px;
  position: relative;
  background-color: #f5f5f5;
}
#abd0aabfbea2e73 .promote-goods .uk-slider {
  padding: 10px 50px;
}
#abd0aabfbea2e73 .hot-list .img-wrap {
  display: block;
}
#abd0aabfbea2e73 .right {
  width: 298px;
  border: 1px solid #e8e8e8;
}
#abd0aabfbea2e73 .right .title {
  line-height: 40px;
  background-color: #f5f5f5;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid #e8e8e8;
}
#abd0aabfbea2e73 .left .nav-wrap {
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  height: 44px;
}
#abd0aabfbea2e73 .left .detail-nav-tab .item {
  min-width: 120px;
  height: 44px;
  line-height: 44px;
  font-size: 14px;
  border-right: 1px solid #e8e8e8;
  padding: 0 30px;
  text-align: center;
  float: left;
}
#abd0aabfbea2e73 .detail-nav-tab ul {
  display: flex;
  overflow: scroll;
  scrollbar-width: 0;
}
#abd0aabfbea2e73 ::-webkit-scrollbar {
  display: none;
}
#abd0aabfbea2e73 .left .detail-nav-tab .item a {
  color: #555;
  font-weight: 500;
  display: block;
}
#abd0aabfbea2e73 .left .detail-nav-tab .item.uk-active,
#abd0aabfbea2e73 .left .detail-nav-tab .item:hover {
  background: #fff;
  border-top: 3px solid #20293a;
  background-color: #fff;
  border-bottom: 1px solid #fff;
  line-height: 40px;
}
#abd0aabfbea2e73 .left .detail-nav-tab .item.uk-active a {
  color: #20293a;
  cursor: default;
}
#abd0aabfbea2e73 .hot-list .item {
  margin: 24px 24px 0;
  border-bottom: 1px solid #e8e8e8;
}
#abd0aabfbea2e73 .hot-list .item:last-child {
  border-bottom: none;
}
#abd0aabfbea2e73 .hot-list .item .goods-title {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  max-width: 156px;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #333;
  margin: 8px auto 6px;
}
#abd0aabfbea2e73 .hot-list .item .goods-title:hover {
  color: #20293a;
}
#abd0aabfbea2e73 .hot-list .item .price {
  font-size: 14px;
  line-height: 1;
  color: #20293a;
  text-align: center;
  font-weight: bolder;
  font-family: "Heiti SC", "Lucida Grande", "Hiragino Sans GB", "Hiragino Sans GB W3", verdana;
}
#abd0aabfbea2e73 .hot-list .item .origin-price {
  text-decoration: line-through;
  color: #666;
}
#abd0aabfbea2e73 .hot-list .item .goods-info {
  padding: 0 5px 18px;
}
#abd0aabfbea2e73 .goods-params span {
  display: inline-block;
  width: 100px;
  color: #999;
}
@media (max-width: 640px) {
  #abd0aabfbea2e73 .right {
    width: 100%;
  }
  #abd0aabfbea2e73 .preview-box img {
    height: 340px;
  }
  #abd0aabfbea2e73 .goods-intro .buttons {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 0;
    z-index: 900;
    margin: 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e8e8e8;
  }
  #abd0aabfbea2e73 .goods-intro .buttons .button {
    margin: 0;
    width: 50%;
    font-size: 14px;
    border-radius: 0;
  }
  #abd0aabfbea2e73 .goods-intro .buttons .button-buy {
    border: 0;
    background: #fff;
  }
}
#ac223a55b4a69bf .uk-container {
  line-height: 2;
  color: #999;
}
#a3a93a72fcae7df .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a3a93a72fcae7df .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a3a93a72fcae7df .ap-icon {
  margin-right: 6px;
}
#a3a93a72fcae7df .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a3a93a72fcae7df .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a3a93a72fcae7df .menu-list > li:hover > a,
#a3a93a72fcae7df .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a3a93a72fcae7df .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a3a93a72fcae7df .menu-list ul,
#a3a93a72fcae7df .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a3a93a72fcae7df .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a3a93a72fcae7df .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a3a93a72fcae7df .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a3a93a72fcae7df .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;
}
#a6e19a5a0da053b .video-box,
#a6e19a5a0da053b .preview-box {
  margin-bottom: 20px;
  border: 1px solid #eee;
}
#a6e19a5a0da053b .ap-detail-slider {
  width: 100%;
  max-width: 100%;
}
#a6e19a5a0da053b .video-box video,
#a6e19a5a0da053b .video-box img .preview-box img {
  width: 100%;
  max-height: 500px;
}
#a6e19a5a0da053b .video-box video {
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
#a6e19a5a0da053b .preview-box .zoom-hover {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 180px;
  height: 180px;
  border: 1px solid #aaa;
  background: #0099ff;
  background-color: rgba(133, 111, 41, 0.3);
  opacity: .5;
  cursor: move;
}
#a6e19a5a0da053b .zoom-indicator {
  background-color: #fff;
  opacity: .3;
  position: absolute;
  right: 0;
  bottom: 0;
}
#a6e19a5a0da053b .zoom-indicator i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#a6e19a5a0da053b .thumb-box {
  width: 100%;
  position: relative;
}
#a6e19a5a0da053b .thumb-box .btn {
  width: 22px;
  height: 32px;
}
#a6e19a5a0da053b .thumb-box .btn-next {
  background: url(/resources/sys/img/section/btn_next.png) no-repeat center center;
}
#a6e19a5a0da053b .thumb-box .btn-prev {
  background: url(/resources/sys/img/section/btn_prev.png) no-repeat center center;
}
#a6e19a5a0da053b .thumb-list {
  overflow: hidden;
}
#a6e19a5a0da053b .thumb-list ul {
  width: 100000px;
}
#a6e19a5a0da053b .thumb-list ul li {
  list-style: none;
  float: left;
  margin: 0 4px;
  cursor: pointer;
  position: relative;
}
#a6e19a5a0da053b .thumb-list ul li.thumb-video::after {
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  background: url(/resources/sys/img/play-light.svg) center center no-repeat;
  background-size: 30px;
  position: absolute;
  opacity: .8;
  transition: all .2s ease;
}
#a6e19a5a0da053b .thumb-list ul li.thumb-video:hover::after {
  opacity: 1;
  background-size: 35px;
}
#a6e19a5a0da053b .thumb-list ul li img {
  width: 68px;
  height: 68px;
  border: 2px solid #fff;
}
#a6e19a5a0da053b .thumb-list ul li.active img {
  border-color: #df3033;
}
#a6e19a5a0da053b .zoom-box {
  display: none;
  overflow: hidden;
  position: absolute;
  left: 100%;
  top: 0;
  width: 500px;
  height: 500px;
  border: 1px solid #e4e4e4;
  z-index: 400;
  background: #fff;
}
#a6e19a5a0da053b .zoom-box img {
  max-width: initial;
}
#a6e19a5a0da053b .goods-intro .title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
#a6e19a5a0da053b .goods-params span {
  display: inline-block;
  width: 100px;
  color: #999;
}
#a6e19a5a0da053b .simple .slider-nav {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-block;
  background-color: rgba(100, 100, 100, 0.6);
  border-radius: 10px;
  padding: 0 10px;
  line-height: 20px;
  height: 20px;
  color: #fff;
}
#a6e19a5a0da053b .simple .slider-nav li {
  display: none;
  font-size: 12px;
}
#a6e19a5a0da053b .simple .slider-nav li.uk-active {
  display: inline-block;
}
@media (max-width: 640px) {
  #a6e19a5a0da053b .right {
    width: 100%;
  }
  #a6e19a5a0da053b .goods-intro .buttons {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 0;
    z-index: 900;
    margin: 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e8e8e8;
  }
  #a6e19a5a0da053b .goods-intro .buttons .button {
    margin: 0;
    width: 50%;
    font-size: 14px;
    border-radius: 0;
  }
  #a6e19a5a0da053b .goods-intro .buttons .button-buy {
    border: 0;
    background: #fff;
  }
}
#a0566a761ba37ef {
  overflow: hidden;
}
#a0566a761ba37ef , #a0566a761ba37ef > * {
        font-weight: bold;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(51, 51, 51, 1);}#a2348a9139a76f4 .inner-detail {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  letter-spacing: 2px;
  line-height: 30px;
}
#a08ebaf294a39ce .a47cfac20aa0a94 {
  overflow: hidden;
}
#a08ebaf294a39ce .a47cfac20aa0a94 , #a08ebaf294a39ce .a47cfac20aa0a94 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(51, 51, 51, 1);}#a08ebaf294a39ce .uk-grid {
  margin-left: -30px;
}
#a08ebaf294a39ce .uk-grid > * {
  padding-left: 30px;
}
#a08ebaf294a39ce .uk-grid > .uk-grid-margin {
  margin-top: 30px;
}
#a08ebaf294a39ce .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a08ebaf294a39ce .uk-position-center-left-out {
    left: -30px;
  }
  #a08ebaf294a39ce .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a5907acf59a295d .param-label {
  font-weight: bold;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a5907acf59a295d .param-value {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#af9acacd13a2e50 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 5px;font-size: 14px;justify-content: center;}#af9acacd13a2e50 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#ac71dabd4eac94a .ele-wrap {border-color: rgba(74, 74, 74, 1);border-width: 1px;border-style: solid;color: #000000;background-color: rgba(255, 255, 255, 1);border-radius: 5px;font-size: 14px;justify-content: center;}#ac71dabd4eac94a .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#abcb9aad1ea34d6 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 5px;font-size: 14px;justify-content: center;}#abcb9aad1ea34d6 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a3a93a72fcae7df .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a3a93a72fcae7df .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a3a93a72fcae7df .ap-icon {
  margin-right: 6px;
}
#a3a93a72fcae7df .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a3a93a72fcae7df .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a3a93a72fcae7df .menu-list > li:hover > a,
#a3a93a72fcae7df .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a3a93a72fcae7df .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a3a93a72fcae7df .menu-list ul,
#a3a93a72fcae7df .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a3a93a72fcae7df .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a3a93a72fcae7df .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a3a93a72fcae7df .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a3a93a72fcae7df .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;
}
#a6e19a5a0da053b .video-box,
#a6e19a5a0da053b .preview-box {
  margin-bottom: 20px;
  border: 1px solid #eee;
}
#a6e19a5a0da053b .ap-detail-slider {
  width: 100%;
  max-width: 100%;
}
#a6e19a5a0da053b .video-box video,
#a6e19a5a0da053b .video-box img .preview-box img {
  width: 100%;
  max-height: 500px;
}
#a6e19a5a0da053b .video-box video {
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
#a6e19a5a0da053b .preview-box .zoom-hover {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 180px;
  height: 180px;
  border: 1px solid #aaa;
  background: #0099ff;
  background-color: rgba(133, 111, 41, 0.3);
  opacity: .5;
  cursor: move;
}
#a6e19a5a0da053b .zoom-indicator {
  background-color: #fff;
  opacity: .3;
  position: absolute;
  right: 0;
  bottom: 0;
}
#a6e19a5a0da053b .zoom-indicator i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#a6e19a5a0da053b .thumb-box {
  width: 100%;
  position: relative;
}
#a6e19a5a0da053b .thumb-box .btn {
  width: 22px;
  height: 32px;
}
#a6e19a5a0da053b .thumb-box .btn-next {
  background: url(/resources/sys/img/section/btn_next.png) no-repeat center center;
}
#a6e19a5a0da053b .thumb-box .btn-prev {
  background: url(/resources/sys/img/section/btn_prev.png) no-repeat center center;
}
#a6e19a5a0da053b .thumb-list {
  overflow: hidden;
}
#a6e19a5a0da053b .thumb-list ul {
  width: 100000px;
}
#a6e19a5a0da053b .thumb-list ul li {
  list-style: none;
  float: left;
  margin: 0 4px;
  cursor: pointer;
  position: relative;
}
#a6e19a5a0da053b .thumb-list ul li.thumb-video::after {
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  background: url(/resources/sys/img/play-light.svg) center center no-repeat;
  background-size: 30px;
  position: absolute;
  opacity: .8;
  transition: all .2s ease;
}
#a6e19a5a0da053b .thumb-list ul li.thumb-video:hover::after {
  opacity: 1;
  background-size: 35px;
}
#a6e19a5a0da053b .thumb-list ul li img {
  width: 68px;
  height: 68px;
  border: 2px solid #fff;
}
#a6e19a5a0da053b .thumb-list ul li.active img {
  border-color: #df3033;
}
#a6e19a5a0da053b .zoom-box {
  display: none;
  overflow: hidden;
  position: absolute;
  left: 100%;
  top: 0;
  width: 500px;
  height: 500px;
  border: 1px solid #e4e4e4;
  z-index: 400;
  background: #fff;
}
#a6e19a5a0da053b .zoom-box img {
  max-width: initial;
}
#a6e19a5a0da053b .goods-intro .title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
#a6e19a5a0da053b .goods-params span {
  display: inline-block;
  width: 100px;
  color: #999;
}
#a6e19a5a0da053b .simple .slider-nav {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-block;
  background-color: rgba(100, 100, 100, 0.6);
  border-radius: 10px;
  padding: 0 10px;
  line-height: 20px;
  height: 20px;
  color: #fff;
}
#a6e19a5a0da053b .simple .slider-nav li {
  display: none;
  font-size: 12px;
}
#a6e19a5a0da053b .simple .slider-nav li.uk-active {
  display: inline-block;
}
@media (max-width: 640px) {
  #a6e19a5a0da053b .right {
    width: 100%;
  }
  #a6e19a5a0da053b .goods-intro .buttons {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 0;
    z-index: 900;
    margin: 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e8e8e8;
  }
  #a6e19a5a0da053b .goods-intro .buttons .button {
    margin: 0;
    width: 50%;
    font-size: 14px;
    border-radius: 0;
  }
  #a6e19a5a0da053b .goods-intro .buttons .button-buy {
    border: 0;
    background: #fff;
  }
}
#a0566a761ba37ef {
  overflow: hidden;
}
#a0566a761ba37ef , #a0566a761ba37ef > * {
        font-weight: bold;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(51, 51, 51, 1);}#a2348a9139a76f4 .inner-detail {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  letter-spacing: 2px;
  line-height: 30px;
}
#a08ebaf294a39ce .a47cfac20aa0a94 {
  overflow: hidden;
}
#a08ebaf294a39ce .a47cfac20aa0a94 , #a08ebaf294a39ce .a47cfac20aa0a94 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(51, 51, 51, 1);}#a08ebaf294a39ce .uk-grid {
  margin-left: -30px;
}
#a08ebaf294a39ce .uk-grid > * {
  padding-left: 30px;
}
#a08ebaf294a39ce .uk-grid > .uk-grid-margin {
  margin-top: 30px;
}
#a08ebaf294a39ce .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a08ebaf294a39ce .uk-position-center-left-out {
    left: -30px;
  }
  #a08ebaf294a39ce .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a5907acf59a295d .param-label {
  font-weight: bold;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a5907acf59a295d .param-value {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#af9acacd13a2e50 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 5px;font-size: 14px;justify-content: center;}#af9acacd13a2e50 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#ac71dabd4eac94a .ele-wrap {border-color: rgba(74, 74, 74, 1);border-width: 1px;border-style: solid;color: #000000;background-color: rgba(255, 255, 255, 1);border-radius: 5px;font-size: 14px;justify-content: center;}#ac71dabd4eac94a .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#abcb9aad1ea34d6 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 5px;font-size: 14px;justify-content: center;}#abcb9aad1ea34d6 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a3a93a72fcae7df .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a3a93a72fcae7df .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a3a93a72fcae7df .ap-icon {
  margin-right: 6px;
}
#a3a93a72fcae7df .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a3a93a72fcae7df .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a3a93a72fcae7df .menu-list > li:hover > a,
#a3a93a72fcae7df .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a3a93a72fcae7df .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a3a93a72fcae7df .menu-list ul,
#a3a93a72fcae7df .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a3a93a72fcae7df .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a3a93a72fcae7df .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a3a93a72fcae7df .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a3a93a72fcae7df .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;
}
#a6e19a5a0da053b .video-box,
#a6e19a5a0da053b .preview-box {
  margin-bottom: 20px;
  border: 1px solid #eee;
}
#a6e19a5a0da053b .ap-detail-slider {
  width: 100%;
  max-width: 100%;
}
#a6e19a5a0da053b .video-box video,
#a6e19a5a0da053b .video-box img .preview-box img {
  width: 100%;
  max-height: 500px;
}
#a6e19a5a0da053b .video-box video {
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
#a6e19a5a0da053b .preview-box .zoom-hover {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 180px;
  height: 180px;
  border: 1px solid #aaa;
  background: #0099ff;
  background-color: rgba(133, 111, 41, 0.3);
  opacity: .5;
  cursor: move;
}
#a6e19a5a0da053b .zoom-indicator {
  background-color: #fff;
  opacity: .3;
  position: absolute;
  right: 0;
  bottom: 0;
}
#a6e19a5a0da053b .zoom-indicator i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#a6e19a5a0da053b .thumb-box {
  width: 100%;
  position: relative;
}
#a6e19a5a0da053b .thumb-box .btn {
  width: 22px;
  height: 32px;
}
#a6e19a5a0da053b .thumb-box .btn-next {
  background: url(/resources/sys/img/section/btn_next.png) no-repeat center center;
}
#a6e19a5a0da053b .thumb-box .btn-prev {
  background: url(/resources/sys/img/section/btn_prev.png) no-repeat center center;
}
#a6e19a5a0da053b .thumb-list {
  overflow: hidden;
}
#a6e19a5a0da053b .thumb-list ul {
  width: 100000px;
}
#a6e19a5a0da053b .thumb-list ul li {
  list-style: none;
  float: left;
  margin: 0 4px;
  cursor: pointer;
  position: relative;
}
#a6e19a5a0da053b .thumb-list ul li.thumb-video::after {
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  background: url(/resources/sys/img/play-light.svg) center center no-repeat;
  background-size: 30px;
  position: absolute;
  opacity: .8;
  transition: all .2s ease;
}
#a6e19a5a0da053b .thumb-list ul li.thumb-video:hover::after {
  opacity: 1;
  background-size: 35px;
}
#a6e19a5a0da053b .thumb-list ul li img {
  width: 68px;
  height: 68px;
  border: 2px solid #fff;
}
#a6e19a5a0da053b .thumb-list ul li.active img {
  border-color: #df3033;
}
#a6e19a5a0da053b .zoom-box {
  display: none;
  overflow: hidden;
  position: absolute;
  left: 100%;
  top: 0;
  width: 500px;
  height: 500px;
  border: 1px solid #e4e4e4;
  z-index: 400;
  background: #fff;
}
#a6e19a5a0da053b .zoom-box img {
  max-width: initial;
}
#a6e19a5a0da053b .goods-intro .title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
#a6e19a5a0da053b .goods-params span {
  display: inline-block;
  width: 100px;
  color: #999;
}
#a6e19a5a0da053b .simple .slider-nav {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-block;
  background-color: rgba(100, 100, 100, 0.6);
  border-radius: 10px;
  padding: 0 10px;
  line-height: 20px;
  height: 20px;
  color: #fff;
}
#a6e19a5a0da053b .simple .slider-nav li {
  display: none;
  font-size: 12px;
}
#a6e19a5a0da053b .simple .slider-nav li.uk-active {
  display: inline-block;
}
@media (max-width: 640px) {
  #a6e19a5a0da053b .right {
    width: 100%;
  }
  #a6e19a5a0da053b .goods-intro .buttons {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 0;
    z-index: 900;
    margin: 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e8e8e8;
  }
  #a6e19a5a0da053b .goods-intro .buttons .button {
    margin: 0;
    width: 50%;
    font-size: 14px;
    border-radius: 0;
  }
  #a6e19a5a0da053b .goods-intro .buttons .button-buy {
    border: 0;
    background: #fff;
  }
}
#a0566a761ba37ef {
  overflow: hidden;
}
#a0566a761ba37ef , #a0566a761ba37ef > * {
        font-weight: bold;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(51, 51, 51, 1);}#a2348a9139a76f4 .inner-detail {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  letter-spacing: 2px;
  line-height: 30px;
}
#a08ebaf294a39ce .a47cfac20aa0a94 {
  overflow: hidden;
}
#a08ebaf294a39ce .a47cfac20aa0a94 , #a08ebaf294a39ce .a47cfac20aa0a94 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(51, 51, 51, 1);}#a08ebaf294a39ce .uk-grid {
  margin-left: -30px;
}
#a08ebaf294a39ce .uk-grid > * {
  padding-left: 30px;
}
#a08ebaf294a39ce .uk-grid > .uk-grid-margin {
  margin-top: 30px;
}
#a08ebaf294a39ce .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a08ebaf294a39ce .uk-position-center-left-out {
    left: -30px;
  }
  #a08ebaf294a39ce .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a5907acf59a295d .param-label {
  font-weight: bold;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a5907acf59a295d .param-value {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#af9acacd13a2e50 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 5px;font-size: 14px;justify-content: center;}#af9acacd13a2e50 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#ac71dabd4eac94a .ele-wrap {border-color: rgba(74, 74, 74, 1);border-width: 1px;border-style: solid;color: #000000;background-color: rgba(255, 255, 255, 1);border-radius: 5px;font-size: 14px;justify-content: center;}#ac71dabd4eac94a .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#abcb9aad1ea34d6 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 5px;font-size: 14px;justify-content: center;}#abcb9aad1ea34d6 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#aff76a0966ac012 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#af9b9a108da6830 .uk-container {
  line-height: 2;
  color: #999;
}
#a056dac99bada7e > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ae3a68aba0473 .ap-header-mobile-container {
  color: #fff;
  z-index: 70000;
}
#a5ae3a68aba0473 .ap-nav-mobile-wrapper {
  z-index: 9999;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon > svg,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon img {
  fill: #191919;
  min-width: 20px;
}
#a5ae3a68aba0473 .uk-navbar-toggle {
  min-height: 50px;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container {
  background-color: rgba(255, 255, 255, 0);
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
  width: 70%;
}
@media (min-width: 960px) {
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
    width: 25%;
  }
}
#a5ae3a68aba0473 .ap-nav-navbar-wrapper-children.expand {
  display: block;
}
#a5ae3a68aba0473 .ap-header-mobile .toggle-btn {
  color: #fff;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-color: transparent;
  display: block;
  margin-right: 60px;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a .nav-icon svg {
  color: currentColor;
  fill: currentColor;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:active {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item {
  position: relative;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item a {
  width: 100px;
}
#a4849a580caf499 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a4849a580caf499 .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a4849a580caf499 .ap-icon {
  margin-right: 6px;
}
#a4849a580caf499 .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a4849a580caf499 .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a4849a580caf499 .menu-list > li:hover > a,
#a4849a580caf499 .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list ul,
#a4849a580caf499 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4849a580caf499 .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a4849a580caf499 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4849a580caf499 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4849a580caf499 .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;
}
#ab77aa2142a8475 .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#ab77aa2142a8475 .ele-wrap:hover {background-color: #509c49;}#a1c1aaa9c9a17ea .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#a1c1aaa9c9a17ea .ele-wrap:hover {background-color: #509c49;}#a5299a98a9ad8ce .uk-container {max-width: 600px;}#a3d86ad22eaab89 > .ele-wrap {background-image: url(/resources/upload/acd2bac004aa7d9/1632639793036.jpeg);border-left-width: 4px;border-bottom-width: 4px;border-right-width: 4px;border-top-width: 4px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;border-top-color: rgba(255, 255, 255, 1);border-right-color: rgba(255, 255, 255, 1);border-left-color: rgba(255, 255, 255, 1);border-bottom-color: rgba(255, 255, 255, 1);}#a6f55a6934a1624 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/acd2bac004aa7d9/1632639792556.jpeg);border-left-width: 4px;border-bottom-width: 4px;border-right-width: 4px;border-top-width: 4px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(255, 255, 255, 1);border-right-color: rgba(255, 255, 255, 1);border-left-color: rgba(255, 255, 255, 1);border-bottom-color: rgba(255, 255, 255, 1);border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#a3c1ca6de4a4b2f > .ele-wrap {background-image: url(/resources/upload/acd2bac004aa7d9/1632903311887.jpeg);border-left-width: 4px;border-bottom-width: 4px;border-right-width: 4px;border-top-width: 4px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(255, 255, 255, 1);border-right-color: rgba(255, 255, 255, 1);border-left-color: rgba(255, 255, 255, 1);border-bottom-color: rgba(255, 255, 255, 1);border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#abce0a21e7a5f92 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/acd2bac004aa7d9/1632903312470.jpeg);border-left-width: 4px;border-bottom-width: 4px;border-right-width: 4px;border-top-width: 4px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;border-top-color: rgba(255, 255, 255, 1);border-right-color: rgba(255, 255, 255, 1);border-left-color: rgba(255, 255, 255, 1);border-bottom-color: rgba(255, 255, 255, 1);}#ab956ab5eaaec3e > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/acd2bac004aa7d9/1632639795427.jpeg);border-left-width: 4px;border-bottom-width: 4px;border-right-width: 4px;border-top-width: 4px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;border-top-color: rgba(255, 255, 255, 1);border-right-color: rgba(255, 255, 255, 1);border-left-color: rgba(255, 255, 255, 1);border-bottom-color: rgba(255, 255, 255, 1);}#af1a7aab81a743e > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/acd2bac004aa7d9/1632639796201.jpeg);border-left-width: 4px;border-bottom-width: 4px;border-right-width: 4px;border-top-width: 4px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(255, 255, 255, 1);border-right-color: rgba(255, 255, 255, 1);border-left-color: rgba(255, 255, 255, 1);border-bottom-color: rgba(255, 255, 255, 1);border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#a928ba7894a1b67 , #a928ba7894a1b67 a{color: rgba(40, 113, 219, 1);}#ac63ca55d0a55b2 , #ac63ca55d0a55b2 a{color: rgba(40, 113, 219, 1);}#abf59a2a59abe02 , #abf59a2a59abe02 a{color: rgba(40, 113, 219, 1);}#adc15a11aaa80d3 .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#acc07ae29aa4039 .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a21f6a50b2abd90 .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#acf88a6cf3aa07d .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 25px;font-size: 14px;justify-content: center;}#acf88a6cf3aa07d .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#a579eaad63a8f49 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 25px;font-size: 14px;justify-content: center;}#a579eaad63a8f49 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#a6d9eabb6da0571 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 25px;font-size: 14px;justify-content: center;}#a6d9eabb6da0571 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#af87aa2987a5209 > .ele-wrap {background-image: url(/resources/upload/acd2bac004aa7d9/1632645694296.jpeg);border-radius: 10px;}#af87aa2987a5209  > .ele-wrap:hover {background-color: rgba(40, 113, 219, 1);}#a7eb7aee70a1b53 .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a85aea9e21a1290 > .ele-wrap {background-color: rgba(40, 113, 219, 0.6);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#aff55a8828ae07f , #aff55a8828ae07f a{color: rgba(255, 255, 255, 1);}#a83c8a258aabdc6 > .ele-wrap {background-image: url(/resources/upload/acd2bac004aa7d9/1632645655871.jpeg);border-radius: 10px;}#a83c8a258aabdc6  > .ele-wrap:hover {background-color: rgba(40, 113, 219, 1);}#a3dccab748abab0 .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#ab0caaee11a2ee3 > .ele-wrap {background-color: rgba(40, 113, 219, 0.6);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#ad15aad40aab7f3 , #ad15aad40aab7f3 a{color: rgba(255, 255, 255, 1);}#a2e14a69faaee27 > .ele-wrap {background-image: url(/resources/upload/acd2bac004aa7d9/1632625533888.jpeg);border-radius: 10px;}#a2e14a69faaee27  > .ele-wrap:hover {background-color: rgba(40, 113, 219, 1);}#af6d8aca48aaade .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#aae27ab4e4a577b > .ele-wrap {background-color: rgba(40, 113, 219, 0.6);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#acd56a541bac35a , #acd56a541bac35a a{color: rgba(255, 255, 255, 1);}#a352da033dae22a .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a4299ae929a1da5 .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a3483a3d48a5553 .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#aff76a0966ac012 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a269cad12eaac4e .uk-container {
  line-height: 2;
  color: #999;
}
#a056dac99bada7e > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ae3a68aba0473 .ap-header-mobile-container {
  color: #fff;
  z-index: 70000;
}
#a5ae3a68aba0473 .ap-nav-mobile-wrapper {
  z-index: 9999;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon > svg,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon img {
  fill: #191919;
  min-width: 20px;
}
#a5ae3a68aba0473 .uk-navbar-toggle {
  min-height: 50px;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container {
  background-color: rgba(255, 255, 255, 0);
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
  width: 70%;
}
@media (min-width: 960px) {
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
    width: 25%;
  }
}
#a5ae3a68aba0473 .ap-nav-navbar-wrapper-children.expand {
  display: block;
}
#a5ae3a68aba0473 .ap-header-mobile .toggle-btn {
  color: #fff;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-color: transparent;
  display: block;
  margin-right: 60px;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a .nav-icon svg {
  color: currentColor;
  fill: currentColor;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:active {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item {
  position: relative;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item a {
  width: 100px;
}
#a4849a580caf499 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a4849a580caf499 .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a4849a580caf499 .ap-icon {
  margin-right: 6px;
}
#a4849a580caf499 .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a4849a580caf499 .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a4849a580caf499 .menu-list > li:hover > a,
#a4849a580caf499 .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list ul,
#a4849a580caf499 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4849a580caf499 .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a4849a580caf499 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4849a580caf499 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4849a580caf499 .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;
}
#ab77aa2142a8475 .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#ab77aa2142a8475 .ele-wrap:hover {background-color: #509c49;}#a1c1aaa9c9a17ea .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#a1c1aaa9c9a17ea .ele-wrap:hover {background-color: #509c49;}#a21fdad60fa6c9f .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a56a7a8c48a031c .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#af2ceafc16a7da9 .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#ad21ca0c00affa1 .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#aff76a0966ac012 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a344fad20ca7c1c .uk-container {
  line-height: 2;
  color: #999;
}
#a056dac99bada7e > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ae3a68aba0473 .ap-header-mobile-container {
  color: #fff;
  z-index: 70000;
}
#a5ae3a68aba0473 .ap-nav-mobile-wrapper {
  z-index: 9999;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon > svg,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon img {
  fill: #191919;
  min-width: 20px;
}
#a5ae3a68aba0473 .uk-navbar-toggle {
  min-height: 50px;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container {
  background-color: rgba(255, 255, 255, 0);
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
  width: 70%;
}
@media (min-width: 960px) {
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
    width: 25%;
  }
}
#a5ae3a68aba0473 .ap-nav-navbar-wrapper-children.expand {
  display: block;
}
#a5ae3a68aba0473 .ap-header-mobile .toggle-btn {
  color: #fff;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-color: transparent;
  display: block;
  margin-right: 60px;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a .nav-icon svg {
  color: currentColor;
  fill: currentColor;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:active {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item {
  position: relative;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item a {
  width: 100px;
}
#a4849a580caf499 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a4849a580caf499 .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a4849a580caf499 .ap-icon {
  margin-right: 6px;
}
#a4849a580caf499 .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a4849a580caf499 .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a4849a580caf499 .menu-list > li:hover > a,
#a4849a580caf499 .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list ul,
#a4849a580caf499 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4849a580caf499 .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a4849a580caf499 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4849a580caf499 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4849a580caf499 .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;
}
#ab77aa2142a8475 .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#ab77aa2142a8475 .ele-wrap:hover {background-color: #509c49;}#a1c1aaa9c9a17ea .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#a1c1aaa9c9a17ea .ele-wrap:hover {background-color: #509c49;}#a7083a3b61aaeb3 .afb18a2b34ad87e {
  overflow: hidden;
}
#a7083a3b61aaeb3 .afb18a2b34ad87e .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  transition: all 0.3s ease-in;
}
#a7083a3b61aaeb3 .afb18a2b34ad87e .img-wrap:hover {
  transform: scale(1.2);
}
#a7083a3b61aaeb3 .a8b15a8c15addc8 {
  overflow: hidden;
}
#a7083a3b61aaeb3 .a8b15a8c15addc8 , #a7083a3b61aaeb3 .a8b15a8c15addc8 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#a7083a3b61aaeb3 .uk-grid {
  margin-left: -30px;
}
#a7083a3b61aaeb3 .uk-grid > * {
  padding-left: 30px;
}
#a7083a3b61aaeb3 .uk-grid > .uk-grid-margin {
  margin-top: 30px;
}
#a7083a3b61aaeb3 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a7083a3b61aaeb3 .uk-position-center-left-out {
    left: -30px;
  }
  #a7083a3b61aaeb3 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a22eca69e5a7138 .uk-grid {
  margin-left: -30px;
}
#a22eca69e5a7138 .uk-grid > * {
  padding-left: 30px;
}
#a22eca69e5a7138 .uk-grid > .uk-grid-margin {
  margin-top: 30px;
}
#a22eca69e5a7138 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a22eca69e5a7138 .uk-position-center-left-out {
    left: -30px;
  }
  #a22eca69e5a7138 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#af428adc4ca6c14 .uk-grid {
  margin-left: -30px;
}
#af428adc4ca6c14 .uk-grid > * {
  padding-left: 30px;
}
#af428adc4ca6c14 .uk-grid > .uk-grid-margin {
  margin-top: 30px;
}
#af428adc4ca6c14 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #af428adc4ca6c14 .uk-position-center-left-out {
    left: -30px;
  }
  #af428adc4ca6c14 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ae060aaf11abc40 .uk-grid {
  margin-left: -30px;
}
#ae060aaf11abc40 .uk-grid > * {
  padding-left: 30px;
}
#ae060aaf11abc40 .uk-grid > .uk-grid-margin {
  margin-top: 30px;
}
#ae060aaf11abc40 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ae060aaf11abc40 .uk-position-center-left-out {
    left: -30px;
  }
  #ae060aaf11abc40 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a2e51a7c3fa8adb .uk-grid {
  margin-left: -30px;
}
#a2e51a7c3fa8adb .uk-grid > * {
  padding-left: 30px;
}
#a2e51a7c3fa8adb .uk-grid > .uk-grid-margin {
  margin-top: 30px;
}
#a2e51a7c3fa8adb .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a2e51a7c3fa8adb .uk-position-center-left-out {
    left: -30px;
  }
  #a2e51a7c3fa8adb .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab4fda0e80a3589 .uk-grid {
  margin-left: -30px;
}
#ab4fda0e80a3589 .uk-grid > * {
  padding-left: 30px;
}
#ab4fda0e80a3589 .uk-grid > .uk-grid-margin {
  margin-top: 30px;
}
#ab4fda0e80a3589 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ab4fda0e80a3589 .uk-position-center-left-out {
    left: -30px;
  }
  #ab4fda0e80a3589 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#aeb18abdf4a5f29 .uk-grid {
  margin-left: -30px;
}
#aeb18abdf4a5f29 .uk-grid > * {
  padding-left: 30px;
}
#aeb18abdf4a5f29 .uk-grid > .uk-grid-margin {
  margin-top: 30px;
}
#aeb18abdf4a5f29 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aeb18abdf4a5f29 .uk-position-center-left-out {
    left: -30px;
  }
  #aeb18abdf4a5f29 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a4199af238ab0a3 .a2b30a647fae40b {
  overflow: hidden;
}
#a4199af238ab0a3 .a2b30a647fae40b .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  transition: all 0.3s ease-in;
}
#a4199af238ab0a3 .a2b30a647fae40b .img-wrap:hover {
  transform: scale(1.2);
}
#a4199af238ab0a3 .ab4dea785fab1bb {
  overflow: hidden;
}
#a4199af238ab0a3 .ab4dea785fab1bb , #a4199af238ab0a3 .ab4dea785fab1bb > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#a4199af238ab0a3 .uk-grid {
  margin-left: -30px;
}
#a4199af238ab0a3 .uk-grid > * {
  padding-left: 30px;
}
#a4199af238ab0a3 .uk-grid > .uk-grid-margin {
  margin-top: 30px;
}
#a4199af238ab0a3 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a4199af238ab0a3 .uk-position-center-left-out {
    left: -30px;
  }
  #a4199af238ab0a3 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ad47aaf8bfa9bc8 {
  overflow: hidden;
  pointer-events: none;
}
#ad47aaf8bfa9bc8 > .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;
}
#ad47aaf8bfa9bc8 > .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;
}
#ad47aaf8bfa9bc8 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ad47aaf8bfa9bc8 > .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;
}
#ad47aaf8bfa9bc8 > .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;
}
#ad47aaf8bfa9bc8 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ad47aaf8bfa9bc8 > .tab-wrap > div > .tab-nav,
#ad47aaf8bfa9bc8 > .tab-nav,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-wrap > div > .tab-nav,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#ad47aaf8bfa9bc8 > .tab-wrap > div > .tab-nav-horizontal,
#ad47aaf8bfa9bc8 > .tab-nav-horizontal,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#ad47aaf8bfa9bc8 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ad47aaf8bfa9bc8 > .tab-nav-horizontal::-webkit-scrollbar,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#ad47aaf8bfa9bc8 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ad47aaf8bfa9bc8 > .tab-nav-horizontal.tagScroll,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#ad47aaf8bfa9bc8 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ad47aaf8bfa9bc8 > .tab-nav-horizontal.tagScroll li a,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#ad47aaf8bfa9bc8 > .tab-wrap > div > .tab-nav a,
#ad47aaf8bfa9bc8 > .tab-nav a,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#ad47aaf8bfa9bc8 > .tab-wrap > div > .tab-nav li a,
#ad47aaf8bfa9bc8 > .tab-nav li a,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#ad47aaf8bfa9bc8 > .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: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#ad47aaf8bfa9bc8 > .tab-wrap > div > .tab-nav li a svg,
#ad47aaf8bfa9bc8 > .tab-nav li a svg,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#ad47aaf8bfa9bc8 > .tab-wrap > div > .tab-nav li a .ap_icon,
#ad47aaf8bfa9bc8 > .tab-nav li a .ap_icon,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#ad47aaf8bfa9bc8 > .tab-wrap > div > .tab-nav li a:hover,
#ad47aaf8bfa9bc8 > .tab-nav li a:hover,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #20293a;
  border-bottom-width: 2px;
  border-bottom-color: #20293a;
  border-bottom-style: solid;
}
#ad47aaf8bfa9bc8 > .tab-wrap > div > .tab-nav li.uk-active a,
#ad47aaf8bfa9bc8 > .tab-nav li.uk-active a,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#ad47aaf8bfa9bc8 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #20293a;
  border-bottom-width: 2px;
  border-bottom-color: #20293a;
  border-bottom-style: solid;
}
#ad47aaf8bfa9bc8 .layout-left li,
#ad47aaf8bfa9bc8 .layout-center li,
#ad47aaf8bfa9bc8 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#ad47aaf8bfa9bc8 .layout-left li a,
#ad47aaf8bfa9bc8 .layout-center li a,
#ad47aaf8bfa9bc8 .layout-right li a {
  height: 100%;
}
#ad47aaf8bfa9bc8 > .tab-tabs .layout-left {
  text-align: left;
}
#ad47aaf8bfa9bc8 > .tab-tabs .layout-center {
  text-align: center;
}
#ad47aaf8bfa9bc8 > .tab-tabs .layout-right {
  text-align: right;
}
#ad47aaf8bfa9bc8 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#ad47aaf8bfa9bc8 .tab-content-wrap {
  background-color: transparent;
}
#ad47aaf8bfa9bc8 .tab-contents,
#ad47aaf8bfa9bc8 .tab-contents-wrap {
  pointer-events: none;
}
#ad47aaf8bfa9bc8 .tab-content,
#ad47aaf8bfa9bc8 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#ad47aaf8bfa9bc8 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#ad47aaf8bfa9bc8 .tab-wrap .tab-contents {
  height: 100%;
}
#ad47aaf8bfa9bc8 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ad47aaf8bfa9bc8 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#ad47aaf8bfa9bc8 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a32bba0508a4bfb a, #a32bba0508a4bfb {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;letter-spacing: 2px;}#a32bba0508a4bfb a:hover {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;letter-spacing: 2px;}#a2ca6a01a9a49bd .a63a5a71e4adf62 {
  overflow: hidden;
}
#a2ca6a01a9a49bd .a63a5a71e4adf62 , #a2ca6a01a9a49bd .a63a5a71e4adf62 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#a2ca6a01a9a49bd .a63a5a71e4adf62:hover , #a2ca6a01a9a49bd .a63a5a71e4adf62 *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#a2ca6a01a9a49bd .uk-grid {
  margin-left: -20px;
}
#a2ca6a01a9a49bd .uk-grid > * {
  padding-left: 20px;
}
#a2ca6a01a9a49bd .uk-grid > .uk-grid-margin {
  margin-top: 20px;
}
#a2ca6a01a9a49bd .dynamic-list-item {
  background-color: #f7f8fa;
}
#a2ca6a01a9a49bd .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a2ca6a01a9a49bd .uk-position-center-left-out {
    left: -30px;
  }
  #a2ca6a01a9a49bd .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a0151aec90a0c7f .af90da29b9a02db {
  overflow: hidden;
}
#a0151aec90a0c7f .af90da29b9a02db , #a0151aec90a0c7f .af90da29b9a02db > * {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#a0151aec90a0c7f .af90da29b9a02db:hover , #a0151aec90a0c7f .af90da29b9a02db *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#a0151aec90a0c7f .uk-grid {
  margin-left: -20px;
}
#a0151aec90a0c7f .uk-grid > * {
  padding-left: 20px;
}
#a0151aec90a0c7f .uk-grid > .uk-grid-margin {
  margin-top: 20px;
}
#a0151aec90a0c7f .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a0151aec90a0c7f .uk-position-center-left-out {
    left: -30px;
  }
  #a0151aec90a0c7f .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#add59a163aaa231 .a814aa0598a1fbf {
  overflow: hidden;
}
#add59a163aaa231 .a814aa0598a1fbf , #add59a163aaa231 .a814aa0598a1fbf > * {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#add59a163aaa231 .a814aa0598a1fbf:hover , #add59a163aaa231 .a814aa0598a1fbf *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#add59a163aaa231 .uk-grid {
  margin-left: -20px;
}
#add59a163aaa231 .uk-grid > * {
  padding-left: 20px;
}
#add59a163aaa231 .uk-grid > .uk-grid-margin {
  margin-top: 20px;
}
#add59a163aaa231 .dynamic-list-item {
  background-color: #f7f8fa;
}
#add59a163aaa231 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #add59a163aaa231 .uk-position-center-left-out {
    left: -30px;
  }
  #add59a163aaa231 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a2d13a0320af2a5 .acd31ad301accca {
  overflow: hidden;
}
#a2d13a0320af2a5 .acd31ad301accca , #a2d13a0320af2a5 .acd31ad301accca > * {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(51, 51, 51, 1);}#a2d13a0320af2a5 .acd31ad301accca:hover , #a2d13a0320af2a5 .acd31ad301accca *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#a2d13a0320af2a5 .uk-grid {
  margin-left: -20px;
}
#a2d13a0320af2a5 .uk-grid > * {
  padding-left: 20px;
}
#a2d13a0320af2a5 .uk-grid > .uk-grid-margin {
  margin-top: 20px;
}
#a2d13a0320af2a5 .dynamic-list-item {
  background-color: #f7f8fa;
}
#a2d13a0320af2a5 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a2d13a0320af2a5 .uk-position-center-left-out {
    left: -30px;
  }
  #a2d13a0320af2a5 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a488aaa747a4598 .ae7e5a39a7a356c {
  overflow: hidden;
}
#a488aaa747a4598 .ae7e5a39a7a356c , #a488aaa747a4598 .ae7e5a39a7a356c > * {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#a488aaa747a4598 .ae7e5a39a7a356c:hover , #a488aaa747a4598 .ae7e5a39a7a356c *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#a488aaa747a4598 .uk-grid {
  margin-left: -20px;
}
#a488aaa747a4598 .uk-grid > * {
  padding-left: 20px;
}
#a488aaa747a4598 .uk-grid > .uk-grid-margin {
  margin-top: 20px;
}
#a488aaa747a4598 .dynamic-list-item {
  background-color: #f7f8fa;
}
#a488aaa747a4598 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a488aaa747a4598 .uk-position-center-left-out {
    left: -30px;
  }
  #a488aaa747a4598 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ac578a215eaa152 .ae706ad401a046b {
  overflow: hidden;
}
#ac578a215eaa152 .ae706ad401a046b , #ac578a215eaa152 .ae706ad401a046b > * {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#ac578a215eaa152 .ae706ad401a046b:hover , #ac578a215eaa152 .ae706ad401a046b *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#ac578a215eaa152 .uk-grid {
  margin-left: -20px;
}
#ac578a215eaa152 .uk-grid > * {
  padding-left: 20px;
}
#ac578a215eaa152 .uk-grid > .uk-grid-margin {
  margin-top: 20px;
}
#ac578a215eaa152 .dynamic-list-item {
  background-color: #f7f8fa;
}
#ac578a215eaa152 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ac578a215eaa152 .uk-position-center-left-out {
    left: -30px;
  }
  #ac578a215eaa152 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a503fab85ea7307 .ad89ca232bab4be {
  overflow: hidden;
}
#a503fab85ea7307 .ad89ca232bab4be , #a503fab85ea7307 .ad89ca232bab4be > * {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#a503fab85ea7307 .ad89ca232bab4be:hover , #a503fab85ea7307 .ad89ca232bab4be *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#a503fab85ea7307 .uk-grid {
  margin-left: -20px;
}
#a503fab85ea7307 .uk-grid > * {
  padding-left: 20px;
}
#a503fab85ea7307 .uk-grid > .uk-grid-margin {
  margin-top: 20px;
}
#a503fab85ea7307 .dynamic-list-item {
  background-color: #f7f8fa;
}
#a503fab85ea7307 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a503fab85ea7307 .uk-position-center-left-out {
    left: -30px;
  }
  #a503fab85ea7307 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a9c5baa4bda4b82 .a15afaea3bace02 {
  overflow: hidden;
}
#a9c5baa4bda4b82 .a15afaea3bace02 , #a9c5baa4bda4b82 .a15afaea3bace02 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#a9c5baa4bda4b82 .a15afaea3bace02:hover , #a9c5baa4bda4b82 .a15afaea3bace02 *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#a9c5baa4bda4b82 .uk-grid {
  margin-left: -20px;
}
#a9c5baa4bda4b82 .uk-grid > * {
  padding-left: 20px;
}
#a9c5baa4bda4b82 .uk-grid > .uk-grid-margin {
  margin-top: 20px;
}
#a9c5baa4bda4b82 .dynamic-list-item {
  background-color: #f7f8fa;
}
#a9c5baa4bda4b82 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a9c5baa4bda4b82 .uk-position-center-left-out {
    left: -30px;
  }
  #a9c5baa4bda4b82 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a2617a4623a95bf .a6974a2b75ac279 {
  overflow: hidden;
}
#a2617a4623a95bf .a6974a2b75ac279 , #a2617a4623a95bf .a6974a2b75ac279 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#a2617a4623a95bf .a6974a2b75ac279:hover , #a2617a4623a95bf .a6974a2b75ac279 *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#a2617a4623a95bf .uk-grid {
  margin-left: -20px;
}
#a2617a4623a95bf .uk-grid > * {
  padding-left: 20px;
}
#a2617a4623a95bf .uk-grid > .uk-grid-margin {
  margin-top: 20px;
}
#a2617a4623a95bf .dynamic-list-item {
  background-color: #f7f8fa;
}
#a2617a4623a95bf .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a2617a4623a95bf .uk-position-center-left-out {
    left: -30px;
  }
  #a2617a4623a95bf .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#abe05a6886a859c .af65fa1727a3974 {
  overflow: hidden;
}
#abe05a6886a859c .af65fa1727a3974 , #abe05a6886a859c .af65fa1727a3974 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#abe05a6886a859c .af65fa1727a3974:hover , #abe05a6886a859c .af65fa1727a3974 *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#abe05a6886a859c .uk-grid {
  margin-left: -20px;
}
#abe05a6886a859c .uk-grid > * {
  padding-left: 20px;
}
#abe05a6886a859c .uk-grid > .uk-grid-margin {
  margin-top: 20px;
}
#abe05a6886a859c .dynamic-list-item {
  background-color: #f7f8fa;
}
#abe05a6886a859c .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #abe05a6886a859c .uk-position-center-left-out {
    left: -30px;
  }
  #abe05a6886a859c .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#abd0ba93a1a47d1 .a60a4aefdfa713e {
  overflow: hidden;
}
#abd0ba93a1a47d1 .a60a4aefdfa713e , #abd0ba93a1a47d1 .a60a4aefdfa713e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#abd0ba93a1a47d1 .a60a4aefdfa713e:hover , #abd0ba93a1a47d1 .a60a4aefdfa713e *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#abd0ba93a1a47d1 .uk-grid {
  margin-left: -20px;
}
#abd0ba93a1a47d1 .uk-grid > * {
  padding-left: 20px;
}
#abd0ba93a1a47d1 .uk-grid > .uk-grid-margin {
  margin-top: 20px;
}
#abd0ba93a1a47d1 .dynamic-list-item {
  background-color: #f7f8fa;
}
#abd0ba93a1a47d1 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #abd0ba93a1a47d1 .uk-position-center-left-out {
    left: -30px;
  }
  #abd0ba93a1a47d1 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ac8dfa4d9aa254e .adcf8a0722ad2d2 {
  overflow: hidden;
}
#ac8dfa4d9aa254e .adcf8a0722ad2d2 , #ac8dfa4d9aa254e .adcf8a0722ad2d2 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#ac8dfa4d9aa254e .adcf8a0722ad2d2:hover , #ac8dfa4d9aa254e .adcf8a0722ad2d2 *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#ac8dfa4d9aa254e .uk-grid {
  margin-left: -20px;
}
#ac8dfa4d9aa254e .uk-grid > * {
  padding-left: 20px;
}
#ac8dfa4d9aa254e .uk-grid > .uk-grid-margin {
  margin-top: 20px;
}
#ac8dfa4d9aa254e .dynamic-list-item {
  background-color: #f7f8fa;
}
#ac8dfa4d9aa254e .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ac8dfa4d9aa254e .uk-position-center-left-out {
    left: -30px;
  }
  #ac8dfa4d9aa254e .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab31ba818ea7d8d .abd04a82f9a9bed {
  overflow: hidden;
}
#ab31ba818ea7d8d .abd04a82f9a9bed , #ab31ba818ea7d8d .abd04a82f9a9bed > * {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#ab31ba818ea7d8d .abd04a82f9a9bed:hover , #ab31ba818ea7d8d .abd04a82f9a9bed *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#ab31ba818ea7d8d .uk-grid {
  margin-left: -20px;
}
#ab31ba818ea7d8d .uk-grid > * {
  padding-left: 20px;
}
#ab31ba818ea7d8d .uk-grid > .uk-grid-margin {
  margin-top: 20px;
}
#ab31ba818ea7d8d .dynamic-list-item {
  background-color: #f7f8fa;
}
#ab31ba818ea7d8d .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ab31ba818ea7d8d .uk-position-center-left-out {
    left: -30px;
  }
  #ab31ba818ea7d8d .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a0924a9e23af2ea .ac01aa7d27a295f {
  overflow: hidden;
}
#a0924a9e23af2ea .ac01aa7d27a295f , #a0924a9e23af2ea .ac01aa7d27a295f > * {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#a0924a9e23af2ea .ac01aa7d27a295f:hover , #a0924a9e23af2ea .ac01aa7d27a295f *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#a0924a9e23af2ea .uk-grid {
  margin-left: -20px;
}
#a0924a9e23af2ea .uk-grid > * {
  padding-left: 20px;
}
#a0924a9e23af2ea .uk-grid > .uk-grid-margin {
  margin-top: 20px;
}
#a0924a9e23af2ea .dynamic-list-item {
  background-color: #f7f8fa;
}
#a0924a9e23af2ea .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a0924a9e23af2ea .uk-position-center-left-out {
    left: -30px;
  }
  #a0924a9e23af2ea .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a3733afce4a4d79 .ac505afc7fa1846 {
  overflow: hidden;
}
#a3733afce4a4d79 .ac505afc7fa1846 , #a3733afce4a4d79 .ac505afc7fa1846 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#a3733afce4a4d79 .ac505afc7fa1846:hover , #a3733afce4a4d79 .ac505afc7fa1846 *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#a3733afce4a4d79 .uk-grid {
  margin-left: -20px;
}
#a3733afce4a4d79 .uk-grid > * {
  padding-left: 20px;
}
#a3733afce4a4d79 .uk-grid > .uk-grid-margin {
  margin-top: 20px;
}
#a3733afce4a4d79 .dynamic-list-item {
  background-color: #f7f8fa;
}
#a3733afce4a4d79 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a3733afce4a4d79 .uk-position-center-left-out {
    left: -30px;
  }
  #a3733afce4a4d79 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a3478a3854ae9cc .uk-grid {
  margin-left: -20px;
}
#a3478a3854ae9cc .uk-grid > * {
  padding-left: 20px;
}
#a3478a3854ae9cc .uk-grid > .uk-grid-margin {
  margin-top: 20px;
}
#a3478a3854ae9cc .dynamic-list-item {
  background-color: #f7f8fa;
}
#a3478a3854ae9cc .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a3478a3854ae9cc .uk-position-center-left-out {
    left: -30px;
  }
  #a3478a3854ae9cc .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ac540aed66ab3da {
  overflow: hidden;
  pointer-events: none;
}
#ac540aed66ab3da > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#ac540aed66ab3da > .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;
}
#ac540aed66ab3da > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ac540aed66ab3da > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#ac540aed66ab3da > .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;
}
#ac540aed66ab3da > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ac540aed66ab3da > .tab-wrap > div > .tab-nav,
#ac540aed66ab3da > .tab-nav,
#ac540aed66ab3da > .tab-tabs > .tab-wrap > div > .tab-nav,
#ac540aed66ab3da > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
}
#ac540aed66ab3da > .tab-wrap > div > .tab-nav-horizontal,
#ac540aed66ab3da > .tab-nav-horizontal,
#ac540aed66ab3da > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#ac540aed66ab3da > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#ac540aed66ab3da > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ac540aed66ab3da > .tab-nav-horizontal::-webkit-scrollbar,
#ac540aed66ab3da > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ac540aed66ab3da > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#ac540aed66ab3da > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ac540aed66ab3da > .tab-nav-horizontal.tagScroll,
#ac540aed66ab3da > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ac540aed66ab3da > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 40px;
  overflow-x: auto;
}
#ac540aed66ab3da > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ac540aed66ab3da > .tab-nav-horizontal.tagScroll li a,
#ac540aed66ab3da > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ac540aed66ab3da > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#ac540aed66ab3da > .tab-wrap > div > .tab-nav a,
#ac540aed66ab3da > .tab-nav a,
#ac540aed66ab3da > .tab-tabs > .tab-wrap > div > .tab-nav a,
#ac540aed66ab3da > .tab-tabs > .tab-nav a {
  padding: 0 36px;
}
#ac540aed66ab3da > .tab-wrap > div > .tab-nav li a,
#ac540aed66ab3da > .tab-nav li a,
#ac540aed66ab3da > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#ac540aed66ab3da > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 39px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 40px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333333;
  background-color: #f7f8fa;
  margin-top: 10px;
  padding: 0 36px;
}
#ac540aed66ab3da > .tab-wrap > div > .tab-nav li a svg,
#ac540aed66ab3da > .tab-nav li a svg,
#ac540aed66ab3da > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#ac540aed66ab3da > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#ac540aed66ab3da > .tab-wrap > div > .tab-nav li a .ap_icon,
#ac540aed66ab3da > .tab-nav li a .ap_icon,
#ac540aed66ab3da > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#ac540aed66ab3da > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#ac540aed66ab3da > .tab-wrap > div > .tab-nav li a:hover,
#ac540aed66ab3da > .tab-nav li a:hover,
#ac540aed66ab3da > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#ac540aed66ab3da > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  letter-spacing: 2px;
}
#ac540aed66ab3da > .tab-wrap > div > .tab-nav li.uk-active a,
#ac540aed66ab3da > .tab-nav li.uk-active a,
#ac540aed66ab3da > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#ac540aed66ab3da > .tab-tabs > .tab-nav li.uk-active a {
  background-color: #20293a;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  letter-spacing: 2px;
}
#ac540aed66ab3da .layout-left li,
#ac540aed66ab3da .layout-center li,
#ac540aed66ab3da .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#ac540aed66ab3da .layout-left li a,
#ac540aed66ab3da .layout-center li a,
#ac540aed66ab3da .layout-right li a {
  height: 100%;
}
#ac540aed66ab3da > .tab-tabs .layout-left {
  text-align: left;
}
#ac540aed66ab3da > .tab-tabs .layout-center {
  text-align: center;
}
#ac540aed66ab3da > .tab-tabs .layout-right {
  text-align: right;
}
#ac540aed66ab3da .tab-contents {
  height: 100%;
  height: calc(100% - 40px);
}
#ac540aed66ab3da .tab-content-wrap {
  background-color: transparent;
}
#ac540aed66ab3da .tab-contents,
#ac540aed66ab3da .tab-contents-wrap {
  pointer-events: none;
}
#ac540aed66ab3da .tab-content,
#ac540aed66ab3da .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#ac540aed66ab3da .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#ac540aed66ab3da .tab-wrap .tab-contents {
  height: 100%;
}
#ac540aed66ab3da .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ac540aed66ab3da .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#ac540aed66ab3da .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#aac3aa9c32a94ea [data-item="undefined"] {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#aac3aa9c32a94ea [data-item="undefined"]:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#af07ba9212a3cdf > .lightbox-content {background-image: url(/resources/upload/acd2bac004aa7d9/1634206704943.png);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#acd8ea2551ae5b6 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(32, 41, 58, 1);border-radius: 5px;justify-content: center;border-style: solid;}#acd8ea2551ae5b6 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(82, 95, 118, 1);color: #ffffff;}#aae7ca57b9aca10 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(32, 41, 58, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aae7ca57b9aca10 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(82, 95, 118, 1);color: #ffffff;}#aff76a0966ac012 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#acb6ca25daafa53 .uk-container {
  line-height: 2;
  color: #999;
}
#a056dac99bada7e > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ae3a68aba0473 .ap-header-mobile-container {
  color: #fff;
  z-index: 70000;
}
#a5ae3a68aba0473 .ap-nav-mobile-wrapper {
  z-index: 9999;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon > svg,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon img {
  fill: #191919;
  min-width: 20px;
}
#a5ae3a68aba0473 .uk-navbar-toggle {
  min-height: 50px;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container {
  background-color: rgba(255, 255, 255, 0);
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
  width: 70%;
}
@media (min-width: 960px) {
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
    width: 25%;
  }
}
#a5ae3a68aba0473 .ap-nav-navbar-wrapper-children.expand {
  display: block;
}
#a5ae3a68aba0473 .ap-header-mobile .toggle-btn {
  color: #fff;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-color: transparent;
  display: block;
  margin-right: 60px;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a .nav-icon svg {
  color: currentColor;
  fill: currentColor;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:active {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item {
  position: relative;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item a {
  width: 100px;
}
#a4849a580caf499 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a4849a580caf499 .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a4849a580caf499 .ap-icon {
  margin-right: 6px;
}
#a4849a580caf499 .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a4849a580caf499 .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a4849a580caf499 .menu-list > li:hover > a,
#a4849a580caf499 .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list ul,
#a4849a580caf499 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4849a580caf499 .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a4849a580caf499 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4849a580caf499 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4849a580caf499 .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;
}
#ab77aa2142a8475 .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#ab77aa2142a8475 .ele-wrap:hover {background-color: #509c49;}#a1c1aaa9c9a17ea .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#a1c1aaa9c9a17ea .ele-wrap:hover {background-color: #509c49;}#a221ca25d9a659a > .ele-wrap {background-color: rgba(247, 248, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#aeda6a128da29a2 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 25px;font-size: 14px;justify-content: center;}#aeda6a128da29a2 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#a8936a668ea163a > .ele-wrap {background-color: rgba(247, 248, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#aa578a5734a6bb6 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 25px;font-size: 14px;justify-content: center;}#aa578a5734a6bb6 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#a5b59a87deaa445 > .ele-wrap {background-color: rgba(247, 248, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#a3f4da773ea75a8 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 25px;font-size: 14px;justify-content: center;}#a3f4da773ea75a8 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#a5b29a06b8abca8 > .ele-wrap {background-color: rgba(247, 248, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#ac21ba8c02a1167 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 25px;font-size: 14px;justify-content: center;}#ac21ba8c02a1167 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#a8af0a1ab9a2e86 > .ele-wrap {background-color: rgba(247, 248, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#a1266a3885aaed0 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 25px;font-size: 14px;justify-content: center;}#a1266a3885aaed0 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#a295fab8c3ab67f > .ele-wrap {background-color: rgba(247, 248, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#aed88acd62ac747 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 25px;font-size: 14px;justify-content: center;}#aed88acd62ac747 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#a2859adb5aa6722 > .ele-wrap {background-color: rgba(247, 248, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#a5ca3a799aa5029 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 25px;font-size: 14px;justify-content: center;}#a5ca3a799aa5029 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#a1741a6710a4ddc > .ele-wrap {background-color: rgba(247, 248, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#a980baa750af7d0 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;background-color: rgba(32, 41, 58, 1);border-radius: 25px;font-size: 14px;justify-content: center;}#a980baa750af7d0 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(82, 95, 118, 1);}#aa103a7e01a7f68  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#aa103a7e01a7f68 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(255, 255, 255, 1);}#aa103a7e01a7f68 > .ele-wrap {border-radius: 10px;background-color: rgba(255, 255, 255, 1);box-shadow: 0px 1px 10px 1px rgba(239, 239, 239, 1);}#aa103a7e01a7f68 .hover-content-wrap:nth-child(1)
                            {background-color: rgba(255, 255, 255, 1);}#a5edaac3ebaa186 > .ele-wrap {background-color: rgba(32, 41, 58, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 10px;border-top-right-radius: 10px;}#a4a50ac802ada49 , #a4a50ac802ada49 a{color: rgba(247, 227, 87, 1);}#aee6fa65f7ac246 , #aee6fa65f7ac246 a{color: rgba(247, 227, 87, 1);}#adafeae8c4a007b , #adafeae8c4a007b a{color: rgba(247, 227, 87, 1);}#a4291a05e8aac76 .ele-wrap {border-color: #000;color: #666666;font-size: 14px;font-weight: 500;background-color: rgba(247, 248, 250, 1);border-radius: 50px;justify-content: center;border-style: solid;}#a4291a05e8aac76 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(239, 239, 239, 1);}#ad8e7ad64ba60ec .img-wrap {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#af7ffa1ea1a38bc .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;border-radius: 25px;font-size: 14px;background-color: rgba(32, 41, 58, 1);justify-content: center;}#af7ffa1ea1a38bc .ele-wrap:hover {border-color: rgba(32, 41, 58, 1);background-color: #fff;color: #20293a;}#a104fa5e55a11b5  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#a104fa5e55a11b5 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(255, 255, 255, 1);}#a104fa5e55a11b5 > .ele-wrap {border-radius: 10px;background-color: rgba(255, 255, 255, 1);box-shadow: 0px 1px 10px 1px rgba(239, 239, 239, 1);}#a104fa5e55a11b5 .hover-content-wrap:nth-child(1)
                            {background-color: rgba(255, 255, 255, 1);}#ae4cea7a35aedae > .ele-wrap {background-color: rgba(32, 41, 58, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 10px;border-top-right-radius: 10px;}#a2b8da3d6ca0699 , #a2b8da3d6ca0699 a{color: rgba(247, 227, 87, 1);}#a8908a0bbeadbec , #a8908a0bbeadbec a{color: rgba(247, 227, 87, 1);}#a22cca9606aebe5 .ele-wrap {border-color: #000;color: #666666;font-size: 14px;font-weight: 500;background-color: rgba(247, 248, 250, 1);border-radius: 50px;justify-content: center;border-style: solid;}#a22cca9606aebe5 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(239, 239, 239, 1);}#a1d57a8e7ea98bc .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;border-radius: 25px;font-size: 14px;background-color: rgba(32, 41, 58, 1);justify-content: center;}#a1d57a8e7ea98bc .ele-wrap:hover {border-color: rgba(32, 41, 58, 1);background-color: #fff;color: #20293a;}#a669ba0be6a9231 .img-wrap {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#af433a75f4a0ffe  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#af433a75f4a0ffe .hover-content-wrap:nth-child(2)
                            {background-color: rgba(255, 255, 255, 1);}#af433a75f4a0ffe > .ele-wrap {border-radius: 10px;background-color: rgba(255, 255, 255, 1);box-shadow: 0px 1px 10px 1px rgba(239, 239, 239, 1);}#af433a75f4a0ffe .hover-content-wrap:nth-child(1)
                            {background-color: rgba(255, 255, 255, 1);}#a648faa87fac463 > .ele-wrap {background-color: rgba(32, 41, 58, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 10px;border-top-right-radius: 10px;}#a0b21aa935ab2d3 , #a0b21aa935ab2d3 a{color: rgba(247, 227, 87, 1);}#a17ceafa91aab17 , #a17ceafa91aab17 a{color: rgba(247, 227, 87, 1);}#a8da8af6a6ad4f1 .ele-wrap {border-color: #000;color: #666666;font-size: 14px;font-weight: 500;background-color: rgba(247, 248, 250, 1);border-radius: 50px;justify-content: center;border-style: solid;}#a8da8af6a6ad4f1 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(239, 239, 239, 1);}#a771bac184a3518 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;border-radius: 25px;font-size: 14px;background-color: rgba(32, 41, 58, 1);justify-content: center;}#a771bac184a3518 .ele-wrap:hover {border-color: rgba(32, 41, 58, 1);background-color: #fff;color: #20293a;}#adf79a7f11af4af .img-wrap {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#a4251a6180a7d96  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#a4251a6180a7d96 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(255, 255, 255, 1);}#a4251a6180a7d96 > .ele-wrap {border-radius: 10px;background-color: rgba(255, 255, 255, 1);box-shadow: 0px 1px 10px 1px rgba(239, 239, 239, 1);}#a4251a6180a7d96 .hover-content-wrap:nth-child(1)
                            {background-color: rgba(255, 255, 255, 1);}#a59e0a8b78a3561 > .ele-wrap {background-color: rgba(32, 41, 58, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 10px;border-top-right-radius: 10px;}#a7c75a9b9ea2281 , #a7c75a9b9ea2281 a{color: rgba(247, 227, 87, 1);}#a8b27a518bacdbd , #a8b27a518bacdbd a{color: rgba(247, 227, 87, 1);}#abd64a9b94a6905 .ele-wrap {border-color: #000;color: #666666;font-size: 14px;font-weight: 500;background-color: rgba(247, 248, 250, 1);border-radius: 50px;justify-content: center;border-style: solid;}#abd64a9b94a6905 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(239, 239, 239, 1);}#a1f87a23e8a12da .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;border-radius: 25px;font-size: 14px;background-color: rgba(32, 41, 58, 1);justify-content: center;}#a1f87a23e8a12da .ele-wrap:hover {border-color: rgba(32, 41, 58, 1);background-color: #fff;color: #20293a;}#a1d77a6195a0e8f .img-wrap {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#a05b3af80ca7ad2 > .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;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;box-shadow: 0px 1px 11px 1px rgba(239, 239, 239, 1);}#a1469a682eac22b > .ele-wrap {background-color: rgba(32, 41, 58, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 10px;border-top-right-radius: 10px;}#a7b9aa1cdfad998 , #a7b9aa1cdfad998 a{color: rgba(247, 227, 87, 1);}#a8f4baa632a0d76 , #a8f4baa632a0d76 a{color: rgba(247, 227, 87, 1);}#a47d7a9d30a7011 .ele-wrap {border-color: #000;color: #666666;font-size: 14px;font-weight: 500;background-color: rgba(247, 248, 250, 1);border-radius: 50px;justify-content: center;border-style: solid;}#a47d7a9d30a7011 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(239, 239, 239, 1);}#a522baa3eeaf81f > .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;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;box-shadow: 0px 1px 11px 1px rgba(239, 239, 239, 1);}#ac0c6ac9bcab91c > .ele-wrap {background-color: rgba(32, 41, 58, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 10px;border-top-right-radius: 10px;}#a3b48ab2b3a38ee , #a3b48ab2b3a38ee a{color: rgba(247, 227, 87, 1);}#a44b9a594fa2ca8 , #a44b9a594fa2ca8 a{color: rgba(247, 227, 87, 1);}#ad70da9829adff2 .ele-wrap {border-color: #000;color: #666666;font-size: 14px;font-weight: 500;background-color: rgba(247, 248, 250, 1);border-radius: 50px;justify-content: center;border-style: solid;}#ad70da9829adff2 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(239, 239, 239, 1);}#afd49a29acaffd1 > .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;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;box-shadow: 0px 1px 11px 1px rgba(239, 239, 239, 1);}#a5072a8393a7e91 > .ele-wrap {background-color: rgba(32, 41, 58, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 10px;border-top-right-radius: 10px;}#a9046a4c55ac1ab , #a9046a4c55ac1ab a{color: rgba(247, 227, 87, 1);}#ad47da712ba7aa2 , #ad47da712ba7aa2 a{color: rgba(247, 227, 87, 1);}#ab400a5ab2aba22 .ele-wrap {border-color: #000;color: #666666;font-size: 14px;font-weight: 500;background-color: rgba(247, 248, 250, 1);border-radius: 50px;justify-content: center;border-style: solid;}#ab400a5ab2aba22 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(239, 239, 239, 1);}#adb8daf8b2a5cda > .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;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;box-shadow: 0px 1px 11px 1px rgba(239, 239, 239, 1);}#a4b70ac229a3f3b > .ele-wrap {background-color: rgba(32, 41, 58, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 10px;border-top-right-radius: 10px;}#a3b5ea4b71af1c5 , #a3b5ea4b71af1c5 a{color: rgba(247, 227, 87, 1);}#aceaca761aa2c46 , #aceaca761aa2c46 a{color: rgba(247, 227, 87, 1);}#aeec9a6152a4e9d .ele-wrap {border-color: #000;color: #666666;font-size: 14px;font-weight: 500;background-color: rgba(247, 248, 250, 1);border-radius: 50px;justify-content: center;border-style: solid;}#aeec9a6152a4e9d .ele-wrap:hover {background-color: #0483cc;background-color: rgba(239, 239, 239, 1);}#a9293a0662a1504  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#a9293a0662a1504 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(255, 255, 255, 1);}#a9293a0662a1504 > .ele-wrap {border-radius: 10px;background-color: rgba(255, 255, 255, 1);box-shadow: 0px 1px 10px 1px rgba(239, 239, 239, 1);}#a9293a0662a1504 .hover-content-wrap:nth-child(1)
                            {background-color: rgba(255, 255, 255, 1);}#ac963a6cfcaf426 > .ele-wrap {background-color: rgba(32, 41, 58, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 10px;border-top-right-radius: 10px;}#abaecaedcda092d , #abaecaedcda092d a{color: rgba(247, 227, 87, 1);}#a9986ab067a1a29 , #a9986ab067a1a29 a{color: rgba(247, 227, 87, 1);}#a0fa0a0a5ea0684 .ele-wrap {border-color: #000;color: #666666;font-size: 14px;font-weight: 500;background-color: rgba(247, 248, 250, 1);border-radius: 50px;justify-content: center;border-style: solid;}#a0fa0a0a5ea0684 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(239, 239, 239, 1);}#a136aa1d90a71ca .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;border-radius: 25px;font-size: 14px;background-color: rgba(32, 41, 58, 1);justify-content: center;}#a136aa1d90a71ca .ele-wrap:hover {border-color: rgba(32, 41, 58, 1);background-color: #fff;color: #20293a;}#a9ff5a4c0fae08b .img-wrap {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#ad2fca9fb3ab842  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#ad2fca9fb3ab842 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(255, 255, 255, 1);}#ad2fca9fb3ab842 > .ele-wrap {border-radius: 10px;background-color: rgba(255, 255, 255, 1);box-shadow: 0px 1px 10px 1px rgba(239, 239, 239, 1);}#ad2fca9fb3ab842 .hover-content-wrap:nth-child(1)
                            {background-color: rgba(255, 255, 255, 1);}#a29f8a7a36a0b23 > .ele-wrap {background-color: rgba(32, 41, 58, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 10px;border-top-right-radius: 10px;}#afe6da50faaea00 , #afe6da50faaea00 a{color: rgba(247, 227, 87, 1);}#a177ba1b6ea599f , #a177ba1b6ea599f a{color: rgba(247, 227, 87, 1);}#a20c1aea47ac0a7 .ele-wrap {border-color: #000;color: #666666;font-size: 14px;font-weight: 500;background-color: rgba(247, 248, 250, 1);border-radius: 50px;justify-content: center;border-style: solid;}#a20c1aea47ac0a7 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(239, 239, 239, 1);}#a5308ae139a8248 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;border-radius: 25px;font-size: 14px;background-color: rgba(32, 41, 58, 1);justify-content: center;}#a5308ae139a8248 .ele-wrap:hover {border-color: rgba(32, 41, 58, 1);background-color: #fff;color: #20293a;}#a7d22a63f1aa24f .img-wrap {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#a7a52abebda4c35  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#a7a52abebda4c35 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(255, 255, 255, 1);}#a7a52abebda4c35 > .ele-wrap {border-radius: 10px;background-color: rgba(255, 255, 255, 1);box-shadow: 0px 1px 10px 1px rgba(239, 239, 239, 1);}#a7a52abebda4c35 .hover-content-wrap:nth-child(1)
                            {background-color: rgba(255, 255, 255, 1);}#ae157a5b1fa91b5 > .ele-wrap {background-color: rgba(32, 41, 58, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 10px;border-top-right-radius: 10px;}#a9365a9bf7ae127 , #a9365a9bf7ae127 a{color: rgba(247, 227, 87, 1);}#a4167ab5ffa96c0 , #a4167ab5ffa96c0 a{color: rgba(247, 227, 87, 1);}#a6b48a278dae2ee .ele-wrap {border-color: #000;color: #666666;font-size: 14px;font-weight: 500;background-color: rgba(247, 248, 250, 1);border-radius: 50px;justify-content: center;border-style: solid;}#a6b48a278dae2ee .ele-wrap:hover {background-color: #0483cc;background-color: rgba(239, 239, 239, 1);}#aa2c5aad0ea006a .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;border-radius: 25px;font-size: 14px;background-color: rgba(32, 41, 58, 1);justify-content: center;}#aa2c5aad0ea006a .ele-wrap:hover {border-color: rgba(32, 41, 58, 1);background-color: #fff;color: #20293a;}#ac9f5ab0cba46db .img-wrap {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#ad918a7cbba0366  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#ad918a7cbba0366 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(255, 255, 255, 1);}#ad918a7cbba0366 > .ele-wrap {border-radius: 10px;background-color: rgba(255, 255, 255, 1);box-shadow: 0px 1px 10px 1px rgba(239, 239, 239, 1);}#ad918a7cbba0366 .hover-content-wrap:nth-child(1)
                            {background-color: rgba(255, 255, 255, 1);}#a50ffa5457a2818 > .ele-wrap {background-color: rgba(32, 41, 58, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 10px;border-top-right-radius: 10px;}#a49d9af849af164 , #a49d9af849af164 a{color: rgba(247, 227, 87, 1);}#ad7d9ad5ecac86e , #ad7d9ad5ecac86e a{color: rgba(247, 227, 87, 1);}#ae3f4a22c5ab876 .ele-wrap {border-color: #000;color: #666666;font-size: 14px;font-weight: 500;background-color: rgba(247, 248, 250, 1);border-radius: 50px;justify-content: center;border-style: solid;}#ae3f4a22c5ab876 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(239, 239, 239, 1);}#a412eac312ab018 .ele-wrap {border-width: 1px;border-style: solid;color: #ffffff;border-radius: 25px;font-size: 14px;background-color: rgba(32, 41, 58, 1);justify-content: center;}#a412eac312ab018 .ele-wrap:hover {border-color: rgba(32, 41, 58, 1);background-color: #fff;color: #20293a;}#a566ead0aeaf212 .img-wrap {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#aff76a0966ac012 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aa0efa2fc0ae893 .uk-container {
  line-height: 2;
  color: #999;
}
#a056dac99bada7e > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ae3a68aba0473 .ap-header-mobile-container {
  color: #fff;
  z-index: 70000;
}
#a5ae3a68aba0473 .ap-nav-mobile-wrapper {
  z-index: 9999;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon > svg,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon img {
  fill: #191919;
  min-width: 20px;
}
#a5ae3a68aba0473 .uk-navbar-toggle {
  min-height: 50px;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container {
  background-color: rgba(255, 255, 255, 0);
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
  width: 70%;
}
@media (min-width: 960px) {
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
    width: 25%;
  }
}
#a5ae3a68aba0473 .ap-nav-navbar-wrapper-children.expand {
  display: block;
}
#a5ae3a68aba0473 .ap-header-mobile .toggle-btn {
  color: #fff;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-color: transparent;
  display: block;
  margin-right: 60px;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a .nav-icon svg {
  color: currentColor;
  fill: currentColor;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:active {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item {
  position: relative;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item a {
  width: 100px;
}
#a4849a580caf499 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a4849a580caf499 .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a4849a580caf499 .ap-icon {
  margin-right: 6px;
}
#a4849a580caf499 .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a4849a580caf499 .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a4849a580caf499 .menu-list > li:hover > a,
#a4849a580caf499 .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list ul,
#a4849a580caf499 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4849a580caf499 .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a4849a580caf499 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4849a580caf499 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4849a580caf499 .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;
}
#ab77aa2142a8475 .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#ab77aa2142a8475 .ele-wrap:hover {background-color: #509c49;}#a1c1aaa9c9a17ea .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#a1c1aaa9c9a17ea .ele-wrap:hover {background-color: #509c49;}#a494ba663dabbad .uk-grid {
  margin-left: -30px;
}
#a494ba663dabbad .uk-grid > * {
  padding-left: 30px;
}
#a494ba663dabbad .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a494ba663dabbad .uk-position-center-left-out {
    left: -30px;
  }
  #a494ba663dabbad .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a1bdfae074a8255 > .ele-wrap {background-image: url(/resources/upload/acd2bac004aa7d9/1633770583629.jpeg);border-radius: 10px;}#a1bdfae074a8255  > .ele-wrap:hover {background-color: rgba(40, 113, 219, 1);}#a144fa7936ab837 > .ele-wrap {background-color: rgba(40, 113, 219, 0.6);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#ae1b5ab23fa7cde > .ele-wrap {background-image: url(/resources/upload/acd2bac004aa7d9/1633770165759.jpeg);border-radius: 10px;}#ae1b5ab23fa7cde  > .ele-wrap:hover {background-color: rgba(40, 113, 219, 1);}#a9f3cae617a01bd > .ele-wrap {background-color: rgba(40, 113, 219, 0.6);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#afe46a4a6ca70c6 > .ele-wrap {background-image: url(/resources/upload/acd2bac004aa7d9/1633770165759.jpeg);border-radius: 10px;}#afe46a4a6ca70c6  > .ele-wrap:hover {background-color: rgba(40, 113, 219, 1);}#a0411adfeba29fa > .ele-wrap {background-color: rgba(40, 113, 219, 0.6);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#a56f6abcdba1419 > .ele-wrap {background-image: url(/resources/upload/acd2bac004aa7d9/1633770583629.jpeg);border-radius: 10px;}#a56f6abcdba1419  > .ele-wrap:hover {background-color: rgba(40, 113, 219, 1);}#a54f2a838ba6387 > .ele-wrap {background-color: rgba(40, 113, 219, 0.6);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#aff76a0966ac012 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a20f7a7bf0afb88 .uk-container {
  line-height: 2;
  color: #999;
}
#a056dac99bada7e > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ae3a68aba0473 .ap-header-mobile-container {
  color: #fff;
  z-index: 70000;
}
#a5ae3a68aba0473 .ap-nav-mobile-wrapper {
  z-index: 9999;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon > svg,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon img {
  fill: #191919;
  min-width: 20px;
}
#a5ae3a68aba0473 .uk-navbar-toggle {
  min-height: 50px;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container {
  background-color: rgba(255, 255, 255, 0);
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
  width: 70%;
}
@media (min-width: 960px) {
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
    width: 25%;
  }
}
#a5ae3a68aba0473 .ap-nav-navbar-wrapper-children.expand {
  display: block;
}
#a5ae3a68aba0473 .ap-header-mobile .toggle-btn {
  color: #fff;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-color: transparent;
  display: block;
  margin-right: 60px;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a .nav-icon svg {
  color: currentColor;
  fill: currentColor;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:active {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item {
  position: relative;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item a {
  width: 100px;
}
#a4849a580caf499 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a4849a580caf499 .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a4849a580caf499 .ap-icon {
  margin-right: 6px;
}
#a4849a580caf499 .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a4849a580caf499 .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a4849a580caf499 .menu-list > li:hover > a,
#a4849a580caf499 .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list ul,
#a4849a580caf499 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4849a580caf499 .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a4849a580caf499 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4849a580caf499 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4849a580caf499 .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;
}
#ab77aa2142a8475 .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#ab77aa2142a8475 .ele-wrap:hover {background-color: #509c49;}#a1c1aaa9c9a17ea .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#a1c1aaa9c9a17ea .ele-wrap:hover {background-color: #509c49;}#a4f9ea50faac152 .aacffa8fb8ae45d {
  overflow: hidden;
}
#a4f9ea50faac152 .aacffa8fb8ae45d , #a4f9ea50faac152 .aacffa8fb8ae45d > * {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#a4f9ea50faac152 .aacffa8fb8ae45d:hover , #a4f9ea50faac152 .aacffa8fb8ae45d *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#a4f9ea50faac152 .a5716aed3da6b6a {
  overflow: hidden;
}
#a4f9ea50faac152 .a5716aed3da6b6a , #a4f9ea50faac152 .a5716aed3da6b6a > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(102, 102, 102, 1);letter-spacing: 2px;line-height: 30px;}#a4f9ea50faac152 .a9affa8c45ac135 .ele-wrap {color: #ffffff;border-width: 0px;border-style: solid;font-size: 14px;justify-content: center;background-color: rgba(32, 41, 58, 1);border-radius: 25px;}#a4f9ea50faac152 .a9affa8c45ac135 .ele-wrap:hover {background-color: rgba(82, 95, 118, 1);}#a4f9ea50faac152 .uk-grid > .uk-grid-margin {
  margin-top: 50px;
}
#a4f9ea50faac152 .dynamic-list-item {
  background-color: #f7f8fa;
}
#a4f9ea50faac152 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a4f9ea50faac152 .uk-position-center-left-out {
    left: -30px;
  }
  #a4f9ea50faac152 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab33aab3f0a6c46 .a89d2a6ba3a19fd {
  overflow: hidden;
}
#ab33aab3f0a6c46 .a89d2a6ba3a19fd , #ab33aab3f0a6c46 .a89d2a6ba3a19fd > * {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#ab33aab3f0a6c46 .a89d2a6ba3a19fd:hover , #ab33aab3f0a6c46 .a89d2a6ba3a19fd *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#ab33aab3f0a6c46 .a06ecaba51a54f0 {
  overflow: hidden;
}
#ab33aab3f0a6c46 .a06ecaba51a54f0 , #ab33aab3f0a6c46 .a06ecaba51a54f0 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(102, 102, 102, 1);letter-spacing: 2px;line-height: 30px;}#ab33aab3f0a6c46 .a8a17adfc8a40bd .ele-wrap {color: #ffffff;border-width: 0px;border-style: solid;font-size: 14px;justify-content: center;background-color: rgba(32, 41, 58, 1);border-radius: 25px;}#ab33aab3f0a6c46 .a8a17adfc8a40bd .ele-wrap:hover {background-color: rgba(82, 95, 118, 1);}#ab33aab3f0a6c46 .uk-grid > .uk-grid-margin {
  margin-top: 50px;
}
#ab33aab3f0a6c46 .dynamic-list-item {
  background-color: #f7f8fa;
}
#ab33aab3f0a6c46 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ab33aab3f0a6c46 .uk-position-center-left-out {
    left: -30px;
  }
  #ab33aab3f0a6c46 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ae73aab083aea54 .aee68a4241abe67 {
  overflow: hidden;
}
#ae73aab083aea54 .aee68a4241abe67 , #ae73aab083aea54 .aee68a4241abe67 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(51, 51, 51, 1);letter-spacing: 2px;}#ae73aab083aea54 .aee68a4241abe67:hover , #ae73aab083aea54 .aee68a4241abe67 *:hover {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(32, 41, 58, 1);letter-spacing: 2px;}#ae73aab083aea54 .a6520a7adaaf1fb {
  overflow: hidden;
}
#ae73aab083aea54 .a6520a7adaaf1fb , #ae73aab083aea54 .a6520a7adaaf1fb > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(102, 102, 102, 1);letter-spacing: 2px;line-height: 30px;}#ae73aab083aea54 .a6537ad831a7c18 .ele-wrap {color: #ffffff;border-width: 0px;border-style: solid;font-size: 14px;justify-content: center;background-color: rgba(32, 41, 58, 1);border-radius: 25px;}#ae73aab083aea54 .a6537ad831a7c18 .ele-wrap:hover {background-color: rgba(82, 95, 118, 1);}#ae73aab083aea54 .uk-grid > .uk-grid-margin {
  margin-top: 50px;
}
#ae73aab083aea54 .dynamic-list-item {
  background-color: #f7f8fa;
}
#ae73aab083aea54 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ae73aab083aea54 .uk-position-center-left-out {
    left: -30px;
  }
  #ae73aab083aea54 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a8e8eab719a5f09 {
  overflow: hidden;
  pointer-events: none;
}
#a8e8eab719a5f09 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a8e8eab719a5f09 > .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;
}
#a8e8eab719a5f09 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a8e8eab719a5f09 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a8e8eab719a5f09 > .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;
}
#a8e8eab719a5f09 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a8e8eab719a5f09 > .tab-wrap > div > .tab-nav,
#a8e8eab719a5f09 > .tab-nav,
#a8e8eab719a5f09 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a8e8eab719a5f09 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
}
#a8e8eab719a5f09 > .tab-wrap > div > .tab-nav-horizontal,
#a8e8eab719a5f09 > .tab-nav-horizontal,
#a8e8eab719a5f09 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a8e8eab719a5f09 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a8e8eab719a5f09 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a8e8eab719a5f09 > .tab-nav-horizontal::-webkit-scrollbar,
#a8e8eab719a5f09 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a8e8eab719a5f09 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a8e8eab719a5f09 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a8e8eab719a5f09 > .tab-nav-horizontal.tagScroll,
#a8e8eab719a5f09 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a8e8eab719a5f09 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 40px;
  overflow-x: auto;
}
#a8e8eab719a5f09 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a8e8eab719a5f09 > .tab-nav-horizontal.tagScroll li a,
#a8e8eab719a5f09 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a8e8eab719a5f09 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a8e8eab719a5f09 > .tab-wrap > div > .tab-nav a,
#a8e8eab719a5f09 > .tab-nav a,
#a8e8eab719a5f09 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a8e8eab719a5f09 > .tab-tabs > .tab-nav a {
  padding: 0 30px;
}
#a8e8eab719a5f09 > .tab-wrap > div > .tab-nav li a,
#a8e8eab719a5f09 > .tab-nav li a,
#a8e8eab719a5f09 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a8e8eab719a5f09 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 39px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 40px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333333;
  letter-spacing: 2px;
  background-color: #f7f8fa;
  margin-top: 10px;
  padding: 0 30px;
}
#a8e8eab719a5f09 > .tab-wrap > div > .tab-nav li a svg,
#a8e8eab719a5f09 > .tab-nav li a svg,
#a8e8eab719a5f09 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a8e8eab719a5f09 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a8e8eab719a5f09 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a8e8eab719a5f09 > .tab-nav li a .ap_icon,
#a8e8eab719a5f09 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a8e8eab719a5f09 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a8e8eab719a5f09 > .tab-wrap > div > .tab-nav li a:hover,
#a8e8eab719a5f09 > .tab-nav li a:hover,
#a8e8eab719a5f09 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a8e8eab719a5f09 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  letter-spacing: 2px;
}
#a8e8eab719a5f09 > .tab-wrap > div > .tab-nav li.uk-active a,
#a8e8eab719a5f09 > .tab-nav li.uk-active a,
#a8e8eab719a5f09 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a8e8eab719a5f09 > .tab-tabs > .tab-nav li.uk-active a {
  background-color: #20293a;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  letter-spacing: 2px;
}
#a8e8eab719a5f09 .layout-left li,
#a8e8eab719a5f09 .layout-center li,
#a8e8eab719a5f09 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a8e8eab719a5f09 .layout-left li a,
#a8e8eab719a5f09 .layout-center li a,
#a8e8eab719a5f09 .layout-right li a {
  height: 100%;
}
#a8e8eab719a5f09 > .tab-tabs .layout-left {
  text-align: left;
}
#a8e8eab719a5f09 > .tab-tabs .layout-center {
  text-align: center;
}
#a8e8eab719a5f09 > .tab-tabs .layout-right {
  text-align: right;
}
#a8e8eab719a5f09 .tab-contents {
  height: 100%;
  height: calc(100% - 40px);
}
#a8e8eab719a5f09 .tab-content-wrap {
  background-color: transparent;
}
#a8e8eab719a5f09 .tab-contents,
#a8e8eab719a5f09 .tab-contents-wrap {
  pointer-events: none;
}
#a8e8eab719a5f09 .tab-content,
#a8e8eab719a5f09 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a8e8eab719a5f09 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a8e8eab719a5f09 .tab-wrap .tab-contents {
  height: 100%;
}
#a8e8eab719a5f09 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a8e8eab719a5f09 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a8e8eab719a5f09 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#aff76a0966ac012 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ad19aa6883a0f36 .uk-container {
  line-height: 2;
  color: #999;
}
#a056dac99bada7e > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ae3a68aba0473 .ap-header-mobile-container {
  color: #fff;
  z-index: 70000;
}
#a5ae3a68aba0473 .ap-nav-mobile-wrapper {
  z-index: 9999;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon > svg,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon img {
  fill: #191919;
  min-width: 20px;
}
#a5ae3a68aba0473 .uk-navbar-toggle {
  min-height: 50px;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container {
  background-color: rgba(255, 255, 255, 0);
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
  width: 70%;
}
@media (min-width: 960px) {
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
    width: 25%;
  }
}
#a5ae3a68aba0473 .ap-nav-navbar-wrapper-children.expand {
  display: block;
}
#a5ae3a68aba0473 .ap-header-mobile .toggle-btn {
  color: #fff;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-color: transparent;
  display: block;
  margin-right: 60px;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a .nav-icon svg {
  color: currentColor;
  fill: currentColor;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:active {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item {
  position: relative;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item a {
  width: 100px;
}
#a4849a580caf499 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a4849a580caf499 .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a4849a580caf499 .ap-icon {
  margin-right: 6px;
}
#a4849a580caf499 .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a4849a580caf499 .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a4849a580caf499 .menu-list > li:hover > a,
#a4849a580caf499 .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list ul,
#a4849a580caf499 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4849a580caf499 .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a4849a580caf499 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4849a580caf499 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4849a580caf499 .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;
}
#ab77aa2142a8475 .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#ab77aa2142a8475 .ele-wrap:hover {background-color: #509c49;}#a1c1aaa9c9a17ea .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#a1c1aaa9c9a17ea .ele-wrap:hover {background-color: #509c49;}#ac93aa7452a854d .form-agree {
  display: flex;
  align-items: center;
}
#ac93aa7452a854d .uk-form .form-submit-btn {
  width: 106px;
}
#ac93aa7452a854d .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#ac93aa7452a854d .submit-wrap {
  text-align: left;
}
#ac93aa7452a854d .submit-wrap button {
  background-color: #20293a;
}
#ac93aa7452a854d .submit-wrap button:hover {
  background-color: #525f76;
}
#ac93aa7452a854d .submit-wrap button {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
}
#ac93aa7452a854d form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#ac93aa7452a854d .form-item {
  border: none;
  border-bottom: 1px solid #d9d9d9;
}
#ac93aa7452a854d .form-item .uk-input,
#ac93aa7452a854d .form-item .uk-select,
#ac93aa7452a854d .form-item .uk-textarea {
  border: none !important;
}
#ac93aa7452a854d .form-item {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}
#ac93aa7452a854d .form-item .uk-input,
#ac93aa7452a854d .form-item .uk-select,
#ac93aa7452a854d .form-item .uk-textarea {
  width: autopx;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  letter-spacing: 2px;
}
#ac93aa7452a854d .form-item .auto-height {
  height: auto;
}
#ac93aa7452a854d .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  letter-spacing: 2px;
}
#ac93aa7452a854d .uk-form-label,
#ac93aa7452a854d .form-agree,
#ac93aa7452a854d .uk-h3,
#ac93aa7452a854d p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  letter-spacing: 2px;
}
#ac93aa7452a854d .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-bottom: 1px solid #e5e5e5;
}
#ac93aa7452a854d .form-item > label {
  flex: none;
}
#ac93aa7452a854d .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#ac93aa7452a854d .form-item .uk-input,
#ac93aa7452a854d .form-item .uk-select,
#ac93aa7452a854d .form-item .uk-textarea,
#ac93aa7452a854d .form-item .address-select,
#ac93aa7452a854d .form-item .uk-grid {
  border: none;
  flex: 1;
}
#ac93aa7452a854d .form-item .address-select .uk-select {
  padding-left: 4px;
}
#adde6ae039ae3d8 {
  overflow: hidden;
  pointer-events: none;
}
#adde6ae039ae3d8 > .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;
}
#adde6ae039ae3d8 > .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;
}
#adde6ae039ae3d8 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#adde6ae039ae3d8 > .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;
}
#adde6ae039ae3d8 > .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;
}
#adde6ae039ae3d8 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#adde6ae039ae3d8 > .tab-wrap > div > .tab-nav,
#adde6ae039ae3d8 > .tab-nav,
#adde6ae039ae3d8 > .tab-tabs > .tab-wrap > div > .tab-nav,
#adde6ae039ae3d8 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#adde6ae039ae3d8 > .tab-wrap > div > .tab-nav-horizontal,
#adde6ae039ae3d8 > .tab-nav-horizontal,
#adde6ae039ae3d8 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#adde6ae039ae3d8 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#adde6ae039ae3d8 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#adde6ae039ae3d8 > .tab-nav-horizontal::-webkit-scrollbar,
#adde6ae039ae3d8 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#adde6ae039ae3d8 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#adde6ae039ae3d8 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#adde6ae039ae3d8 > .tab-nav-horizontal.tagScroll,
#adde6ae039ae3d8 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#adde6ae039ae3d8 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#adde6ae039ae3d8 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#adde6ae039ae3d8 > .tab-nav-horizontal.tagScroll li a,
#adde6ae039ae3d8 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#adde6ae039ae3d8 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#adde6ae039ae3d8 > .tab-wrap > div > .tab-nav a,
#adde6ae039ae3d8 > .tab-nav a,
#adde6ae039ae3d8 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#adde6ae039ae3d8 > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#adde6ae039ae3d8 > .tab-wrap > div > .tab-nav li a,
#adde6ae039ae3d8 > .tab-nav li a,
#adde6ae039ae3d8 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#adde6ae039ae3d8 > .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: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#adde6ae039ae3d8 > .tab-wrap > div > .tab-nav li a svg,
#adde6ae039ae3d8 > .tab-nav li a svg,
#adde6ae039ae3d8 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#adde6ae039ae3d8 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#adde6ae039ae3d8 > .tab-wrap > div > .tab-nav li a .ap_icon,
#adde6ae039ae3d8 > .tab-nav li a .ap_icon,
#adde6ae039ae3d8 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#adde6ae039ae3d8 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#adde6ae039ae3d8 > .tab-wrap > div > .tab-nav li a:hover,
#adde6ae039ae3d8 > .tab-nav li a:hover,
#adde6ae039ae3d8 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#adde6ae039ae3d8 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #20293a;
  border-bottom-width: 2px;
  border-bottom-color: #20293a;
  border-bottom-style: solid;
}
#adde6ae039ae3d8 > .tab-wrap > div > .tab-nav li.uk-active a,
#adde6ae039ae3d8 > .tab-nav li.uk-active a,
#adde6ae039ae3d8 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#adde6ae039ae3d8 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #20293a;
  border-bottom-width: 2px;
  border-bottom-color: #20293a;
  border-bottom-style: solid;
}
#adde6ae039ae3d8 > .tab-wrap > div > .tab-nav li:last-child a,
#adde6ae039ae3d8 > .tab-nav li:last-child a,
#adde6ae039ae3d8 > .tab-tabs > .tab-wrap > div > .tab-nav li:last-child a,
#adde6ae039ae3d8 > .tab-tabs > .tab-nav li:last-child a {
  border-right: undefined;
}
#adde6ae039ae3d8 .layout-left li,
#adde6ae039ae3d8 .layout-center li,
#adde6ae039ae3d8 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#adde6ae039ae3d8 .layout-left li a,
#adde6ae039ae3d8 .layout-center li a,
#adde6ae039ae3d8 .layout-right li a {
  height: 100%;
}
#adde6ae039ae3d8 > .tab-tabs .layout-left {
  text-align: left;
}
#adde6ae039ae3d8 > .tab-tabs .layout-center {
  text-align: center;
}
#adde6ae039ae3d8 > .tab-tabs .layout-right {
  text-align: right;
}
#adde6ae039ae3d8 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#adde6ae039ae3d8 .tab-content-wrap {
  background-color: transparent;
}
#adde6ae039ae3d8 .tab-contents,
#adde6ae039ae3d8 .tab-contents-wrap {
  pointer-events: none;
}
#adde6ae039ae3d8 .tab-content,
#adde6ae039ae3d8 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#adde6ae039ae3d8 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#adde6ae039ae3d8 .tab-wrap .tab-contents {
  height: 100%;
}
#adde6ae039ae3d8 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#adde6ae039ae3d8 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#adde6ae039ae3d8 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#aff76a0966ac012 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a11ada803aa9c04 {
  min-height: 90vh;
  /* mobile */
}
#a11ada803aa9c04 .search-highlight {
  background: yellow;
}
#a11ada803aa9c04 .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a11ada803aa9c04 .el-title {
  margin-bottom: 20px;
}
#a11ada803aa9c04 .el-item:hover .el-title {
  color: #20293a;
}
#a11ada803aa9c04 .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a11ada803aa9c04 .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a11ada803aa9c04 .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a11ada803aa9c04 .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a11ada803aa9c04 .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a11ada803aa9c04 .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a11ada803aa9c04 .el-title {
    margin-bottom: 0;
  }
  #a11ada803aa9c04 .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a11ada803aa9c04 .category {
    font-size: 12px;
  }
  #a11ada803aa9c04 .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#af332a9434ab9a9 .uk-container {
  line-height: 2;
  color: #999;
}
#a056dac99bada7e > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ae3a68aba0473 .ap-header-mobile-container {
  color: #fff;
  z-index: 70000;
}
#a5ae3a68aba0473 .ap-nav-mobile-wrapper {
  z-index: 9999;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon > svg,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon img {
  fill: #191919;
  min-width: 20px;
}
#a5ae3a68aba0473 .uk-navbar-toggle {
  min-height: 50px;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container {
  background-color: rgba(255, 255, 255, 0);
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
  width: 70%;
}
@media (min-width: 960px) {
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
    width: 25%;
  }
}
#a5ae3a68aba0473 .ap-nav-navbar-wrapper-children.expand {
  display: block;
}
#a5ae3a68aba0473 .ap-header-mobile .toggle-btn {
  color: #fff;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-color: transparent;
  display: block;
  margin-right: 60px;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a .nav-icon svg {
  color: currentColor;
  fill: currentColor;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:active {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item {
  position: relative;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item a {
  width: 100px;
}
#a4849a580caf499 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a4849a580caf499 .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a4849a580caf499 .ap-icon {
  margin-right: 6px;
}
#a4849a580caf499 .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a4849a580caf499 .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a4849a580caf499 .menu-list > li:hover > a,
#a4849a580caf499 .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list ul,
#a4849a580caf499 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4849a580caf499 .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a4849a580caf499 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4849a580caf499 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4849a580caf499 .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;
}
#ab77aa2142a8475 .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#ab77aa2142a8475 .ele-wrap:hover {background-color: #509c49;}#a1c1aaa9c9a17ea .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#a1c1aaa9c9a17ea .ele-wrap:hover {background-color: #509c49;}#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#aff76a0966ac012 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a1fc2abc88aa057 {
  /* 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------------------------*/
}
#a1fc2abc88aa057 * {
  font-family: 'PT Sans Caption', sans-serif, 'arial', 'Times New Roman';
}
#a1fc2abc88aa057 .error .clip .shadow {
  height: 180px;
  /*Contrall*/
}
#a1fc2abc88aa057 .error .clip:nth-of-type(2) .shadow {
  width: 130px;
  /*Contrall play with javascript*/
}
#a1fc2abc88aa057 .error .clip:nth-of-type(1) .shadow,
#a1fc2abc88aa057 .error .clip:nth-of-type(3) .shadow {
  width: 250px;
  /*Contrall*/
}
#a1fc2abc88aa057 .error .digit {
  width: 150px;
  /*Contrall*/
  height: 150px;
  /*Contrall*/
  line-height: 150px;
  /*Contrall*/
  font-size: 120px;
  font-weight: bold;
}
#a1fc2abc88aa057 .error h2 {
  font-size: 32px;
}
#a1fc2abc88aa057 .error .msg {
  top: -190px;
  left: 30%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 32px;
}
#a1fc2abc88aa057 .error span.triangle {
  top: 70%;
  right: 0%;
  border-left: 20px solid #535353;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
#a1fc2abc88aa057 .error .container-error-404 {
  margin-top: 10%;
  position: relative;
  height: 250px;
  padding-top: 40px;
  text-align: center;
}
#a1fc2abc88aa057 .error .container-error-404 .clip {
  display: inline-block;
  transform: skew(-45deg);
}
#a1fc2abc88aa057 .error .clip .shadow {
  overflow: hidden;
}
#a1fc2abc88aa057 .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);
}
#a1fc2abc88aa057 .error .clip:nth-of-type(3) .shadow:after,
#a1fc2abc88aa057 .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%;
}
#a1fc2abc88aa057 .error .clip:nth-of-type(3) .shadow:after {
  left: -8px;
}
#a1fc2abc88aa057 .error .digit {
  position: relative;
  top: 8%;
  color: white;
  background: #07B3F9;
  border-radius: 50%;
  display: inline-block;
  transform: skew(45deg);
}
#a1fc2abc88aa057 .error .clip:nth-of-type(2) .digit {
  left: -10%;
}
#a1fc2abc88aa057 .error .clip:nth-of-type(1) .digit {
  right: -20%;
}
#a1fc2abc88aa057 .error .clip:nth-of-type(3) .digit {
  left: -20%;
}
#a1fc2abc88aa057 .error h2 {
  color: #A2A2A2;
  font-weight: bold;
  padding-bottom: 20px;
}
#a1fc2abc88aa057 .error .msg {
  position: relative;
  z-index: 9999;
  display: block;
  background: #535353;
  color: #A2A2A2;
  border-radius: 50%;
  font-style: italic;
}
#a1fc2abc88aa057 .error .triangle {
  position: absolute;
  z-index: 999;
  transform: rotate(45deg);
  content: "";
  width: 0;
  height: 0;
}
@media (max-width: 767px) {
  #a1fc2abc88aa057 {
    /* Error Page */
    /* Error Page */
  }
  #a1fc2abc88aa057 .error .clip .shadow {
    height: 100px;
    /*Contrall*/
  }
  #a1fc2abc88aa057 .error .clip:nth-of-type(2) .shadow {
    width: 80px;
    /*Contrall play with javascript*/
  }
  #a1fc2abc88aa057 .error .clip:nth-of-type(1) .shadow,
  #a1fc2abc88aa057 .error .clip:nth-of-type(3) .shadow {
    width: 100px;
    /*Contrall*/
  }
  #a1fc2abc88aa057 .error .digit {
    width: 80px;
    /*Contrall*/
    height: 80px;
    /*Contrall*/
    line-height: 80px;
    /*Contrall*/
    font-size: 52px;
  }
  #a1fc2abc88aa057 .error h2 {
    font-size: 24px;
  }
  #a1fc2abc88aa057 .error .msg {
    top: -110px;
    left: 15%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  #a1fc2abc88aa057 .error span.triangle {
    top: 70%;
    right: -3%;
    border-left: 10px solid #535353;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  #a1fc2abc88aa057 .error .container-error-404 {
    height: 150px;
  }
}
#a1fc2abc88aa057 .overlay {
  position: relative;
  z-index: 20;
}
#a1fc2abc88aa057 .ground-color {
  background: white;
}
#a1fc2abc88aa057 .item-bg-color {
  background: #EAEAEA;
}
#a1fc2abc88aa057 .padding-top {
  padding-top: 10px;
}
#a1fc2abc88aa057 .padding-bottom {
  padding-bottom: 10px;
}
#a1fc2abc88aa057 .padding-vertical {
  padding-top: 10px;
  padding-bottom: 10px;
}
#a1fc2abc88aa057 .padding-horizontal {
  padding-left: 10px;
  padding-right: 10px;
}
#a1fc2abc88aa057 .padding-all {
  padding: 10px;
}
#a1fc2abc88aa057 .no-padding-left {
  padding-left: 0px;
}
#a1fc2abc88aa057 .no-padding-right {
  padding-right: 0px;
}
#a1fc2abc88aa057 .no-vertical-padding {
  padding-top: 0px;
  padding-bottom: 0px;
}
#a1fc2abc88aa057 .no-horizontal-padding {
  padding-left: 0px;
  padding-right: 0px;
}
#a1fc2abc88aa057 .no-padding {
  padding: 0px;
}
#a1fc2abc88aa057 .margin-top {
  margin-top: 10px;
}
#a1fc2abc88aa057 .margin-bottom {
  margin-bottom: 10px;
}
#a1fc2abc88aa057 .margin-right {
  margin-right: 10px;
}
#a1fc2abc88aa057 .margin-left {
  margin-left: 10px;
}
#a1fc2abc88aa057 .margin-horizontal {
  margin-left: 10px;
  margin-right: 10px;
}
#a1fc2abc88aa057 .margin-vertical {
  margin-top: 10px;
  margin-bottom: 10px;
}
#a1fc2abc88aa057 .margin-all {
  margin: 10px;
}
#a1fc2abc88aa057 .no-margin {
  margin: 0px;
}
#a1fc2abc88aa057 .no-vertical-margin {
  margin-top: 0px;
  margin-bottom: 0px;
}
#a1fc2abc88aa057 .no-horizontal-margin {
  margin-left: 0px;
  margin-right: 0px;
}
#a1fc2abc88aa057 .inside-col-shrink {
  margin: 0px 20px;
}
#a1fc2abc88aa057 hr {
  margin: 0px;
  padding: 0px;
  border-top: 1px dashed #999;
}
#aef32a0efaaa0ec .uk-container {
  line-height: 2;
  color: #999;
}
#a056dac99bada7e > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ae3a68aba0473 .ap-header-mobile-container {
  color: #fff;
  z-index: 70000;
}
#a5ae3a68aba0473 .ap-nav-mobile-wrapper {
  z-index: 9999;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon > svg,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon img {
  fill: #191919;
  min-width: 20px;
}
#a5ae3a68aba0473 .uk-navbar-toggle {
  min-height: 50px;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container {
  background-color: rgba(255, 255, 255, 0);
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
  width: 70%;
}
@media (min-width: 960px) {
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
    width: 25%;
  }
}
#a5ae3a68aba0473 .ap-nav-navbar-wrapper-children.expand {
  display: block;
}
#a5ae3a68aba0473 .ap-header-mobile .toggle-btn {
  color: #fff;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-color: transparent;
  display: block;
  margin-right: 60px;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a .nav-icon svg {
  color: currentColor;
  fill: currentColor;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:active {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item {
  position: relative;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item a {
  width: 100px;
}
#a4849a580caf499 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a4849a580caf499 .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a4849a580caf499 .ap-icon {
  margin-right: 6px;
}
#a4849a580caf499 .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a4849a580caf499 .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a4849a580caf499 .menu-list > li:hover > a,
#a4849a580caf499 .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list ul,
#a4849a580caf499 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4849a580caf499 .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a4849a580caf499 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4849a580caf499 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4849a580caf499 .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;
}
#ab77aa2142a8475 .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#ab77aa2142a8475 .ele-wrap:hover {background-color: #509c49;}#a1c1aaa9c9a17ea .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#a1c1aaa9c9a17ea .ele-wrap:hover {background-color: #509c49;}#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#aff76a0966ac012 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a531caf066a5b45 .login-main {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(12, 1, 4, 0.05);
}
#a531caf066a5b45 .switch_item {
  margin-right: 10px;
}
#a531caf066a5b45 a.switch_item:hover {
  text-decoration: underline;
}
#a531caf066a5b45 .slider {
  width: 420px;
  height: 600px;
}
#a531caf066a5b45 .uk-slideshow-items {
  height: 100%;
}
#a531caf066a5b45 .uk-slideshow-items a {
  width: 100%;
  height: 100%;
  display: block;
}
#a531caf066a5b45 .login-wrap {
  width: 100%;
  height: 100%;
}
#a531caf066a5b45 .uk-dotnav > * > * {
  background: #fff;
  border-color: #fff;
  opacity: .5;
}
#a531caf066a5b45 .uk-dotnav > .uk-active > * {
  border-color: #0076fe;
  background: #0076fe;
}
#a531caf066a5b45 .phone-login-box {
  margin: 40px auto 40px;
}
#a531caf066a5b45 .login-header {
  margin-bottom: 24px;
}
#a531caf066a5b45 .login-header h4 {
  font-size: 22px;
  font-weight: bolder;
  line-height: 1;
  padding-left: 20px;
  border-left: 4px solid #0076fe;
}
#a531caf066a5b45 .input-item {
  width: 330px;
  height: 45px;
  background-color: #f0f2f7;
  border-radius: 22px;
  border: solid 1px #e3e8f0;
  position: relative;
  overflow: hidden;
}
#a531caf066a5b45 .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;
}
#a531caf066a5b45 .forget_password {
  cursor: pointer;
}
#a531caf066a5b45 .forget_password:hover {
  color: #20293a;
}
#a531caf066a5b45 .input-item input.error,
#a531caf066a5b45 .input-item input.error::placeholder {
  color: #fc4343;
}
#a531caf066a5b45 .input-item input::placeholder {
  color: #999;
}
#a531caf066a5b45 .input-item .icon {
  position: absolute;
  left: 10px;
  top: 12px;
  fill: #ccc;
  width: 20px;
}
#a531caf066a5b45 .form-item {
  margin: 24px 0;
}
#a531caf066a5b45 .verifycode-input .input-item {
  width: 200px;
  float: left;
}
#a531caf066a5b45 .send-code {
  float: left;
  margin-left: 20px;
}
#a531caf066a5b45 .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;
}
#a531caf066a5b45 .submit {
  width: 330px;
  height: 45px;
  background-color: #0076fe;
  border-radius: 22px;
  font-size: 18px;
  line-height: 45px;
  color: #fff;
  cursor: pointer;
}
#a531caf066a5b45 .error {
  color: #fc4343;
  font-size: 12px;
  padding-left: 10px;
  display: block;
  max-width: 300px;
}
#a531caf066a5b45 .login_btn_wrap {
  text-align: center;
}
#a531caf066a5b45 .login_btn_wrap .submit {
  display: block;
  margin-bottom: 10px;
}
#a531caf066a5b45 .input-item .pwd-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  font-size: 16px;
  color: #999;
  cursor: pointer;
}
#a531caf066a5b45 .input-item .pwd-toggle:hover {
  color: currentColor;
}
#a82bea13e7ac33c .uk-container {
  line-height: 2;
  color: #999;
}
#a056dac99bada7e > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ae3a68aba0473 .ap-header-mobile-container {
  color: #fff;
  z-index: 70000;
}
#a5ae3a68aba0473 .ap-nav-mobile-wrapper {
  z-index: 9999;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon > svg,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon img {
  fill: #191919;
  min-width: 20px;
}
#a5ae3a68aba0473 .uk-navbar-toggle {
  min-height: 50px;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container {
  background-color: rgba(255, 255, 255, 0);
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
  width: 70%;
}
@media (min-width: 960px) {
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
    width: 25%;
  }
}
#a5ae3a68aba0473 .ap-nav-navbar-wrapper-children.expand {
  display: block;
}
#a5ae3a68aba0473 .ap-header-mobile .toggle-btn {
  color: #fff;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-color: transparent;
  display: block;
  margin-right: 60px;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a .nav-icon svg {
  color: currentColor;
  fill: currentColor;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:active {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item {
  position: relative;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item a {
  width: 100px;
}
#a4849a580caf499 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a4849a580caf499 .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a4849a580caf499 .ap-icon {
  margin-right: 6px;
}
#a4849a580caf499 .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a4849a580caf499 .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a4849a580caf499 .menu-list > li:hover > a,
#a4849a580caf499 .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list ul,
#a4849a580caf499 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4849a580caf499 .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a4849a580caf499 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4849a580caf499 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4849a580caf499 .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;
}
#ab77aa2142a8475 .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#ab77aa2142a8475 .ele-wrap:hover {background-color: #509c49;}#a1c1aaa9c9a17ea .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#a1c1aaa9c9a17ea .ele-wrap:hover {background-color: #509c49;}#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#aff76a0966ac012 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a66efab740a95b3 .sidebar {
  width: 150px;
  max-width: 150px;
  height: 100%;
}
#a66efab740a95b3 .nav-items {
  background: #fafafa;
  min-height: 200px;
}
#a66efab740a95b3 .phone-info {
  background: #fafafa;
  margin-top: 10px;
  font-size: 12px;
  padding: 22px 4px 20px 16px;
  line-height: 1.5;
  color: #666;
}
#a66efab740a95b3 .phone-info .phone {
  line-height: 1.5;
  color: #333;
  font-size: 18px;
  font-family: Arial;
}
#a66efab740a95b3 .nav-type {
  line-height: 37px;
  padding-left: 20px;
  cursor: pointer;
}
#a66efab740a95b3 .nav-type.active {
  color: #FFF;
  cursor: default;
  background: #ff658c;
}
#a66efab740a95b3 .content {
  padding-bottom: 60px;
  color: #666;
  border: 1px solid #f0f0f0;
  min-height: 400px;
}
#a66efab740a95b3 .nav-list {
  padding: 0 20px;
}
#a66efab740a95b3 .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;
}
#a66efab740a95b3 .nav-list .nav-item.active {
  background-color: #ff5c89;
  color: #fff;
  cursor: default;
}
#a66efab740a95b3 .order-item {
  margin-top: 10px;
  background: #fff;
  padding: 0 20px;
}
#a66efab740a95b3 .order-item:hover {
  background: #f7f7f7;
}
#a66efab740a95b3 .del-order {
  cursor: pointer;
}
#a66efab740a95b3 .order-item .order-title {
  line-height: 40px;
  color: #666;
  font-size: 13px;
  border-bottom: 1px solid #f7f7f7;
}
#a66efab740a95b3 .goods-item {
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
}
#a66efab740a95b3 .order-goods-list .goods-item:last-child {
  border-bottom: none;
}
#a66efab740a95b3 .goods-item img {
  width: 100px;
  height: 100px;
  background: #f4f4f4;
}
#a66efab740a95b3 .goods-item .goods-info {
  padding: 0 15px;
}
#a66efab740a95b3 .appoint-time span {
  color: #e4393c;
  background-color: #f9eeee;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 2px;
  line-height: 1;
}
#a66efab740a95b3 .appoint-time {
  margin-bottom: 4px;
}
#a66efab740a95b3 .appoint-name {
  color: #333;
  font-size: 14px;
}
#a66efab740a95b3 .appoint-info {
  padding: 0 15px;
  font-size: 12px;
  color: #888;
}
#a66efab740a95b3 .goods-item .goods-name {
  color: #333;
}
#a66efab740a95b3 .goods-item .sku-name {
  color: #999;
  font-size: 12px;
}
#a66efab740a95b3 .order-total-info {
  padding-bottom: 10px;
  color: #999;
  font-size: 12px;
}
#a66efab740a95b3 .order-total-info .total-price {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
}
#a66efab740a95b3 .load-more {
  font-size: 12px;
  padding-bottom: 15px;
  color: #999;
}
#a66efab740a95b3 .order-btns {
  padding: 10px 0;
  border-top: 1px solid #f7f7f7;
}
#a66efab740a95b3 .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;
}
#a66efab740a95b3 .order-btns .btn-warn {
  color: #fff;
  background: #eb3c3c;
  border-color: #eb3c3c;
  cursor: pointer;
}
#a66efab740a95b3 .appoint-info .title {
  font-weight: bold;
  color: #333;
}
#a66efab740a95b3 .coupon-item {
  margin: 10px 30px;
  display: inline-flex;
  width: 42%;
}
#a66efab740a95b3 .setting-form {
  padding: 30px 20px;
}
#a66efab740a95b3 .setting-item {
  margin-bottom: 20px;
  font-size: 13px;
  color: #666;
  line-height: 18px;
}
#a66efab740a95b3 .setting-item .label {
  display: inline-block;
  margin-right: 6px;
  text-align: right;
  min-width: 120px;
}
#a66efab740a95b3 .setting-item .input-text {
  border: 1px solid #ccc;
  line-height: 28px;
  padding: 0 10px;
  min-width: 200px;
  font-size: 13px;
}
#a66efab740a95b3 .setting-form .setting-btns {
  margin-left: 130px;
}
#a66efab740a95b3 .setting-form .uk-button {
  height: 30px;
  line-height: 30px;
  margin-right: 8px;
}
#a66efab740a95b3 .setting-wrap {
  position: relative;
}
#a66efab740a95b3 .user-info {
  border: 1px solid #ccc;
  width: 300px;
  position: absolute;
  right: 80px;
  top: 30px;
  color: #666;
  padding: 10px;
  font-size: 13px;
  background: #f9f9f9;
}
#a66efab740a95b3 .user-info .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 10px;
}
#a66efab740a95b3 .user-info .levels {
  color: #888;
  font-size: 12px;
}
#a66efab740a95b3 .address-wrap {
  padding: 30px 20px;
}
#a66efab740a95b3 .addr-header {
  font-size: 18px;
  color: #333;
  margin: 0;
}
#a66efab740a95b3 .addr-detail {
  border-bottom: 1px solid #ececec;
  margin-bottom: 10px;
}
#a66efab740a95b3 .addr-list {
  min-height: 200px;
}
#a66efab740a95b3 .addr-detail .addr-item-name,
#a66efab740a95b3 .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;
}
#a66efab740a95b3 .addr-detail .addr-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
#a66efab740a95b3 .addr-detail .addr-item-name {
  color: #e93b3d;
  border-color: #e93b3d;
}
#a66efab740a95b3 .addr-detail {
  padding: 12px 0;
  flex: 1;
}
#a66efab740a95b3 .op-btns a {
  font-size: 12px;
  color: #e93b3d;
  margin-left: 6px;
}
#a66efab740a95b3 .add-addr {
  height: 32px;
  line-height: 30px;
}
#a66efab740a95b3 .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;
}
#a66efab740a95b3 .publish-item {
  cursor: default;
  min-height: 120px;
}
#a66efab740a95b3 .publish-item .status-0 {
  background-image: url(/resources/sys/img/icons/info-unread.png);
}
#a66efab740a95b3 .publish-item .status-1 {
  background-image: url(/resources/sys/img/icons/info-fail.png);
}
#a66efab740a95b3 .publish-item .btns a {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 2px;
  color: #fff;
  background: #20293a;
}
#a66efab740a95b3 .publish-item .btns .del-info {
  background: #ccc;
  color: #999;
}
#a9cf7aed09a98c4 .uk-container {
  line-height: 2;
  color: #999;
}
#a056dac99bada7e > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ae3a68aba0473 .ap-header-mobile-container {
  color: #fff;
  z-index: 70000;
}
#a5ae3a68aba0473 .ap-nav-mobile-wrapper {
  z-index: 9999;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon > svg,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon img {
  fill: #191919;
  min-width: 20px;
}
#a5ae3a68aba0473 .uk-navbar-toggle {
  min-height: 50px;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container {
  background-color: rgba(255, 255, 255, 0);
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
  width: 70%;
}
@media (min-width: 960px) {
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
    width: 25%;
  }
}
#a5ae3a68aba0473 .ap-nav-navbar-wrapper-children.expand {
  display: block;
}
#a5ae3a68aba0473 .ap-header-mobile .toggle-btn {
  color: #fff;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-color: transparent;
  display: block;
  margin-right: 60px;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a .nav-icon svg {
  color: currentColor;
  fill: currentColor;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:active {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item {
  position: relative;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item a {
  width: 100px;
}
#a4849a580caf499 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a4849a580caf499 .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a4849a580caf499 .ap-icon {
  margin-right: 6px;
}
#a4849a580caf499 .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a4849a580caf499 .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a4849a580caf499 .menu-list > li:hover > a,
#a4849a580caf499 .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list ul,
#a4849a580caf499 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4849a580caf499 .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a4849a580caf499 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4849a580caf499 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4849a580caf499 .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;
}
#ab77aa2142a8475 .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#ab77aa2142a8475 .ele-wrap:hover {background-color: #509c49;}#a1c1aaa9c9a17ea .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#a1c1aaa9c9a17ea .ele-wrap:hover {background-color: #509c49;}#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#aff76a0966ac012 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ac595a38d6a0c0d {
  min-height: 90vh;
  /* mobile */
}
#ac595a38d6a0c0d .search-highlight {
  background: yellow;
}
#ac595a38d6a0c0d .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#ac595a38d6a0c0d .el-title {
  margin-bottom: 20px;
}
#ac595a38d6a0c0d .el-item:hover .el-title {
  color: #20293a;
}
#ac595a38d6a0c0d .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#ac595a38d6a0c0d .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#ac595a38d6a0c0d .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#ac595a38d6a0c0d .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#ac595a38d6a0c0d .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#ac595a38d6a0c0d .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #ac595a38d6a0c0d .el-title {
    margin-bottom: 0;
  }
  #ac595a38d6a0c0d .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #ac595a38d6a0c0d .category {
    font-size: 12px;
  }
  #ac595a38d6a0c0d .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#ae81faf04ea8530 .uk-container {
  line-height: 2;
  color: #999;
}
#a056dac99bada7e > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ae3a68aba0473 .ap-header-mobile-container {
  color: #fff;
  z-index: 70000;
}
#a5ae3a68aba0473 .ap-nav-mobile-wrapper {
  z-index: 9999;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon > svg,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon img {
  fill: #191919;
  min-width: 20px;
}
#a5ae3a68aba0473 .uk-navbar-toggle {
  min-height: 50px;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container {
  background-color: rgba(255, 255, 255, 0);
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
  width: 70%;
}
@media (min-width: 960px) {
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
    width: 25%;
  }
}
#a5ae3a68aba0473 .ap-nav-navbar-wrapper-children.expand {
  display: block;
}
#a5ae3a68aba0473 .ap-header-mobile .toggle-btn {
  color: #fff;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-color: transparent;
  display: block;
  margin-right: 60px;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a .nav-icon svg {
  color: currentColor;
  fill: currentColor;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:active {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item {
  position: relative;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item a {
  width: 100px;
}
#a4849a580caf499 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a4849a580caf499 .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a4849a580caf499 .ap-icon {
  margin-right: 6px;
}
#a4849a580caf499 .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a4849a580caf499 .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a4849a580caf499 .menu-list > li:hover > a,
#a4849a580caf499 .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list ul,
#a4849a580caf499 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4849a580caf499 .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a4849a580caf499 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4849a580caf499 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4849a580caf499 .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;
}
#ab77aa2142a8475 .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#ab77aa2142a8475 .ele-wrap:hover {background-color: #509c49;}#a1c1aaa9c9a17ea .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#a1c1aaa9c9a17ea .ele-wrap:hover {background-color: #509c49;}#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#aff76a0966ac012 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a03b1a6b75ad3d0 .comment-detail {
  min-height: 600px;
}
#a03b1a6b75ad3d0 table {
  background: #f9fdff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#a03b1a6b75ad3d0 table th,
#a03b1a6b75ad3d0 table td {
  padding: 10px 20px;
  border: #ececec 1px solid;
  line-height: 1.8em;
}
#a03b1a6b75ad3d0 table th {
  padding-left: 0;
  text-align: right;
  background: #eff7fe;
  font-weight: normal;
  color: #333;
}
#a03b1a6b75ad3d0 .red {
  color: #F00!important;
}
#a03b1a6b75ad3d0 .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;
}
#a16f5add2ba015c .uk-container {
  line-height: 2;
  color: #999;
}
#a056dac99bada7e > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ae3a68aba0473 .ap-header-mobile-container {
  color: #fff;
  z-index: 70000;
}
#a5ae3a68aba0473 .ap-nav-mobile-wrapper {
  z-index: 9999;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon > svg,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .uk-navbar-toggle-icon img {
  fill: #191919;
  min-width: 20px;
}
#a5ae3a68aba0473 .uk-navbar-toggle {
  min-height: 50px;
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container {
  background-color: rgba(255, 255, 255, 0);
}
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
#a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
  width: 70%;
}
@media (min-width: 960px) {
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-left,
  #a5ae3a68aba0473 .ap-header-mobile .ap-header-mobile-container .ap-nav-mobile-wrapper .ap-nav-mobile-container-right {
    width: 25%;
  }
}
#a5ae3a68aba0473 .ap-nav-navbar-wrapper-children.expand {
  display: block;
}
#a5ae3a68aba0473 .ap-header-mobile .toggle-btn {
  color: #fff;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  background-color: transparent;
  display: block;
  margin-right: 60px;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a .nav-icon svg {
  color: currentColor;
  fill: currentColor;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list a:active {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #2871db;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item {
  position: relative;
}
#a5ae3a68aba0473 .ap-nav-mobile-container-item-list .ap-nav-navbar-wrapper-children-item a {
  width: 100px;
}
#a4849a580caf499 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a4849a580caf499 .menu-list li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#a4849a580caf499 .ap-icon {
  margin-right: 6px;
}
#a4849a580caf499 .menu-list > li {
  display: inline-flex;
  align-items: center;
}
#a4849a580caf499 .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: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  line-height: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#a4849a580caf499 .menu-list > li:hover > a,
#a4849a580caf499 .menu-list > li.active > a {
  background: rgba(40, 113, 219, 0);
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list > li.active > a {
  background-color: rgba(40, 113, 219, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #20293a;
  border-bottom-style: none;
  border-bottom-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-width: 2px;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a4849a580caf499 .menu-list ul,
#a4849a580caf499 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4849a580caf499 .menu-list ul {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#a4849a580caf499 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4849a580caf499 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4849a580caf499 .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;
}
#ab77aa2142a8475 .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#ab77aa2142a8475 .ele-wrap:hover {background-color: #509c49;}#a1c1aaa9c9a17ea .ele-wrap {color: #000000;font-size: 15px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;}#a1c1aaa9c9a17ea .ele-wrap:hover {background-color: #509c49;}#aae2ca8761a772b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#aae2ca8761a772b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a2d18ad195a1abd a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a2d18ad195a1abd a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}#a1ac1a92bdacf5b a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(255, 255, 255, 1);letter-spacing: 2px;}#a1ac1a92bdacf5b a:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(82, 95, 118, 1);}<!--0.00049901008605957-->