.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: #f0542c;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.uk-link:hover {
  color: #0f6ecd;
}
/* 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: #0f6ecd;
}
/* 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: #7ed321;
  text-shadow: none;
}
::selection {
  background: #7ed321;
  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 #7ed321;
}
/* Small
   ========================================================================== */
/*
   * Reset child height, caused by `inline-block`
   */
.uk-divider-small {
  line-height: 0;
}
.uk-divider-small::after {
  border-top: 2px solid #7ed321;
}
/* ========================================================================
     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: #7ed321;
  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: #7ed321;
  outline: none;
}
/* OnClick + Active */
.uk-icon-button:active,
.uk-active > .uk-icon-button {
  background-color: #7ed321;
  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: #7ed321;
  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: #7ed321;
}
/* OnClick + Active */
.uk-button-default:active,
.uk-button-default.uk-active {
  background-color: #7ed321;
  color: #ffffff;
}
/*
   * Primary
   */
.uk-button-primary {
  background-color: #7ed321;
  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: #7ed321;
  color: #ffffff;
  border-color: #7ed321;
}
/*
   * 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: #7ed321;
}
/* 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: #f0542c;
}
/* Hover + Focus */
.uk-button-link:hover,
.uk-button-link:focus {
  color: #0f6ecd;
}
/* 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: #7ed321;
}
/*
   * 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: #7ed321;
}
/*
   * 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: #7ed321;
  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: #7ed321;
  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: #7ed321;
}
/*
   * 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: #7ed321;
  color: #ffffff;
}
/*
   * Required for `a`
   */
.uk-badge:hover,
.uk-badge:focus {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
/* ========================================================================
     Component: Label
   ========================================================================== */
.uk-label {
  background: #7ed321;
  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: #7ed321;
  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: #7ed321;
}
/* 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: #7ed321;
  outline: none;
}
.uk-navbar-nav > li > a:hover::before {
  background-color: currentColor;
}
/* OnClick */
.uk-navbar-nav > li.uk-active > a::before {
  background-color: #7ed321;
}
/* Item
   ========================================================================== */
.uk-navbar-item {
  color: #666;
}
/* Toggle
   ========================================================================== */
.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus,
.uk-navbar-toggle.uk-open {
  color: #7ed321;
}
/* 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: #7ed321;
  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: #7ed321;
  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: #7ed321;
  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: #7ed321;
}
/* 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: #7ed321;
  border-color: transparent;
}
/* Active */
.uk-dotnav > .uk-active > * {
  background-color: #7ed321;
  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: #7ed321;
}
/*
   * 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: #7ed321;
}
/* 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: #7ed321;
}
/*
   * 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: #7ed321;
  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: #7ed321;
}
.uk-progress::-moz-progress-bar {
  background-color: #7ed321;
}
.uk-progress::-ms-fill {
  background-color: #7ed321;
}
/* ========================================================================
     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: #7ed321 !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: #7ed321 !important;
}
@supports (-webkit-background-clip: text) {
  .uk-text-background {
    background-color: #7ed321;
  }
}
/* ========================================================================
     Component: Background
   ========================================================================== */
/* Color
   ========================================================================== */
.uk-background-default {
  background-color: #ffffff;
}
.uk-background-muted {
  background-color: #f8f8f8;
}
.uk-background-primary {
  background-color: #7ed321;
}
.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: #7ed321;
  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: #7ed321;
  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: #7ed321;
  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: #7ed321;
}
.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: #7ed321;
}
.uk-section-muted .uk-navbar-container.uk-navbar-sticky {
  background-color: #f8f8f8;
}
.uk-section-primary .uk-navbar-container.uk-navbar-sticky {
  background-color: #7ed321;
}
.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: #7ed321;
  border-color: #7ed321;
}
.category .uk-pagination li:hover,
.ap-pagination li:hover,
.dynamic-pagination li:hover {
  border-color: #7ed321;
}
/* ========================================================================
   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: #64a71a;
}
.ap-list-filter dd a.active {
  background-color: #7ed321;
  color: #fff;
  border-radius: 2px;
}
.ap-filter-dropdown .filter-item-wrap.open,
.ap-filter-dropdown .filter-item.active {
  color: #7ed321;
}
.category li a.active {
  color: #7ed321;
}
.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: #7ed321;
}
.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: #7ed321;
  border: 1px solid rgba(126, 211, 33, 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: #7ed321;
}
form .step .ui-step.active .ui-step-title {
  color: #7ed321;
}
/**************** 自定义版块样式 ********************/
.btn-effect-1 {
  border-color: #7ed321;
  background-color: #7ed321;
  color: #fff;
}
.header-effect-6 [data-item='title']::before {
  background-color: #7ed321;
}
.header-effect-7 [data-item='subTitle'] {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  background-color: #7ed321;
  color: #fff !important;
}
.btn-effect-2 {
  background-color: transparent;
  border: 1px solid #7ed321;
  color: #7ed321;
}
.btn-effect-2:hover {
  background-color: #7ed321;
}
.uk-button.btn-effect-5 {
  background-color: #7ed321;
  box-shadow: 0 0 15px rgba(126, 211, 33, 0.8);
}
.header-effect-3 [data-item='title']::after {
  background: #7ed321;
}
.header-effect-6 [data-item='title']::before {
  background-color: #7ed321;
}
#a4752ac3beaa21f .logged {
  display: none;
}
#a4752ac3beaa21f .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a4752ac3beaa21f .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a4752ac3beaa21f .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a4752ac3beaa21f .quick-menus > li:last-child::after {
  content: '';
}
#a4752ac3beaa21f .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a4752ac3beaa21f .site-header {
  height: 72px;
}
#a4752ac3beaa21f .uk-navbar-item,
#a4752ac3beaa21f .uk-navbar-nav > li > a,
#a4752ac3beaa21f .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a4752ac3beaa21f .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a4752ac3beaa21f .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a4752ac3beaa21f .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a4752ac3beaa21f .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a4752ac3beaa21f .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a4752ac3beaa21f .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a4752ac3beaa21f .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a4752ac3beaa21f .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a4752ac3beaa21f .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a4752ac3beaa21f .site-pc-navbar {
  background: #fff;
}
#a4752ac3beaa21f .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a4752ac3beaa21f .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a4752ac3beaa21f .logo {
  display: inline-block;
}
#a4752ac3beaa21f .menu-list {
  justify-content: flex-start;
}
#a4752ac3beaa21f .submenu-items {
  display: inline-block;
}
#a4752ac3beaa21f .submenu-items .sub-menu-item:last-child svg,
#a4752ac3beaa21f .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
@media (min-width: 1200px) {
  #a78e9a0605af704 .uk-container {
    padding: 0 60px;
  }
}
@media (min-width: 980px) {
  #a78e9a0605af704 .sidebar {
    width: 28.5%;
    padding-left: 32px;
    border-left: 1px solid #ececec;
    margin-left: 32px;
  }
}
#a78e9a0605af704 .sidebar .uk-h3 {
  position: relative;
  padding-bottom: 12px;
  font-size: 18px;
}
#a78e9a0605af704 .sidebar .uk-h3:before {
  content: ' ';
  position: absolute;
  width: 3px;
  height: 100%;
  left: -33px;
  top: 0;
  background-color: #7ed321;
}
#a78e9a0605af704 .sidebar .uk-h3:after {
  content: ' ';
  position: absolute;
  width: 35px;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #666666;
}
#a78e9a0605af704 .uk-list li::before {
  color: #7ed321;
}
#a78e9a0605af704 .uk-list a {
  color: #4c4c4c;
}
#a78e9a0605af704 .uk-list a.active,
#a78e9a0605af704 .uk-list a:hover {
  color: #7ed321;
  text-decoration: none;
}
#a78e9a0605af704 .post-sidebar-image {
  width: 90px;
  height: auto;
  margin-right: 15px;
}
#a78e9a0605af704 .tag {
  display: inline-block;
  margin: 0 8px 10px 0;
  border: 1px solid #ececec;
}
#a78e9a0605af704 .tag a {
  line-height: 32px;
  padding: 0 12px;
  font-size: 14px;
  color: #666666;
}
#a9cc9abbf0a9b62 input,
#a9cc9abbf0a9b62 button {
  border-radius: 20px;
}
#a9cc9abbf0a9b62 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a4752ac3beaa21f .logged {
  display: none;
}
#a4752ac3beaa21f .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a4752ac3beaa21f .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a4752ac3beaa21f .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a4752ac3beaa21f .quick-menus > li:last-child::after {
  content: '';
}
#a4752ac3beaa21f .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a4752ac3beaa21f .site-header {
  height: 72px;
}
#a4752ac3beaa21f .uk-navbar-item,
#a4752ac3beaa21f .uk-navbar-nav > li > a,
#a4752ac3beaa21f .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a4752ac3beaa21f .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a4752ac3beaa21f .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a4752ac3beaa21f .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a4752ac3beaa21f .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a4752ac3beaa21f .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a4752ac3beaa21f .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a4752ac3beaa21f .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a4752ac3beaa21f .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a4752ac3beaa21f .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a4752ac3beaa21f .site-pc-navbar {
  background: #fff;
}
#a4752ac3beaa21f .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a4752ac3beaa21f .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a4752ac3beaa21f .logo {
  display: inline-block;
}
#a4752ac3beaa21f .menu-list {
  justify-content: flex-start;
}
#a4752ac3beaa21f .submenu-items {
  display: inline-block;
}
#a4752ac3beaa21f .submenu-items .sub-menu-item:last-child svg,
#a4752ac3beaa21f .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a59c2a3869a6e0b .phone-info {
  font-size: 28px;
  color: #296fb7;
  font-family: 'helvetica';
  padding-top: 5px;
  font-weight: bold;
  line-height: 1;
}
#a59c2a3869a6e0b .phone-info span {
  font-size: 13px;
  font-weight: 400;
  display: block;
}
#a59c2a3869a6e0b .abstract {
  white-space: pre-wrap;
}
#a59c2a3869a6e0b .product-main {
  margin: 15px 0;
}
#a59c2a3869a6e0b .disable-imglink .rich-img-wrap {
  cursor: default;
}
#a59c2a3869a6e0b .video-box,
#a59c2a3869a6e0b .preview-box {
  margin-bottom: 20px;
  border: 1px solid #eee;
  text-align: center;
}
#a59c2a3869a6e0b .video-box video {
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
#a59c2a3869a6e0b .goods-slider {
  width: 430px;
  max-width: 100%;
}
#a59c2a3869a6e0b .preview-box img {
  width: 100%;
}
#a59c2a3869a6e0b .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;
}
#a59c2a3869a6e0b .zoom-indicator {
  background-color: #fff;
  opacity: .3;
  position: absolute;
  right: 0;
  bottom: 0;
}
#a59c2a3869a6e0b .zoom-indicator i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#a59c2a3869a6e0b .thumb-box {
  width: 100%;
  position: relative;
}
#a59c2a3869a6e0b .thumb-box .btn {
  width: 22px;
  height: 32px;
}
#a59c2a3869a6e0b .thumb-box .btn-next {
  background: url(/resources/sys/img/section/btn_next.png) no-repeat center center;
}
#a59c2a3869a6e0b .thumb-box .btn-prev {
  background: url(/resources/sys/img/section/btn_prev.png) no-repeat center center;
}
#a59c2a3869a6e0b .thumb-list {
  overflow: hidden;
}
#a59c2a3869a6e0b .thumb-list ul {
  width: 100000px;
}
#a59c2a3869a6e0b .thumb-list ul li {
  list-style: none;
  float: left;
  margin: 0 4px;
  cursor: pointer;
  position: relative;
}
#a59c2a3869a6e0b .thumb-list ul li img {
  width: 68px;
  height: 68px;
  border: 2px solid #fff;
}
#a59c2a3869a6e0b .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;
}
#a59c2a3869a6e0b .thumb-list ul li.thumb-video:hover::after {
  opacity: 1;
  background-size: 35px;
}
#a59c2a3869a6e0b .thumb-list ul li.active img {
  border-color: #7ed321;
}
#a59c2a3869a6e0b .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;
}
#a59c2a3869a6e0b .zoom-box img {
  max-width: initial;
}
#a59c2a3869a6e0b .uk-button-primary {
  font-size: 16px;
}
#a59c2a3869a6e0b .questions .question {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}
#a59c2a3869a6e0b .questions .answer {
  font-size: 13px;
  color: #999;
}
#a59c2a3869a6e0b .questions .fa {
  line-height: 24px;
}
@media (max-width: 640px) {
  #a59c2a3869a6e0b .content-wrap {
    padding: 0;
  }
  #a59c2a3869a6e0b .title {
    font-size: 18px;
    font-weight: bolder;
  }
  #a59c2a3869a6e0b .content-wrap .rich-img-wrap {
    margin-left: -15px;
    margin-right: -15px;
  }
}
#a9cc9abbf0a9b62 input,
#a9cc9abbf0a9b62 button {
  border-radius: 20px;
}
#a9cc9abbf0a9b62 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a4752ac3beaa21f .logged {
  display: none;
}
#a4752ac3beaa21f .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a4752ac3beaa21f .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a4752ac3beaa21f .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a4752ac3beaa21f .quick-menus > li:last-child::after {
  content: '';
}
#a4752ac3beaa21f .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a4752ac3beaa21f .site-header {
  height: 72px;
}
#a4752ac3beaa21f .uk-navbar-item,
#a4752ac3beaa21f .uk-navbar-nav > li > a,
#a4752ac3beaa21f .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a4752ac3beaa21f .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a4752ac3beaa21f .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a4752ac3beaa21f .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a4752ac3beaa21f .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a4752ac3beaa21f .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a4752ac3beaa21f .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a4752ac3beaa21f .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a4752ac3beaa21f .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a4752ac3beaa21f .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a4752ac3beaa21f .site-pc-navbar {
  background: #fff;
}
#a4752ac3beaa21f .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a4752ac3beaa21f .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a4752ac3beaa21f .logo {
  display: inline-block;
}
#a4752ac3beaa21f .menu-list {
  justify-content: flex-start;
}
#a4752ac3beaa21f .submenu-items {
  display: inline-block;
}
#a4752ac3beaa21f .submenu-items .sub-menu-item:last-child svg,
#a4752ac3beaa21f .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
@media (min-width: 1200px) {
  #ab089aa116a0b7e .uk-container {
    padding: 0 60px;
  }
}
#ab089aa116a0b7e .date-time {
  padding: 18px 0 20px;
  font-size: 18px;
  color: #3a3c41;
  display: block;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  background: #fff;
  border-top: 2px solid #7ed321;
}
#ab089aa116a0b7e .comments_count {
  display: block;
  padding: 14px 0 18px;
  text-align: center;
  background-color: #e7ecee;
}
#ab089aa116a0b7e .uk-card {
  padding: 10px;
}
#ab089aa116a0b7e .tag-link {
  background-color: #919292;
  color: #fff;
  display: inline-block;
  font-weight: 400;
  font-size: 13px !important;
}
#ab089aa116a0b7e .uk-list a.active,
#ab089aa116a0b7e .uk-list a:hover {
  color: #7ed321;
  text-decoration: none;
}
#a9cc9abbf0a9b62 input,
#a9cc9abbf0a9b62 button {
  border-radius: 20px;
}
#a9cc9abbf0a9b62 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a34e1af670a8595 .logged {
  display: none;
}
#a34e1af670a8595 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a34e1af670a8595 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a34e1af670a8595 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a34e1af670a8595 .quick-menus > li:last-child::after {
  content: '';
}
#a34e1af670a8595 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a34e1af670a8595 .site-header {
  height: 72px;
}
#a34e1af670a8595 .uk-navbar-item,
#a34e1af670a8595 .uk-navbar-nav > li > a,
#a34e1af670a8595 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a34e1af670a8595 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a34e1af670a8595 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a34e1af670a8595 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a34e1af670a8595 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a34e1af670a8595 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a34e1af670a8595 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a34e1af670a8595 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a34e1af670a8595 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a34e1af670a8595 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a34e1af670a8595 .site-pc-navbar {
  background: #fff;
}
#a34e1af670a8595 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a34e1af670a8595 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a34e1af670a8595 .logo {
  display: inline-block;
}
#a34e1af670a8595 .menu-list {
  justify-content: flex-start;
}
#a34e1af670a8595 .submenu-items {
  display: inline-block;
}
#a34e1af670a8595 .submenu-items .sub-menu-item:last-child svg,
#a34e1af670a8595 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
@media (min-width: 1200px) {
  #ae50aaa1e0a8aed .uk-container {
    padding: 0 60px;
  }
}
@media (min-width: 980px) {
  #ae50aaa1e0a8aed .sidebar {
    width: 300px;
    padding: 1;
  }
}
#ae50aaa1e0a8aed .author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin-right: 15px;
}
#ae50aaa1e0a8aed .rich-img-wrap {
  display: block;
}
#ae50aaa1e0a8aed .author-name {
  color: #262626;
  display: block;
  font-size: 20px;
  height: 28px;
  line-height: 28px;
}
#ae50aaa1e0a8aed .author-info span {
  background: #e1f7c9;
  border: 1px solid #7ed321;
  color: #7ed321;
  display: inline-block;
  font-size: 12px;
  height: 18px;
  line-height: 18px;
  margin-top: 4px;
  padding: 0 6px;
  text-align: center;
}
#ae50aaa1e0a8aed .sidebar .border-1 {
  padding: 15px 16px 40px;
  border-radius: 3px;
  overflow: hidden;
  border-top: 3px solid #7ed321;
}
#ae50aaa1e0a8aed .new-list {
  padding: 15px 0 0;
  border-top: 1px solid #ececec;
}
#ae50aaa1e0a8aed .sidebar .uk-h4 {
  color: #262626;
  font-size: 14px;
  margin: 0;
}
#ae50aaa1e0a8aed .sidebar .uk-h4:before {
  background: #7ed321;
  content: "";
  display: inline-block;
  height: 10px;
  margin: 0 6px 0 0;
  width: 2px;
}
#ae50aaa1e0a8aed .author-wrapper {
  position: relative;
}
#ae50aaa1e0a8aed .sidebar h3 {
  font-size: 16px;
  line-height: 25px;
  color: #262626;
}
#ae50aaa1e0a8aed .sidebar h3::after {
  border: .5px solid #ddd;
  content: "";
  display: block;
  height: 0;
  margin-top: 10px;
  width: 20px;
}
#ae50aaa1e0a8aed .sidebar .footer-tip {
  text-align: center;
  line-height: 40px;
  color: #fff;
  height: 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
#ae50aaa1e0a8aed .new-list li {
  padding: 5px 0 15px;
}
#ae50aaa1e0a8aed .sidebar a {
  font-size: 14px;
  color: #262626;
  line-height: 20px;
  padding-bottom: 4px;
  display: block;
}
#ae50aaa1e0a8aed .sidebar a:hover {
  color: #92e13c;
}
#ae50aaa1e0a8aed .new-list li span {
  font-size: 12px;
  color: #a7a7a7;
}
#ae50aaa1e0a8aed .uk-main {
  display: flex;
  gap: 20px;
}
#a9cc9abbf0a9b62 input,
#a9cc9abbf0a9b62 button {
  border-radius: 20px;
}
#a9cc9abbf0a9b62 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a276eae104aaff1 .logged {
  display: none;
}
#a276eae104aaff1 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a276eae104aaff1 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a276eae104aaff1 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a276eae104aaff1 .quick-menus > li:last-child::after {
  content: '';
}
#a276eae104aaff1 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a276eae104aaff1 .site-header {
  height: 72px;
}
#a276eae104aaff1 .uk-navbar-item,
#a276eae104aaff1 .uk-navbar-nav > li > a,
#a276eae104aaff1 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a276eae104aaff1 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a276eae104aaff1 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a276eae104aaff1 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a276eae104aaff1 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a276eae104aaff1 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a276eae104aaff1 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a276eae104aaff1 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a276eae104aaff1 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a276eae104aaff1 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a276eae104aaff1 .site-pc-navbar {
  background: #fff;
}
#a276eae104aaff1 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a276eae104aaff1 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a276eae104aaff1 .logo {
  display: inline-block;
}
#a276eae104aaff1 .menu-list {
  justify-content: flex-start;
}
#a276eae104aaff1 .submenu-items {
  display: inline-block;
}
#a276eae104aaff1 .submenu-items .sub-menu-item:last-child svg,
#a276eae104aaff1 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#ab3dca1a7aaeae2 input,
#ab3dca1a7aaeae2 button {
  border-radius: 20px;
}
#ab3dca1a7aaeae2 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#ad317a9ebfa3912 .logged {
  display: none;
}
#ad317a9ebfa3912 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#ad317a9ebfa3912 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#ad317a9ebfa3912 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#ad317a9ebfa3912 .quick-menus > li:last-child::after {
  content: '';
}
#ad317a9ebfa3912 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#ad317a9ebfa3912 .site-header {
  height: 72px;
}
#ad317a9ebfa3912 .uk-navbar-item,
#ad317a9ebfa3912 .uk-navbar-nav > li > a,
#ad317a9ebfa3912 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#ad317a9ebfa3912 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#ad317a9ebfa3912 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#ad317a9ebfa3912 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#ad317a9ebfa3912 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#ad317a9ebfa3912 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#ad317a9ebfa3912 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#ad317a9ebfa3912 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#ad317a9ebfa3912 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#ad317a9ebfa3912 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#ad317a9ebfa3912 .site-pc-navbar {
  background: #fff;
}
#ad317a9ebfa3912 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#ad317a9ebfa3912 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#ad317a9ebfa3912 .logo {
  display: inline-block;
}
#ad317a9ebfa3912 .menu-list {
  justify-content: flex-start;
}
#ad317a9ebfa3912 .submenu-items {
  display: inline-block;
}
#ad317a9ebfa3912 .submenu-items .sub-menu-item:last-child svg,
#ad317a9ebfa3912 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#ae0a9af7cca695b input,
#ae0a9af7cca695b button {
  border-radius: 20px;
}
#ae0a9af7cca695b .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a8a9da4bf9a9ee6 > .ele-wrap {background-color: rgba(255, 165, 0, 0);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a8a9da4bf9a9ee6  > .ele-wrap:hover {border-bottom-right-radius: 10px;}#ad22ba24bcaf1bb > .ele-wrap {background-color: rgba(255, 165, 0, 0);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ad22ba24bcaf1bb  > .ele-wrap:hover {border-bottom-right-radius: 10px;}#af2f3a9fb3af78c > .ele-wrap {background-color: rgba(255, 165, 0, 0);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#af2f3a9fb3af78c  > .ele-wrap:hover {border-bottom-right-radius: 10px;}#a219baae0bab9fa .img-wrap {
  box-shadow: NaNpx NaNpx 0px 2px undefined;
}
#a5701abd98a3816 {
  overflow: hidden;
  pointer-events: none;
}
#a5701abd98a3816 > .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;
}
#a5701abd98a3816 > .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;
}
#a5701abd98a3816 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a5701abd98a3816 > .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;
}
#a5701abd98a3816 > .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;
}
#a5701abd98a3816 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a5701abd98a3816 > .tab-wrap > div > .tab-nav,
#a5701abd98a3816 > .tab-nav,
#a5701abd98a3816 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a5701abd98a3816 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #f5a623;
}
#a5701abd98a3816 > .tab-wrap > div > .tab-nav-horizontal,
#a5701abd98a3816 > .tab-nav-horizontal,
#a5701abd98a3816 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a5701abd98a3816 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a5701abd98a3816 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a5701abd98a3816 > .tab-nav-horizontal::-webkit-scrollbar,
#a5701abd98a3816 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a5701abd98a3816 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a5701abd98a3816 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a5701abd98a3816 > .tab-nav-horizontal.tagScroll,
#a5701abd98a3816 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a5701abd98a3816 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a5701abd98a3816 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a5701abd98a3816 > .tab-nav-horizontal.tagScroll li a,
#a5701abd98a3816 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a5701abd98a3816 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a5701abd98a3816 > .tab-wrap > div > .tab-nav a,
#a5701abd98a3816 > .tab-nav a,
#a5701abd98a3816 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a5701abd98a3816 > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#a5701abd98a3816 > .tab-wrap > div > .tab-nav li a,
#a5701abd98a3816 > .tab-nav li a,
#a5701abd98a3816 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a5701abd98a3816 > .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 #ffffff;
  height: 50px;
  font-weight: bold;
  font-style: normal;
  font-size: 20px;
  font-family: NotoSansSC-Regular;
  color: #f5a623;
  letter-spacing: 2px;
  background-color: #ffffff;
}
#a5701abd98a3816 > .tab-wrap > div > .tab-nav li a svg,
#a5701abd98a3816 > .tab-nav li a svg,
#a5701abd98a3816 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a5701abd98a3816 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a5701abd98a3816 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a5701abd98a3816 > .tab-nav li a .ap_icon,
#a5701abd98a3816 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a5701abd98a3816 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a5701abd98a3816 > .tab-wrap > div > .tab-nav li a:hover,
#a5701abd98a3816 > .tab-nav li a:hover,
#a5701abd98a3816 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a5701abd98a3816 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 21px;
  font-family: inherit;
  color: #87c0e9;
}
#a5701abd98a3816 > .tab-wrap > div > .tab-nav li.uk-active a,
#a5701abd98a3816 > .tab-nav li.uk-active a,
#a5701abd98a3816 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a5701abd98a3816 > .tab-tabs > .tab-nav li.uk-active a {
  background-color: #f5a623;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a5701abd98a3816 > .tab-wrap > div > .tab-nav li:last-child a,
#a5701abd98a3816 > .tab-nav li:last-child a,
#a5701abd98a3816 > .tab-tabs > .tab-wrap > div > .tab-nav li:last-child a,
#a5701abd98a3816 > .tab-tabs > .tab-nav li:last-child a {
  border-right: undefined;
}
#a5701abd98a3816 .layout-left li,
#a5701abd98a3816 .layout-center li,
#a5701abd98a3816 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a5701abd98a3816 .layout-left li a,
#a5701abd98a3816 .layout-center li a,
#a5701abd98a3816 .layout-right li a {
  height: 100%;
}
#a5701abd98a3816 > .tab-tabs .layout-left {
  text-align: left;
}
#a5701abd98a3816 > .tab-tabs .layout-center {
  text-align: center;
}
#a5701abd98a3816 > .tab-tabs .layout-right {
  text-align: right;
}
#a5701abd98a3816 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a5701abd98a3816 .tab-content-wrap {
  background-color: transparent;
}
#a5701abd98a3816 .tab-contents,
#a5701abd98a3816 .tab-contents-wrap {
  pointer-events: none;
}
#a5701abd98a3816 .tab-content,
#a5701abd98a3816 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a5701abd98a3816 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a5701abd98a3816 .tab-wrap .tab-contents {
  height: 100%;
}
#a5701abd98a3816 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a5701abd98a3816 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a5701abd98a3816 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ac21fac0d4a0791 {
  overflow: hidden;
}
#ac21fac0d4a0791 .img-wrap {
  transition: all 0.3s ease-in;
}
#ac21fac0d4a0791 .img-wrap:hover {
  transform: scale(1.1);
}
#a46bca89d9ac009 {
  overflow: hidden;
}
#a46bca89d9ac009 .img-wrap {
  transition: all 0.3s ease-in;
}
#a46bca89d9ac009 .img-wrap:hover {
  transform: scale(1.1);
}
#a834ba3144a25f7 {
  overflow: hidden;
}
#a834ba3144a25f7 .img-wrap {
  transition: all 0.3s ease-in;
}
#a834ba3144a25f7 .img-wrap:hover {
  transform: scale(1.1);
}
#a2156ad767a8095 .logged {
  display: none;
}
#a2156ad767a8095 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a2156ad767a8095 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a2156ad767a8095 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a2156ad767a8095 .quick-menus > li:last-child::after {
  content: '';
}
#a2156ad767a8095 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a2156ad767a8095 .site-header {
  height: 72px;
}
#a2156ad767a8095 .uk-navbar-item,
#a2156ad767a8095 .uk-navbar-nav > li > a,
#a2156ad767a8095 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a2156ad767a8095 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a2156ad767a8095 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a2156ad767a8095 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a2156ad767a8095 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a2156ad767a8095 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a2156ad767a8095 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a2156ad767a8095 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a2156ad767a8095 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a2156ad767a8095 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a2156ad767a8095 .site-pc-navbar {
  background: #fff;
}
#a2156ad767a8095 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a2156ad767a8095 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a2156ad767a8095 .logo {
  display: inline-block;
}
#a2156ad767a8095 .menu-list {
  justify-content: flex-start;
}
#a2156ad767a8095 .submenu-items {
  display: inline-block;
}
#a2156ad767a8095 .submenu-items .sub-menu-item:last-child svg,
#a2156ad767a8095 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a14cbab477a672a input,
#a14cbab477a672a button {
  border-radius: 20px;
}
#a14cbab477a672a .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a785ca7b5da7203 > .ele-wrap {background-color: rgba(255, 165, 0, 0);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a785ca7b5da7203  > .ele-wrap:hover {border-bottom-right-radius: 10px;}#aeba7ac8dfa4c94 > .ele-wrap {background-color: rgba(255, 165, 0, 0);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aeba7ac8dfa4c94  > .ele-wrap:hover {border-bottom-right-radius: 10px;}#ad1c4a1abaaf484 > .ele-wrap {background-color: rgba(255, 165, 0, 0);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ad1c4a1abaaf484  > .ele-wrap:hover {border-bottom-right-radius: 10px;}#a2c46a94eea9287 .img-wrap {
  box-shadow: NaNpx NaNpx 0px 2px undefined;
}
#a6b41a9107a5916 {
  overflow: hidden;
  pointer-events: none;
}
#a6b41a9107a5916 > .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;
}
#a6b41a9107a5916 > .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;
}
#a6b41a9107a5916 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a6b41a9107a5916 > .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;
}
#a6b41a9107a5916 > .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;
}
#a6b41a9107a5916 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a6b41a9107a5916 > .tab-wrap > div > .tab-nav,
#a6b41a9107a5916 > .tab-nav,
#a6b41a9107a5916 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a6b41a9107a5916 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #f5a623;
}
#a6b41a9107a5916 > .tab-wrap > div > .tab-nav-horizontal,
#a6b41a9107a5916 > .tab-nav-horizontal,
#a6b41a9107a5916 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a6b41a9107a5916 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a6b41a9107a5916 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a6b41a9107a5916 > .tab-nav-horizontal::-webkit-scrollbar,
#a6b41a9107a5916 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a6b41a9107a5916 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a6b41a9107a5916 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a6b41a9107a5916 > .tab-nav-horizontal.tagScroll,
#a6b41a9107a5916 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a6b41a9107a5916 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a6b41a9107a5916 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a6b41a9107a5916 > .tab-nav-horizontal.tagScroll li a,
#a6b41a9107a5916 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a6b41a9107a5916 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a6b41a9107a5916 > .tab-wrap > div > .tab-nav a,
#a6b41a9107a5916 > .tab-nav a,
#a6b41a9107a5916 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a6b41a9107a5916 > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#a6b41a9107a5916 > .tab-wrap > div > .tab-nav li a,
#a6b41a9107a5916 > .tab-nav li a,
#a6b41a9107a5916 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a6b41a9107a5916 > .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 #ffffff;
  height: 50px;
  font-weight: bold;
  font-style: normal;
  font-size: 20px;
  font-family: NotoSansSC-Regular;
  color: #f5a623;
  letter-spacing: 2px;
  background-color: #ffffff;
}
#a6b41a9107a5916 > .tab-wrap > div > .tab-nav li a svg,
#a6b41a9107a5916 > .tab-nav li a svg,
#a6b41a9107a5916 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a6b41a9107a5916 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a6b41a9107a5916 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a6b41a9107a5916 > .tab-nav li a .ap_icon,
#a6b41a9107a5916 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a6b41a9107a5916 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a6b41a9107a5916 > .tab-wrap > div > .tab-nav li a:hover,
#a6b41a9107a5916 > .tab-nav li a:hover,
#a6b41a9107a5916 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a6b41a9107a5916 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 21px;
  font-family: inherit;
  color: #87c0e9;
}
#a6b41a9107a5916 > .tab-wrap > div > .tab-nav li.uk-active a,
#a6b41a9107a5916 > .tab-nav li.uk-active a,
#a6b41a9107a5916 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a6b41a9107a5916 > .tab-tabs > .tab-nav li.uk-active a {
  background-color: #f5a623;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6b41a9107a5916 > .tab-wrap > div > .tab-nav li:last-child a,
#a6b41a9107a5916 > .tab-nav li:last-child a,
#a6b41a9107a5916 > .tab-tabs > .tab-wrap > div > .tab-nav li:last-child a,
#a6b41a9107a5916 > .tab-tabs > .tab-nav li:last-child a {
  border-right: undefined;
}
#a6b41a9107a5916 .layout-left li,
#a6b41a9107a5916 .layout-center li,
#a6b41a9107a5916 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a6b41a9107a5916 .layout-left li a,
#a6b41a9107a5916 .layout-center li a,
#a6b41a9107a5916 .layout-right li a {
  height: 100%;
}
#a6b41a9107a5916 > .tab-tabs .layout-left {
  text-align: left;
}
#a6b41a9107a5916 > .tab-tabs .layout-center {
  text-align: center;
}
#a6b41a9107a5916 > .tab-tabs .layout-right {
  text-align: right;
}
#a6b41a9107a5916 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a6b41a9107a5916 .tab-content-wrap {
  background-color: transparent;
}
#a6b41a9107a5916 .tab-contents,
#a6b41a9107a5916 .tab-contents-wrap {
  pointer-events: none;
}
#a6b41a9107a5916 .tab-content,
#a6b41a9107a5916 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a6b41a9107a5916 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a6b41a9107a5916 .tab-wrap .tab-contents {
  height: 100%;
}
#a6b41a9107a5916 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a6b41a9107a5916 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a6b41a9107a5916 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a743aa3588a0b9c {
  overflow: hidden;
}
#a743aa3588a0b9c .img-wrap {
  transition: all 0.3s ease-in;
}
#a743aa3588a0b9c .img-wrap:hover {
  transform: scale(1.1);
}
#a3247ae518ab234 {
  overflow: hidden;
}
#a3247ae518ab234 .img-wrap {
  transition: all 0.3s ease-in;
}
#a3247ae518ab234 .img-wrap:hover {
  transform: scale(1.1);
}
#abce4a6b6aa35e1 {
  overflow: hidden;
}
#abce4a6b6aa35e1 .img-wrap {
  transition: all 0.3s ease-in;
}
#abce4a6b6aa35e1 .img-wrap:hover {
  transform: scale(1.1);
}
#aba5da48e5a9f69 .logged {
  display: none;
}
#aba5da48e5a9f69 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#aba5da48e5a9f69 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#aba5da48e5a9f69 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#aba5da48e5a9f69 .quick-menus > li:last-child::after {
  content: '';
}
#aba5da48e5a9f69 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#aba5da48e5a9f69 .site-header {
  height: 72px;
}
#aba5da48e5a9f69 .uk-navbar-item,
#aba5da48e5a9f69 .uk-navbar-nav > li > a,
#aba5da48e5a9f69 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#aba5da48e5a9f69 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#aba5da48e5a9f69 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#aba5da48e5a9f69 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#aba5da48e5a9f69 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#aba5da48e5a9f69 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#aba5da48e5a9f69 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#aba5da48e5a9f69 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#aba5da48e5a9f69 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#aba5da48e5a9f69 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#aba5da48e5a9f69 .site-pc-navbar {
  background: #fff;
}
#aba5da48e5a9f69 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#aba5da48e5a9f69 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#aba5da48e5a9f69 .logo {
  display: inline-block;
}
#aba5da48e5a9f69 .menu-list {
  justify-content: flex-start;
}
#aba5da48e5a9f69 .submenu-items {
  display: inline-block;
}
#aba5da48e5a9f69 .submenu-items .sub-menu-item:last-child svg,
#aba5da48e5a9f69 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#ab3dca1a7aaeae2 input,
#ab3dca1a7aaeae2 button {
  border-radius: 20px;
}
#ab3dca1a7aaeae2 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#ad207acd28a5471 > .ele-wrap {background-color: rgba(255, 165, 0, 0);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ad207acd28a5471  > .ele-wrap:hover {border-bottom-right-radius: 10px;}#acefba8e28ac77b > .ele-wrap {background-color: rgba(255, 165, 0, 0);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#acefba8e28ac77b  > .ele-wrap:hover {border-bottom-right-radius: 10px;}#a9de7ae15ea621b > .ele-wrap {background-color: rgba(255, 165, 0, 0);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a9de7ae15ea621b  > .ele-wrap:hover {border-bottom-right-radius: 10px;}#a28afadafeac3f8 .img-wrap {
  box-shadow: NaNpx NaNpx 0px 2px undefined;
}
#a2bc2a2d86a3cad {
  overflow: hidden;
  pointer-events: none;
}
#a2bc2a2d86a3cad > .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;
}
#a2bc2a2d86a3cad > .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;
}
#a2bc2a2d86a3cad > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a2bc2a2d86a3cad > .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;
}
#a2bc2a2d86a3cad > .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;
}
#a2bc2a2d86a3cad > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a2bc2a2d86a3cad > .tab-wrap > div > .tab-nav,
#a2bc2a2d86a3cad > .tab-nav,
#a2bc2a2d86a3cad > .tab-tabs > .tab-wrap > div > .tab-nav,
#a2bc2a2d86a3cad > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #f5a623;
}
#a2bc2a2d86a3cad > .tab-wrap > div > .tab-nav-horizontal,
#a2bc2a2d86a3cad > .tab-nav-horizontal,
#a2bc2a2d86a3cad > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a2bc2a2d86a3cad > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a2bc2a2d86a3cad > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a2bc2a2d86a3cad > .tab-nav-horizontal::-webkit-scrollbar,
#a2bc2a2d86a3cad > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a2bc2a2d86a3cad > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a2bc2a2d86a3cad > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a2bc2a2d86a3cad > .tab-nav-horizontal.tagScroll,
#a2bc2a2d86a3cad > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a2bc2a2d86a3cad > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a2bc2a2d86a3cad > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a2bc2a2d86a3cad > .tab-nav-horizontal.tagScroll li a,
#a2bc2a2d86a3cad > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a2bc2a2d86a3cad > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a2bc2a2d86a3cad > .tab-wrap > div > .tab-nav a,
#a2bc2a2d86a3cad > .tab-nav a,
#a2bc2a2d86a3cad > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a2bc2a2d86a3cad > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#a2bc2a2d86a3cad > .tab-wrap > div > .tab-nav li a,
#a2bc2a2d86a3cad > .tab-nav li a,
#a2bc2a2d86a3cad > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a2bc2a2d86a3cad > .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 #ffffff;
  height: 50px;
  font-weight: bold;
  font-style: normal;
  font-size: 20px;
  font-family: NotoSansSC-Regular;
  color: #f5a623;
  letter-spacing: 2px;
  background-color: #ffffff;
}
#a2bc2a2d86a3cad > .tab-wrap > div > .tab-nav li a svg,
#a2bc2a2d86a3cad > .tab-nav li a svg,
#a2bc2a2d86a3cad > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a2bc2a2d86a3cad > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a2bc2a2d86a3cad > .tab-wrap > div > .tab-nav li a .ap_icon,
#a2bc2a2d86a3cad > .tab-nav li a .ap_icon,
#a2bc2a2d86a3cad > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a2bc2a2d86a3cad > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a2bc2a2d86a3cad > .tab-wrap > div > .tab-nav li a:hover,
#a2bc2a2d86a3cad > .tab-nav li a:hover,
#a2bc2a2d86a3cad > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a2bc2a2d86a3cad > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 21px;
  font-family: inherit;
  color: #87c0e9;
}
#a2bc2a2d86a3cad > .tab-wrap > div > .tab-nav li.uk-active a,
#a2bc2a2d86a3cad > .tab-nav li.uk-active a,
#a2bc2a2d86a3cad > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a2bc2a2d86a3cad > .tab-tabs > .tab-nav li.uk-active a {
  background-color: #f5a623;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2bc2a2d86a3cad > .tab-wrap > div > .tab-nav li:last-child a,
#a2bc2a2d86a3cad > .tab-nav li:last-child a,
#a2bc2a2d86a3cad > .tab-tabs > .tab-wrap > div > .tab-nav li:last-child a,
#a2bc2a2d86a3cad > .tab-tabs > .tab-nav li:last-child a {
  border-right: undefined;
}
#a2bc2a2d86a3cad .layout-left li,
#a2bc2a2d86a3cad .layout-center li,
#a2bc2a2d86a3cad .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a2bc2a2d86a3cad .layout-left li a,
#a2bc2a2d86a3cad .layout-center li a,
#a2bc2a2d86a3cad .layout-right li a {
  height: 100%;
}
#a2bc2a2d86a3cad > .tab-tabs .layout-left {
  text-align: left;
}
#a2bc2a2d86a3cad > .tab-tabs .layout-center {
  text-align: center;
}
#a2bc2a2d86a3cad > .tab-tabs .layout-right {
  text-align: right;
}
#a2bc2a2d86a3cad .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a2bc2a2d86a3cad .tab-content-wrap {
  background-color: transparent;
}
#a2bc2a2d86a3cad .tab-contents,
#a2bc2a2d86a3cad .tab-contents-wrap {
  pointer-events: none;
}
#a2bc2a2d86a3cad .tab-content,
#a2bc2a2d86a3cad .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a2bc2a2d86a3cad .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a2bc2a2d86a3cad .tab-wrap .tab-contents {
  height: 100%;
}
#a2bc2a2d86a3cad .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a2bc2a2d86a3cad .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a2bc2a2d86a3cad .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a9c2da736aa8985 {
  overflow: hidden;
}
#a9c2da736aa8985 .img-wrap {
  transition: all 0.3s ease-in;
}
#a9c2da736aa8985 .img-wrap:hover {
  transform: scale(1.1);
}
#ac890a3fb9a4962 {
  overflow: hidden;
}
#ac890a3fb9a4962 .img-wrap {
  transition: all 0.3s ease-in;
}
#ac890a3fb9a4962 .img-wrap:hover {
  transform: scale(1.1);
}
#a5f47a271fa9fd4 {
  overflow: hidden;
}
#a5f47a271fa9fd4 .img-wrap {
  transition: all 0.3s ease-in;
}
#a5f47a271fa9fd4 .img-wrap:hover {
  transform: scale(1.1);
}
#aa37ba9e88abd51 .logged {
  display: none;
}
#aa37ba9e88abd51 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#aa37ba9e88abd51 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#aa37ba9e88abd51 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#aa37ba9e88abd51 .quick-menus > li:last-child::after {
  content: '';
}
#aa37ba9e88abd51 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#aa37ba9e88abd51 .site-header {
  height: 72px;
}
#aa37ba9e88abd51 .uk-navbar-item,
#aa37ba9e88abd51 .uk-navbar-nav > li > a,
#aa37ba9e88abd51 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#aa37ba9e88abd51 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#aa37ba9e88abd51 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#aa37ba9e88abd51 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#aa37ba9e88abd51 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#aa37ba9e88abd51 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#aa37ba9e88abd51 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#aa37ba9e88abd51 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#aa37ba9e88abd51 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#aa37ba9e88abd51 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#aa37ba9e88abd51 .site-pc-navbar {
  background: #fff;
}
#aa37ba9e88abd51 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#aa37ba9e88abd51 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#aa37ba9e88abd51 .logo {
  display: inline-block;
}
#aa37ba9e88abd51 .menu-list {
  justify-content: flex-start;
}
#aa37ba9e88abd51 .submenu-items {
  display: inline-block;
}
#aa37ba9e88abd51 .submenu-items .sub-menu-item:last-child svg,
#aa37ba9e88abd51 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a2ecaa0279ab314 input,
#a2ecaa0279ab314 button {
  border-radius: 20px;
}
#a2ecaa0279ab314 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a7aeda6a54a200f .form-agree {
  display: flex;
  align-items: center;
}
#a7aeda6a54a200f form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a7aeda6a54a200f .form-item .uk-input,
#a7aeda6a54a200f .form-item .uk-select,
#a7aeda6a54a200f .form-item .uk-textarea {
  width: autopx;
}
#a7aeda6a54a200f .form-item .auto-height {
  height: auto;
}
#aa8b1a674ca9315 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-shadow: 0px 1px 10px 0px rgba(214, 174, 174, 0.27);}#aa8b1a674ca9315  > .ele-wrap:hover {border-bottom-color: #ff6c6c;border-bottom-width: 3px;border-bottom-style: solid;}#a36bea2a99a41ed .img-wrap {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
#ab59aa8394a216a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-shadow: 0px 1px 10px 0px rgba(214, 174, 174, 0.27);}#ab59aa8394a216a  > .ele-wrap:hover {border-bottom-color: #ff6c6c;border-bottom-width: 3px;border-bottom-style: solid;}#a5261ab35da4114 .img-wrap {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
#aba5dae4eba2509 .logged {
  display: none;
}
#aba5dae4eba2509 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#aba5dae4eba2509 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#aba5dae4eba2509 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#aba5dae4eba2509 .quick-menus > li:last-child::after {
  content: '';
}
#aba5dae4eba2509 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#aba5dae4eba2509 .site-header {
  height: 72px;
}
#aba5dae4eba2509 .uk-navbar-item,
#aba5dae4eba2509 .uk-navbar-nav > li > a,
#aba5dae4eba2509 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#aba5dae4eba2509 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#aba5dae4eba2509 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#aba5dae4eba2509 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#aba5dae4eba2509 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#aba5dae4eba2509 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#aba5dae4eba2509 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#aba5dae4eba2509 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#aba5dae4eba2509 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#aba5dae4eba2509 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#aba5dae4eba2509 .site-pc-navbar {
  background: #fff;
}
#aba5dae4eba2509 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#aba5dae4eba2509 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#aba5dae4eba2509 .logo {
  display: inline-block;
}
#aba5dae4eba2509 .menu-list {
  justify-content: flex-start;
}
#aba5dae4eba2509 .submenu-items {
  display: inline-block;
}
#aba5dae4eba2509 .submenu-items .sub-menu-item:last-child svg,
#aba5dae4eba2509 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a4362a0791a5635 input,
#a4362a0791a5635 button {
  border-radius: 20px;
}
#a4362a0791a5635 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#aa2a6a503eafd14 .form-agree {
  display: flex;
  align-items: center;
}
#aa2a6a503eafd14 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#aa2a6a503eafd14 .form-item .uk-input,
#aa2a6a503eafd14 .form-item .uk-select,
#aa2a6a503eafd14 .form-item .uk-textarea {
  width: autopx;
}
#aa2a6a503eafd14 .form-item .auto-height {
  height: auto;
}
#add11ace64a0353 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-shadow: 0px 1px 10px 0px rgba(214, 174, 174, 0.27);}#add11ace64a0353  > .ele-wrap:hover {border-bottom-color: #ff6c6c;border-bottom-width: 3px;border-bottom-style: solid;}#a7061a574fa7528 .img-wrap {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
#a8c0fac2b4af511 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-shadow: 0px 1px 10px 0px rgba(214, 174, 174, 0.27);}#a8c0fac2b4af511  > .ele-wrap:hover {border-bottom-color: #ff6c6c;border-bottom-width: 3px;border-bottom-style: solid;}#a0996a63e9a2507 .img-wrap {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
#a276eae104aaff1 .logged {
  display: none;
}
#a276eae104aaff1 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a276eae104aaff1 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a276eae104aaff1 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a276eae104aaff1 .quick-menus > li:last-child::after {
  content: '';
}
#a276eae104aaff1 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a276eae104aaff1 .site-header {
  height: 72px;
}
#a276eae104aaff1 .uk-navbar-item,
#a276eae104aaff1 .uk-navbar-nav > li > a,
#a276eae104aaff1 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a276eae104aaff1 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a276eae104aaff1 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a276eae104aaff1 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a276eae104aaff1 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a276eae104aaff1 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a276eae104aaff1 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a276eae104aaff1 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a276eae104aaff1 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a276eae104aaff1 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a276eae104aaff1 .site-pc-navbar {
  background: #fff;
}
#a276eae104aaff1 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a276eae104aaff1 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a276eae104aaff1 .logo {
  display: inline-block;
}
#a276eae104aaff1 .menu-list {
  justify-content: flex-start;
}
#a276eae104aaff1 .submenu-items {
  display: inline-block;
}
#a276eae104aaff1 .submenu-items .sub-menu-item:last-child svg,
#a276eae104aaff1 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#ab3dca1a7aaeae2 input,
#ab3dca1a7aaeae2 button {
  border-radius: 20px;
}
#ab3dca1a7aaeae2 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a68a0a801fa0a14 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a56c3a1e26a9904 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a976fa91a4a6558 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad1dfadcb3a2da6 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af7dba4f91a3364 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab889a1f40a32a6 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4b9eafabea143c > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad14eab3e9a41e4 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a395ba6bf1aa556 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acfa8a927ca7da4 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac4e8acebbaea3d > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0112afe59af2d7 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae94ca4748ad97a > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aaf03a495aa6429 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a07c8a0ea3a9ffa > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0fabae678a00b1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2537aa130ad468 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a65f6a4ba2a7354 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a49a3ac94aa9331 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2c4fa398dadba6 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8c35a6041a8031 .logged {
  display: none;
}
#a8c35a6041a8031 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a8c35a6041a8031 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a8c35a6041a8031 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a8c35a6041a8031 .quick-menus > li:last-child::after {
  content: '';
}
#a8c35a6041a8031 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a8c35a6041a8031 .site-header {
  height: 72px;
}
#a8c35a6041a8031 .uk-navbar-item,
#a8c35a6041a8031 .uk-navbar-nav > li > a,
#a8c35a6041a8031 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a8c35a6041a8031 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a8c35a6041a8031 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a8c35a6041a8031 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a8c35a6041a8031 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a8c35a6041a8031 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a8c35a6041a8031 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a8c35a6041a8031 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a8c35a6041a8031 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a8c35a6041a8031 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a8c35a6041a8031 .site-pc-navbar {
  background: #fff;
}
#a8c35a6041a8031 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a8c35a6041a8031 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a8c35a6041a8031 .logo {
  display: inline-block;
}
#a8c35a6041a8031 .menu-list {
  justify-content: flex-start;
}
#a8c35a6041a8031 .submenu-items {
  display: inline-block;
}
#a8c35a6041a8031 .submenu-items .sub-menu-item:last-child svg,
#a8c35a6041a8031 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#aae4da3da7a6abe input,
#aae4da3da7a6abe button {
  border-radius: 20px;
}
#aae4da3da7a6abe .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a9bfbaf377adbde [data-item="title"] {left: 392px;top: 59px; position: relative;}#ae3d4a26cca4fc9 > .ele-wrap {background-color: rgba(243, 154, 24, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-top-width: 0px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;box-shadow: 0px 0px 0px 0px undefined;}#ae3d4a26cca4fc9  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px undefined;}#a5544a5d51a83ec .logged {
  display: none;
}
#a5544a5d51a83ec .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a5544a5d51a83ec .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a5544a5d51a83ec .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a5544a5d51a83ec .quick-menus > li:last-child::after {
  content: '';
}
#a5544a5d51a83ec .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a5544a5d51a83ec .site-header {
  height: 72px;
}
#a5544a5d51a83ec .uk-navbar-item,
#a5544a5d51a83ec .uk-navbar-nav > li > a,
#a5544a5d51a83ec .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a5544a5d51a83ec .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a5544a5d51a83ec .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a5544a5d51a83ec .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a5544a5d51a83ec .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a5544a5d51a83ec .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a5544a5d51a83ec .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a5544a5d51a83ec .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a5544a5d51a83ec .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a5544a5d51a83ec .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a5544a5d51a83ec .site-pc-navbar {
  background: #fff;
}
#a5544a5d51a83ec .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a5544a5d51a83ec .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a5544a5d51a83ec .logo {
  display: inline-block;
}
#a5544a5d51a83ec .menu-list {
  justify-content: flex-start;
}
#a5544a5d51a83ec .submenu-items {
  display: inline-block;
}
#a5544a5d51a83ec .submenu-items .sub-menu-item:last-child svg,
#a5544a5d51a83ec .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#af633a3fcfafcab .filter-nav li {
  padding: 2px 15px;
  border-radius: 2px;
  font-size: 13px;
  margin: 0 10px 4px 0;
  border: 1px solid #7ed321;
  color: #7ed321;
  display: inline-block;
  cursor: pointer;
}
#af633a3fcfafcab .filter-nav li.uk-active {
  color: #fff;
  background-color: #7ed321;
}
#af633a3fcfafcab .text-style figure {
  background: transparent;
}
#af633a3fcfafcab .text-style:hover figure {
  background: #7ed321;
}
#af633a3fcfafcab .text-style.text-style-7 img {
  opacity: .9;
}
#a0935ac36eaa86a .filter-nav li {
  padding: 2px 15px;
  border-radius: 2px;
  font-size: 13px;
  margin: 0 10px 4px 0;
  border: 1px solid #7ed321;
  color: #7ed321;
  display: inline-block;
  cursor: pointer;
}
#a0935ac36eaa86a .filter-nav li.uk-active {
  color: #fff;
  background-color: #7ed321;
}
#a0935ac36eaa86a .text-style figure {
  background: transparent;
}
#a0935ac36eaa86a .text-style:hover figure {
  background: #7ed321;
}
#a0935ac36eaa86a .text-style.text-style-7 img {
  opacity: .9;
}
#acf60a8e66a756a .filter-nav li {
  padding: 2px 15px;
  border-radius: 2px;
  font-size: 13px;
  margin: 0 10px 4px 0;
  border: 1px solid #7ed321;
  color: #7ed321;
  display: inline-block;
  cursor: pointer;
}
#acf60a8e66a756a .filter-nav li.uk-active {
  color: #fff;
  background-color: #7ed321;
}
#acf60a8e66a756a .text-style figure {
  background: transparent;
}
#acf60a8e66a756a .text-style:hover figure {
  background: #7ed321;
}
#acf60a8e66a756a .text-style.text-style-7 img {
  opacity: .9;
}
#ad3aaa8ff0a0690 .filter-nav li {
  padding: 2px 15px;
  border-radius: 2px;
  font-size: 13px;
  margin: 0 10px 4px 0;
  border: 1px solid #7ed321;
  color: #7ed321;
  display: inline-block;
  cursor: pointer;
}
#ad3aaa8ff0a0690 .filter-nav li.uk-active {
  color: #fff;
  background-color: #7ed321;
}
#ad3aaa8ff0a0690 .text-style figure {
  background: transparent;
}
#ad3aaa8ff0a0690 .text-style:hover figure {
  background: #7ed321;
}
#ad3aaa8ff0a0690 .text-style.text-style-7 img {
  opacity: .9;
}
#a4710ac8a7a9942 .filter-nav li {
  padding: 2px 15px;
  border-radius: 2px;
  font-size: 13px;
  margin: 0 10px 4px 0;
  border: 1px solid #7ed321;
  color: #7ed321;
  display: inline-block;
  cursor: pointer;
}
#a4710ac8a7a9942 .filter-nav li.uk-active {
  color: #fff;
  background-color: #7ed321;
}
#a4710ac8a7a9942 .text-style figure {
  background: transparent;
}
#a4710ac8a7a9942 .text-style:hover figure {
  background: #7ed321;
}
#a4710ac8a7a9942 .text-style.text-style-7 img {
  opacity: .9;
}
#ada0facdb2a0897 .filter-nav li {
  padding: 2px 15px;
  border-radius: 2px;
  font-size: 13px;
  margin: 0 10px 4px 0;
  border: 1px solid #7ed321;
  color: #7ed321;
  display: inline-block;
  cursor: pointer;
}
#ada0facdb2a0897 .filter-nav li.uk-active {
  color: #fff;
  background-color: #7ed321;
}
#ada0facdb2a0897 .text-style figure {
  background: transparent;
}
#ada0facdb2a0897 .text-style:hover figure {
  background: #7ed321;
}
#ada0facdb2a0897 .text-style.text-style-7 img {
  opacity: .9;
}
#a26b4a6dcfa995f input,
#a26b4a6dcfa995f button {
  border-radius: 20px;
}
#a26b4a6dcfa995f .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a6a34abf10ae2e3 .uk-container {max-width: 1500px;}#a4e13a7f2daf393 .uk-container {max-width: 1500px;}#a6d3dafc3ea4968 > .ele-wrap {border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-top-width: 0px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;box-shadow: 0px 0px 0px 0px undefined;}#a6d3dafc3ea4968  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px undefined;}#ab3faa2b92ae044 > .ele-wrap {border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-top-width: 0px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;box-shadow: 0px 0px 0px 0px undefined;}#ab3faa2b92ae044  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px undefined;}#af72ba3160a5b40 > .ele-wrap {border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-top-width: 0px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;box-shadow: 0px 0px 0px 0px undefined;}#af72ba3160a5b40  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px undefined;}#adb35a919fa17c9 > .ele-wrap {border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-top-width: 0px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;box-shadow: 0px 0px 0px 0px undefined;}#adb35a919fa17c9  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px undefined;}#af633a3fcfafcab .uk-grid {margin-left: -20px;}@media (min-width: 1200px) {
                    #af633a3fcfafcab .uk-grid { margin-left: -20px;}
                }@media (max-width: 640) {
                    #af633a3fcfafcab .uk-grid { margin-left: -20px;}
                }#af633a3fcfafcab .uk-grid>* {padding-left: 20px;}@media (min-width: 1200px) {
                    #af633a3fcfafcab .uk-grid>* { padding-left: 20px;}
                }@media (max-width: 640) {#af633a3fcfafcab .uk-grid>* {
                    padding-left: 20px;}
                }#af633a3fcfafcab .uk-grid>.uk-grid-margin {margin-top: 30px;}@media (min-width: 1200px) {
                    #af633a3fcfafcab .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }@media (max-width: 640) {
                    #af633a3fcfafcab .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }#a0935ac36eaa86a .uk-grid {margin-left: -20px;}@media (min-width: 1200px) {
                    #a0935ac36eaa86a .uk-grid { margin-left: -20px;}
                }@media (max-width: 640) {
                    #a0935ac36eaa86a .uk-grid { margin-left: -20px;}
                }#a0935ac36eaa86a .uk-grid>* {padding-left: 20px;}@media (min-width: 1200px) {
                    #a0935ac36eaa86a .uk-grid>* { padding-left: 20px;}
                }@media (max-width: 640) {#a0935ac36eaa86a .uk-grid>* {
                    padding-left: 20px;}
                }#a0935ac36eaa86a .uk-grid>.uk-grid-margin {margin-top: 30px;}@media (min-width: 1200px) {
                    #a0935ac36eaa86a .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }@media (max-width: 640) {
                    #a0935ac36eaa86a .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }#acf60a8e66a756a .uk-grid {margin-left: -20px;}@media (min-width: 1200px) {
                    #acf60a8e66a756a .uk-grid { margin-left: -20px;}
                }@media (max-width: 640) {
                    #acf60a8e66a756a .uk-grid { margin-left: -20px;}
                }#acf60a8e66a756a .uk-grid>* {padding-left: 20px;}@media (min-width: 1200px) {
                    #acf60a8e66a756a .uk-grid>* { padding-left: 20px;}
                }@media (max-width: 640) {#acf60a8e66a756a .uk-grid>* {
                    padding-left: 20px;}
                }#acf60a8e66a756a .uk-grid>.uk-grid-margin {margin-top: 30px;}@media (min-width: 1200px) {
                    #acf60a8e66a756a .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }@media (max-width: 640) {
                    #acf60a8e66a756a .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }#ad3aaa8ff0a0690 .uk-grid {margin-left: -20px;}@media (min-width: 1200px) {
                    #ad3aaa8ff0a0690 .uk-grid { margin-left: -20px;}
                }@media (max-width: 640) {
                    #ad3aaa8ff0a0690 .uk-grid { margin-left: -20px;}
                }#ad3aaa8ff0a0690 .uk-grid>* {padding-left: 20px;}@media (min-width: 1200px) {
                    #ad3aaa8ff0a0690 .uk-grid>* { padding-left: 20px;}
                }@media (max-width: 640) {#ad3aaa8ff0a0690 .uk-grid>* {
                    padding-left: 20px;}
                }#ad3aaa8ff0a0690 .uk-grid>.uk-grid-margin {margin-top: 30px;}@media (min-width: 1200px) {
                    #ad3aaa8ff0a0690 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }@media (max-width: 640) {
                    #ad3aaa8ff0a0690 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }#a4710ac8a7a9942 .uk-grid {margin-left: -20px;}@media (min-width: 1200px) {
                    #a4710ac8a7a9942 .uk-grid { margin-left: -20px;}
                }@media (max-width: 640) {
                    #a4710ac8a7a9942 .uk-grid { margin-left: -20px;}
                }#a4710ac8a7a9942 .uk-grid>* {padding-left: 20px;}@media (min-width: 1200px) {
                    #a4710ac8a7a9942 .uk-grid>* { padding-left: 20px;}
                }@media (max-width: 640) {#a4710ac8a7a9942 .uk-grid>* {
                    padding-left: 20px;}
                }#a4710ac8a7a9942 .uk-grid>.uk-grid-margin {margin-top: 30px;}@media (min-width: 1200px) {
                    #a4710ac8a7a9942 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }@media (max-width: 640) {
                    #a4710ac8a7a9942 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }#ada0facdb2a0897 .uk-grid {margin-left: -20px;}@media (min-width: 1200px) {
                    #ada0facdb2a0897 .uk-grid { margin-left: -20px;}
                }@media (max-width: 640) {
                    #ada0facdb2a0897 .uk-grid { margin-left: -20px;}
                }#ada0facdb2a0897 .uk-grid>* {padding-left: 20px;}@media (min-width: 1200px) {
                    #ada0facdb2a0897 .uk-grid>* { padding-left: 20px;}
                }@media (max-width: 640) {#ada0facdb2a0897 .uk-grid>* {
                    padding-left: 20px;}
                }#ada0facdb2a0897 .uk-grid>.uk-grid-margin {margin-top: 30px;}@media (min-width: 1200px) {
                    #ada0facdb2a0897 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }@media (max-width: 640) {
                    #ada0facdb2a0897 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }#ad8e5ad891aabde .logged {
  display: none;
}
#ad8e5ad891aabde .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#ad8e5ad891aabde .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#ad8e5ad891aabde .quick-menus > li:after {
  content: '|';
  color: #888;
}
#ad8e5ad891aabde .quick-menus > li:last-child::after {
  content: '';
}
#ad8e5ad891aabde .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#ad8e5ad891aabde .site-header {
  height: 72px;
}
#ad8e5ad891aabde .uk-navbar-item,
#ad8e5ad891aabde .uk-navbar-nav > li > a,
#ad8e5ad891aabde .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#ad8e5ad891aabde .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#ad8e5ad891aabde .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#ad8e5ad891aabde .uk-navbar-center {
  display: inline-block;
  position: static;
}
#ad8e5ad891aabde .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#ad8e5ad891aabde .ap-search-form {
  display: inline-block;
  width: 100%;
}
#ad8e5ad891aabde .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#ad8e5ad891aabde .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#ad8e5ad891aabde .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#ad8e5ad891aabde .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#ad8e5ad891aabde .site-pc-navbar {
  background: #fff;
}
#ad8e5ad891aabde .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#ad8e5ad891aabde .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#ad8e5ad891aabde .logo {
  display: inline-block;
}
#ad8e5ad891aabde .menu-list {
  justify-content: flex-start;
}
#ad8e5ad891aabde .submenu-items {
  display: inline-block;
}
#ad8e5ad891aabde .submenu-items .sub-menu-item:last-child svg,
#ad8e5ad891aabde .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#ae6f5ae2ecaf552 .filter-nav li {
  padding: 2px 15px;
  border-radius: 2px;
  font-size: 13px;
  margin: 0 10px 4px 0;
  border: 1px solid #7ed321;
  color: #7ed321;
  display: inline-block;
  cursor: pointer;
}
#ae6f5ae2ecaf552 .filter-nav li.uk-active {
  color: #fff;
  background-color: #7ed321;
}
#ae6f5ae2ecaf552 .text-style figure {
  background: transparent;
}
#ae6f5ae2ecaf552 .text-style:hover figure {
  background: #7ed321;
}
#ae6f5ae2ecaf552 .text-style.text-style-7 img {
  opacity: .9;
}
#ada7cadba0a5a34 .filter-nav li {
  padding: 2px 15px;
  border-radius: 2px;
  font-size: 13px;
  margin: 0 10px 4px 0;
  border: 1px solid #7ed321;
  color: #7ed321;
  display: inline-block;
  cursor: pointer;
}
#ada7cadba0a5a34 .filter-nav li.uk-active {
  color: #fff;
  background-color: #7ed321;
}
#ada7cadba0a5a34 .text-style figure {
  background: transparent;
}
#ada7cadba0a5a34 .text-style:hover figure {
  background: #7ed321;
}
#ada7cadba0a5a34 .text-style.text-style-7 img {
  opacity: .9;
}
#a408ea8b95a5864 .filter-nav li {
  padding: 2px 15px;
  border-radius: 2px;
  font-size: 13px;
  margin: 0 10px 4px 0;
  border: 1px solid #7ed321;
  color: #7ed321;
  display: inline-block;
  cursor: pointer;
}
#a408ea8b95a5864 .filter-nav li.uk-active {
  color: #fff;
  background-color: #7ed321;
}
#a408ea8b95a5864 .text-style figure {
  background: transparent;
}
#a408ea8b95a5864 .text-style:hover figure {
  background: #7ed321;
}
#a408ea8b95a5864 .text-style.text-style-7 img {
  opacity: .9;
}
#aa4d6a6522a6203 .filter-nav li {
  padding: 2px 15px;
  border-radius: 2px;
  font-size: 13px;
  margin: 0 10px 4px 0;
  border: 1px solid #7ed321;
  color: #7ed321;
  display: inline-block;
  cursor: pointer;
}
#aa4d6a6522a6203 .filter-nav li.uk-active {
  color: #fff;
  background-color: #7ed321;
}
#aa4d6a6522a6203 .text-style figure {
  background: transparent;
}
#aa4d6a6522a6203 .text-style:hover figure {
  background: #7ed321;
}
#aa4d6a6522a6203 .text-style.text-style-7 img {
  opacity: .9;
}
#a488fa92cbab977 .filter-nav li {
  padding: 2px 15px;
  border-radius: 2px;
  font-size: 13px;
  margin: 0 10px 4px 0;
  border: 1px solid #7ed321;
  color: #7ed321;
  display: inline-block;
  cursor: pointer;
}
#a488fa92cbab977 .filter-nav li.uk-active {
  color: #fff;
  background-color: #7ed321;
}
#a488fa92cbab977 .text-style figure {
  background: transparent;
}
#a488fa92cbab977 .text-style:hover figure {
  background: #7ed321;
}
#a488fa92cbab977 .text-style.text-style-7 img {
  opacity: .9;
}
#af050a3b0cabf67 .filter-nav li {
  padding: 2px 15px;
  border-radius: 2px;
  font-size: 13px;
  margin: 0 10px 4px 0;
  border: 1px solid #7ed321;
  color: #7ed321;
  display: inline-block;
  cursor: pointer;
}
#af050a3b0cabf67 .filter-nav li.uk-active {
  color: #fff;
  background-color: #7ed321;
}
#af050a3b0cabf67 .text-style figure {
  background: transparent;
}
#af050a3b0cabf67 .text-style:hover figure {
  background: #7ed321;
}
#af050a3b0cabf67 .text-style.text-style-7 img {
  opacity: .9;
}
#adae5a81f8ab9c5 input,
#adae5a81f8ab9c5 button {
  border-radius: 20px;
}
#adae5a81f8ab9c5 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a11daa5c8da93af .uk-container {max-width: 1500px;}#af8f6a90a4a92ca .uk-container {max-width: 1500px;}#a83b0aa547a8d85 > .ele-wrap {border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-top-width: 0px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;box-shadow: 0px 0px 0px 0px undefined;}#a83b0aa547a8d85  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px undefined;}#aaceea56ffa2764 > .ele-wrap {border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-top-width: 0px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;box-shadow: 0px 0px 0px 0px undefined;}#aaceea56ffa2764  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px undefined;}#a73baaeb36ad795 > .ele-wrap {border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-top-width: 0px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;box-shadow: 0px 0px 0px 0px undefined;}#a73baaeb36ad795  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px undefined;}#ae6f5ae2ecaf552 .uk-grid {margin-left: -20px;}@media (min-width: 1200px) {
                    #ae6f5ae2ecaf552 .uk-grid { margin-left: -20px;}
                }@media (max-width: 640) {
                    #ae6f5ae2ecaf552 .uk-grid { margin-left: -20px;}
                }#ae6f5ae2ecaf552 .uk-grid>* {padding-left: 20px;}@media (min-width: 1200px) {
                    #ae6f5ae2ecaf552 .uk-grid>* { padding-left: 20px;}
                }@media (max-width: 640) {#ae6f5ae2ecaf552 .uk-grid>* {
                    padding-left: 20px;}
                }#ae6f5ae2ecaf552 .uk-grid>.uk-grid-margin {margin-top: 30px;}@media (min-width: 1200px) {
                    #ae6f5ae2ecaf552 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }@media (max-width: 640) {
                    #ae6f5ae2ecaf552 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }#ada7cadba0a5a34 .uk-grid {margin-left: -20px;}@media (min-width: 1200px) {
                    #ada7cadba0a5a34 .uk-grid { margin-left: -20px;}
                }@media (max-width: 640) {
                    #ada7cadba0a5a34 .uk-grid { margin-left: -20px;}
                }#ada7cadba0a5a34 .uk-grid>* {padding-left: 20px;}@media (min-width: 1200px) {
                    #ada7cadba0a5a34 .uk-grid>* { padding-left: 20px;}
                }@media (max-width: 640) {#ada7cadba0a5a34 .uk-grid>* {
                    padding-left: 20px;}
                }#ada7cadba0a5a34 .uk-grid>.uk-grid-margin {margin-top: 30px;}@media (min-width: 1200px) {
                    #ada7cadba0a5a34 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }@media (max-width: 640) {
                    #ada7cadba0a5a34 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }#a408ea8b95a5864 .uk-grid {margin-left: -20px;}@media (min-width: 1200px) {
                    #a408ea8b95a5864 .uk-grid { margin-left: -20px;}
                }@media (max-width: 640) {
                    #a408ea8b95a5864 .uk-grid { margin-left: -20px;}
                }#a408ea8b95a5864 .uk-grid>* {padding-left: 20px;}@media (min-width: 1200px) {
                    #a408ea8b95a5864 .uk-grid>* { padding-left: 20px;}
                }@media (max-width: 640) {#a408ea8b95a5864 .uk-grid>* {
                    padding-left: 20px;}
                }#a408ea8b95a5864 .uk-grid>.uk-grid-margin {margin-top: 30px;}@media (min-width: 1200px) {
                    #a408ea8b95a5864 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }@media (max-width: 640) {
                    #a408ea8b95a5864 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }#aa4d6a6522a6203 .uk-grid {margin-left: -20px;}@media (min-width: 1200px) {
                    #aa4d6a6522a6203 .uk-grid { margin-left: -20px;}
                }@media (max-width: 640) {
                    #aa4d6a6522a6203 .uk-grid { margin-left: -20px;}
                }#aa4d6a6522a6203 .uk-grid>* {padding-left: 20px;}@media (min-width: 1200px) {
                    #aa4d6a6522a6203 .uk-grid>* { padding-left: 20px;}
                }@media (max-width: 640) {#aa4d6a6522a6203 .uk-grid>* {
                    padding-left: 20px;}
                }#aa4d6a6522a6203 .uk-grid>.uk-grid-margin {margin-top: 30px;}@media (min-width: 1200px) {
                    #aa4d6a6522a6203 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }@media (max-width: 640) {
                    #aa4d6a6522a6203 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }#a488fa92cbab977 .uk-grid {margin-left: -20px;}@media (min-width: 1200px) {
                    #a488fa92cbab977 .uk-grid { margin-left: -20px;}
                }@media (max-width: 640) {
                    #a488fa92cbab977 .uk-grid { margin-left: -20px;}
                }#a488fa92cbab977 .uk-grid>* {padding-left: 20px;}@media (min-width: 1200px) {
                    #a488fa92cbab977 .uk-grid>* { padding-left: 20px;}
                }@media (max-width: 640) {#a488fa92cbab977 .uk-grid>* {
                    padding-left: 20px;}
                }#a488fa92cbab977 .uk-grid>.uk-grid-margin {margin-top: 30px;}@media (min-width: 1200px) {
                    #a488fa92cbab977 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }@media (max-width: 640) {
                    #a488fa92cbab977 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }#af050a3b0cabf67 .uk-grid {margin-left: -20px;}@media (min-width: 1200px) {
                    #af050a3b0cabf67 .uk-grid { margin-left: -20px;}
                }@media (max-width: 640) {
                    #af050a3b0cabf67 .uk-grid { margin-left: -20px;}
                }#af050a3b0cabf67 .uk-grid>* {padding-left: 20px;}@media (min-width: 1200px) {
                    #af050a3b0cabf67 .uk-grid>* { padding-left: 20px;}
                }@media (max-width: 640) {#af050a3b0cabf67 .uk-grid>* {
                    padding-left: 20px;}
                }#af050a3b0cabf67 .uk-grid>.uk-grid-margin {margin-top: 30px;}@media (min-width: 1200px) {
                    #af050a3b0cabf67 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }@media (max-width: 640) {
                    #af050a3b0cabf67 .uk-grid>.uk-grid-margin {margin-top: 30px;}
                }#aada0ab806aa04f .logged {
  display: none;
}
#aada0ab806aa04f .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#aada0ab806aa04f .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#aada0ab806aa04f .quick-menus > li:after {
  content: '|';
  color: #888;
}
#aada0ab806aa04f .quick-menus > li:last-child::after {
  content: '';
}
#aada0ab806aa04f .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#aada0ab806aa04f .site-header {
  height: 72px;
}
#aada0ab806aa04f .uk-navbar-item,
#aada0ab806aa04f .uk-navbar-nav > li > a,
#aada0ab806aa04f .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#aada0ab806aa04f .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#aada0ab806aa04f .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#aada0ab806aa04f .uk-navbar-center {
  display: inline-block;
  position: static;
}
#aada0ab806aa04f .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#aada0ab806aa04f .ap-search-form {
  display: inline-block;
  width: 100%;
}
#aada0ab806aa04f .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#aada0ab806aa04f .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#aada0ab806aa04f .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#aada0ab806aa04f .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#aada0ab806aa04f .site-pc-navbar {
  background: #fff;
}
#aada0ab806aa04f .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#aada0ab806aa04f .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#aada0ab806aa04f .logo {
  display: inline-block;
}
#aada0ab806aa04f .menu-list {
  justify-content: flex-start;
}
#aada0ab806aa04f .submenu-items {
  display: inline-block;
}
#aada0ab806aa04f .submenu-items .sub-menu-item:last-child svg,
#aada0ab806aa04f .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a8e42af669acab6 input,
#a8e42af669acab6 button {
  border-radius: 20px;
}
#a8e42af669acab6 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a6b63ab9a9a29ca [data-item="title"] {left: -219px;top: -33px; position: relative;}#a6b63ab9a9a29ca [data-item="abstract"] {left: -70px;top: 2px; position: relative;}#a6b63ab9a9a29ca [data-item="buttons[0]"] {left: 84px;top: 268px; position: relative;}#a6b63ab9a9a29ca [data-item="buttons[1]"] {left: 86px;top: 253px; position: relative;}#ae5d3ad0a8ac57e .logged {
  display: none;
}
#ae5d3ad0a8ac57e .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#ae5d3ad0a8ac57e .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#ae5d3ad0a8ac57e .quick-menus > li:after {
  content: '|';
  color: #888;
}
#ae5d3ad0a8ac57e .quick-menus > li:last-child::after {
  content: '';
}
#ae5d3ad0a8ac57e .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#ae5d3ad0a8ac57e .site-header {
  height: 72px;
}
#ae5d3ad0a8ac57e .uk-navbar-item,
#ae5d3ad0a8ac57e .uk-navbar-nav > li > a,
#ae5d3ad0a8ac57e .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#ae5d3ad0a8ac57e .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#ae5d3ad0a8ac57e .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#ae5d3ad0a8ac57e .uk-navbar-center {
  display: inline-block;
  position: static;
}
#ae5d3ad0a8ac57e .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#ae5d3ad0a8ac57e .ap-search-form {
  display: inline-block;
  width: 100%;
}
#ae5d3ad0a8ac57e .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#ae5d3ad0a8ac57e .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#ae5d3ad0a8ac57e .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#ae5d3ad0a8ac57e .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#ae5d3ad0a8ac57e .site-pc-navbar {
  background: #fff;
}
#ae5d3ad0a8ac57e .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#ae5d3ad0a8ac57e .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#ae5d3ad0a8ac57e .logo {
  display: inline-block;
}
#ae5d3ad0a8ac57e .menu-list {
  justify-content: flex-start;
}
#ae5d3ad0a8ac57e .submenu-items {
  display: inline-block;
}
#ae5d3ad0a8ac57e .submenu-items .sub-menu-item:last-child svg,
#ae5d3ad0a8ac57e .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a3c32aca18a9ba1 input,
#a3c32aca18a9ba1 button {
  border-radius: 20px;
}
#a3c32aca18a9ba1 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a8109a42b6ab6e6 .uk-container {
  overflow: hidden;
}
#a8109a42b6ab6e6 .uk-button {
  border-radius: 100px;
  font-weight: bold;
  line-height: 1;
  padding: 17px 39px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.14);
  text-transform: uppercase;
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.2);
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}
@keyframes AnimationName {
  0% {
    background-position: 0% 31%;
  }
  50% {
    background-position: 100% 70%;
  }
  100% {
    background-position: 0% 31%;
  }
}
#a8109a42b6ab6e6 .uk-button:hover {
  color: #666666 !important;
  background: #fff;
}
#a8109a42b6ab6e6 .uk-button-primary {
  background: #f2f2f2;
  background: linear-gradient(135deg, #f2f2f2 0%, #dddddd 50%, #ffffff 51%, #ffffff 71%, #f6f8fb 100%);
  color: #666666 !important;
  background-size: 400% 400%;
  animation: AnimationName 3s ease infinite;
  border: medium none;
}
#aae4da3da7a6abe input,
#aae4da3da7a6abe button {
  border-radius: 20px;
}
#aae4da3da7a6abe .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a0c41a0702a2755 .ap-category-filter ul li.active {
  border-color: #7ed321;
  color: #7ed321;
}
#a0c41a0702a2755 .ele-article-list.uk-grid {
  margin-left: -20px;
}
#a0c41a0702a2755 .ele-article-list.uk-grid > * {
  padding-left: 20px;
}
#a0c41a0702a2755 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#a0c41a0702a2755 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a0c41a0702a2755 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a0c41a0702a2755 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a0c41a0702a2755 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a0c41a0702a2755 .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a0c41a0702a2755 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a0c41a0702a2755 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a0c41a0702a2755 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a0c41a0702a2755 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a0c41a0702a2755 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a0c41a0702a2755 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a0c41a0702a2755 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a0c41a0702a2755 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a0c41a0702a2755 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a0c41a0702a2755 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a0c41a0702a2755 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a0c41a0702a2755 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a0c41a0702a2755 .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a0c41a0702a2755 .ele-article-list .pic-article {
  padding: 20px 10px;
  border-bottom: 1px dashed #ececec;
}
#a0c41a0702a2755 .ele-article-list .pic-article .img_wrap {
  width: 25%;
  border-radius: 8px;
  overflow: hidden;
}
#a0c41a0702a2755 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a0c41a0702a2755 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a0c41a0702a2755 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a0c41a0702a2755 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a0c41a0702a2755 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a0c41a0702a2755 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a0c41a0702a2755 .ele-article-list .text-article {
  border-bottom: 1px dashed #ececec;
}
#a0c41a0702a2755 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a0c41a0702a2755 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a0c41a0702a2755 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a16feac44eaa2aa .ap-category-filter ul li.active {
  border-color: #7ed321;
  color: #7ed321;
}
#a16feac44eaa2aa .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a16feac44eaa2aa .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a16feac44eaa2aa .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a16feac44eaa2aa .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a16feac44eaa2aa .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a16feac44eaa2aa .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a16feac44eaa2aa .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a16feac44eaa2aa .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a16feac44eaa2aa .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a16feac44eaa2aa .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a16feac44eaa2aa .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a16feac44eaa2aa .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a16feac44eaa2aa .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a16feac44eaa2aa .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a16feac44eaa2aa .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a16feac44eaa2aa .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a16feac44eaa2aa .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a16feac44eaa2aa .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a16feac44eaa2aa .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a16feac44eaa2aa .ele-article-list .pic-article {
  padding: 20px 0px;
  border-bottom: 1px solid #ececec;
}
#a16feac44eaa2aa .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 8px;
  overflow: hidden;
}
#a16feac44eaa2aa .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a16feac44eaa2aa .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a16feac44eaa2aa .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a16feac44eaa2aa .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a16feac44eaa2aa .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a16feac44eaa2aa .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a16feac44eaa2aa .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a16feac44eaa2aa .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a16feac44eaa2aa .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a16feac44eaa2aa .ele-article-list .text-article:hover .time {
  color: auto;
}
#af460a029fad440 .logged {
  display: none;
}
#af460a029fad440 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#af460a029fad440 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#af460a029fad440 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#af460a029fad440 .quick-menus > li:last-child::after {
  content: '';
}
#af460a029fad440 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#af460a029fad440 .site-header {
  height: 72px;
}
#af460a029fad440 .uk-navbar-item,
#af460a029fad440 .uk-navbar-nav > li > a,
#af460a029fad440 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#af460a029fad440 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#af460a029fad440 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#af460a029fad440 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#af460a029fad440 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#af460a029fad440 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#af460a029fad440 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#af460a029fad440 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#af460a029fad440 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#af460a029fad440 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#af460a029fad440 .site-pc-navbar {
  background: #fff;
}
#af460a029fad440 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#af460a029fad440 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#af460a029fad440 .logo {
  display: inline-block;
}
#af460a029fad440 .menu-list {
  justify-content: flex-start;
}
#af460a029fad440 .submenu-items {
  display: inline-block;
}
#af460a029fad440 .submenu-items .sub-menu-item:last-child svg,
#af460a029fad440 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#aae4da3da7a6abe input,
#aae4da3da7a6abe button {
  border-radius: 20px;
}
#aae4da3da7a6abe .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a4023a3f86aed46 .form-agree {
  display: flex;
  align-items: center;
}
#a4023a3f86aed46 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a4023a3f86aed46 .form-item .uk-input,
#a4023a3f86aed46 .form-item .uk-select,
#a4023a3f86aed46 .form-item .uk-textarea {
  width: autopx;
}
#a4023a3f86aed46 .form-item .auto-height {
  height: auto;
}
#a319da7271ac36f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-shadow: 0px 1px 10px 0px rgba(214, 174, 174, 0.27);}#a319da7271ac36f  > .ele-wrap:hover {border-bottom-color: #ff6c6c;border-bottom-width: 3px;border-bottom-style: solid;}#ad6c0abd1fa2fbf .img-wrap {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
#a26dfa9e18a5563 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-shadow: 0px 1px 10px 0px rgba(214, 174, 174, 0.27);}#a26dfa9e18a5563  > .ele-wrap:hover {border-bottom-color: #ff6c6c;border-bottom-width: 3px;border-bottom-style: solid;}#a417ba10f8ab70e .img-wrap {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
#a2b68a6f91a408f .logged {
  display: none;
}
#a2b68a6f91a408f .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a2b68a6f91a408f .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a2b68a6f91a408f .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a2b68a6f91a408f .quick-menus > li:last-child::after {
  content: '';
}
#a2b68a6f91a408f .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a2b68a6f91a408f .site-header {
  height: 72px;
}
#a2b68a6f91a408f .uk-navbar-item,
#a2b68a6f91a408f .uk-navbar-nav > li > a,
#a2b68a6f91a408f .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a2b68a6f91a408f .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a2b68a6f91a408f .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a2b68a6f91a408f .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a2b68a6f91a408f .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a2b68a6f91a408f .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a2b68a6f91a408f .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a2b68a6f91a408f .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a2b68a6f91a408f .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a2b68a6f91a408f .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a2b68a6f91a408f .site-pc-navbar {
  background: #fff;
}
#a2b68a6f91a408f .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a2b68a6f91a408f .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a2b68a6f91a408f .logo {
  display: inline-block;
}
#a2b68a6f91a408f .menu-list {
  justify-content: flex-start;
}
#a2b68a6f91a408f .submenu-items {
  display: inline-block;
}
#a2b68a6f91a408f .submenu-items .sub-menu-item:last-child svg,
#a2b68a6f91a408f .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#aae4da3da7a6abe input,
#aae4da3da7a6abe button {
  border-radius: 20px;
}
#aae4da3da7a6abe .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a531ca5be9ae7f5 [data-item="items[2].title"] {left: -1px;top: 13px; position: relative;}#a531ca5be9ae7f5 [data-item="items[1].title"] {left: 0px;top: -2px; position: relative;}#a531ca5be9ae7f5 [data-item="items[0].title"] {left: 1px;top: -2px; position: relative;}#a531ca5be9ae7f5 [data-item="title"] {left: 0px;top: 1px; position: relative;}#a23eba17b8a522d [data-item="items[1].title"] {left: 4px;top: 18px; position: relative;}#a23eba17b8a522d [data-item="items[2].title"] {left: -1px;top: -5px; position: relative;}#a0761a8d43a2f97 a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(74, 74, 74, 1);}#a76b3a39e3a59af a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(74, 74, 74, 1);}#a76b3a39e3a59af a:hover {
        font-weight: normal;
        font-style: normal;
    text-align: center;font-family: inherit;}#a9b8fa8e6aaeb94 [data-item="items[0].picture"] {left: 0px;top: -10px; position: relative;}#a9b8fa8e6aaeb94 [data-item="items[0].title"] {left: 0px;top: -10px; position: relative;}#a9b8fa8e6aaeb94 [data-item="items[1].picture"] {left: 0px;top: -10px; position: relative;}#a9b8fa8e6aaeb94 [data-item="items[2].picture"] {left: 0px;top: -11px; position: relative;}#a9b8fa8e6aaeb94 [data-item="items"] {left: 0px;top: -1px; position: relative;}#a9b8fa8e6aaeb94 [data-item="items[1]"] {left: 0px;top: -1px; position: relative;}#a013ca2b38a1b2f .logged {
  display: none;
}
#a013ca2b38a1b2f .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a013ca2b38a1b2f .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a013ca2b38a1b2f .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a013ca2b38a1b2f .quick-menus > li:last-child::after {
  content: '';
}
#a013ca2b38a1b2f .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a013ca2b38a1b2f .site-header {
  height: 72px;
}
#a013ca2b38a1b2f .uk-navbar-item,
#a013ca2b38a1b2f .uk-navbar-nav > li > a,
#a013ca2b38a1b2f .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a013ca2b38a1b2f .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a013ca2b38a1b2f .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a013ca2b38a1b2f .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a013ca2b38a1b2f .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a013ca2b38a1b2f .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a013ca2b38a1b2f .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a013ca2b38a1b2f .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a013ca2b38a1b2f .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a013ca2b38a1b2f .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a013ca2b38a1b2f .site-pc-navbar {
  background: #fff;
}
#a013ca2b38a1b2f .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a013ca2b38a1b2f .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a013ca2b38a1b2f .logo {
  display: inline-block;
}
#a013ca2b38a1b2f .menu-list {
  justify-content: flex-start;
}
#a013ca2b38a1b2f .submenu-items {
  display: inline-block;
}
#a013ca2b38a1b2f .submenu-items .sub-menu-item:last-child svg,
#a013ca2b38a1b2f .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abcefa5c9faf9eb input,
#abcefa5c9faf9eb button {
  border-radius: 20px;
}
#abcefa5c9faf9eb .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a6613aa914a472a {
  overflow: hidden;
  pointer-events: none;
}
#a6613aa914a472a > .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;
}
#a6613aa914a472a > .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;
}
#a6613aa914a472a > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a6613aa914a472a > .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;
}
#a6613aa914a472a > .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;
}
#a6613aa914a472a > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a6613aa914a472a > .tab-wrap > div > .tab-nav,
#a6613aa914a472a > .tab-nav,
#a6613aa914a472a > .tab-tabs > .tab-wrap > div > .tab-nav,
#a6613aa914a472a > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #f5a623;
}
#a6613aa914a472a > .tab-wrap > div > .tab-nav-horizontal,
#a6613aa914a472a > .tab-nav-horizontal,
#a6613aa914a472a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a6613aa914a472a > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a6613aa914a472a > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a6613aa914a472a > .tab-nav-horizontal::-webkit-scrollbar,
#a6613aa914a472a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a6613aa914a472a > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a6613aa914a472a > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a6613aa914a472a > .tab-nav-horizontal.tagScroll,
#a6613aa914a472a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a6613aa914a472a > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a6613aa914a472a > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a6613aa914a472a > .tab-nav-horizontal.tagScroll li a,
#a6613aa914a472a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a6613aa914a472a > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a6613aa914a472a > .tab-wrap > div > .tab-nav a,
#a6613aa914a472a > .tab-nav a,
#a6613aa914a472a > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a6613aa914a472a > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#a6613aa914a472a > .tab-wrap > div > .tab-nav li a,
#a6613aa914a472a > .tab-nav li a,
#a6613aa914a472a > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a6613aa914a472a > .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 #ffffff;
  height: 50px;
  font-weight: bold;
  font-style: normal;
  font-size: 20px;
  font-family: NotoSansSC-Regular;
  color: #f5a623;
  letter-spacing: 2px;
  background-color: #ffffff;
}
#a6613aa914a472a > .tab-wrap > div > .tab-nav li a svg,
#a6613aa914a472a > .tab-nav li a svg,
#a6613aa914a472a > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a6613aa914a472a > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a6613aa914a472a > .tab-wrap > div > .tab-nav li a .ap_icon,
#a6613aa914a472a > .tab-nav li a .ap_icon,
#a6613aa914a472a > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a6613aa914a472a > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a6613aa914a472a > .tab-wrap > div > .tab-nav li a:hover,
#a6613aa914a472a > .tab-nav li a:hover,
#a6613aa914a472a > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a6613aa914a472a > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 21px;
  font-family: inherit;
  color: #f5a623;
}
#a6613aa914a472a > .tab-wrap > div > .tab-nav li.uk-active a,
#a6613aa914a472a > .tab-nav li.uk-active a,
#a6613aa914a472a > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a6613aa914a472a > .tab-tabs > .tab-nav li.uk-active a {
  background-color: #f5a623;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6613aa914a472a > .tab-wrap > div > .tab-nav li:last-child a,
#a6613aa914a472a > .tab-nav li:last-child a,
#a6613aa914a472a > .tab-tabs > .tab-wrap > div > .tab-nav li:last-child a,
#a6613aa914a472a > .tab-tabs > .tab-nav li:last-child a {
  border-right: undefined;
}
#a6613aa914a472a .layout-left li,
#a6613aa914a472a .layout-center li,
#a6613aa914a472a .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a6613aa914a472a .layout-left li a,
#a6613aa914a472a .layout-center li a,
#a6613aa914a472a .layout-right li a {
  height: 100%;
}
#a6613aa914a472a > .tab-tabs .layout-left {
  text-align: left;
}
#a6613aa914a472a > .tab-tabs .layout-center {
  text-align: center;
}
#a6613aa914a472a > .tab-tabs .layout-right {
  text-align: right;
}
#a6613aa914a472a .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a6613aa914a472a .tab-content-wrap {
  background-color: transparent;
}
#a6613aa914a472a .tab-contents,
#a6613aa914a472a .tab-contents-wrap {
  pointer-events: none;
}
#a6613aa914a472a .tab-content,
#a6613aa914a472a .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a6613aa914a472a .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a6613aa914a472a .tab-wrap .tab-contents {
  height: 100%;
}
#a6613aa914a472a .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a6613aa914a472a .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a6613aa914a472a .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a276eae104aaff1 .logged {
  display: none;
}
#a276eae104aaff1 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a276eae104aaff1 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a276eae104aaff1 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a276eae104aaff1 .quick-menus > li:last-child::after {
  content: '';
}
#a276eae104aaff1 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a276eae104aaff1 .site-header {
  height: 72px;
}
#a276eae104aaff1 .uk-navbar-item,
#a276eae104aaff1 .uk-navbar-nav > li > a,
#a276eae104aaff1 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a276eae104aaff1 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a276eae104aaff1 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a276eae104aaff1 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a276eae104aaff1 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a276eae104aaff1 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a276eae104aaff1 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a276eae104aaff1 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a276eae104aaff1 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a276eae104aaff1 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a276eae104aaff1 .site-pc-navbar {
  background: #fff;
}
#a276eae104aaff1 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a276eae104aaff1 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a276eae104aaff1 .logo {
  display: inline-block;
}
#a276eae104aaff1 .menu-list {
  justify-content: flex-start;
}
#a276eae104aaff1 .submenu-items {
  display: inline-block;
}
#a276eae104aaff1 .submenu-items .sub-menu-item:last-child svg,
#a276eae104aaff1 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#ab3dca1a7aaeae2 input,
#ab3dca1a7aaeae2 button {
  border-radius: 20px;
}
#ab3dca1a7aaeae2 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#aab44a419fa20cf > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a5a9eaa182ac3a9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a0e79a6031a32e7 .logged {
  display: none;
}
#a0e79a6031a32e7 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a0e79a6031a32e7 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a0e79a6031a32e7 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a0e79a6031a32e7 .quick-menus > li:last-child::after {
  content: '';
}
#a0e79a6031a32e7 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a0e79a6031a32e7 .site-header {
  height: 72px;
}
#a0e79a6031a32e7 .uk-navbar-item,
#a0e79a6031a32e7 .uk-navbar-nav > li > a,
#a0e79a6031a32e7 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a0e79a6031a32e7 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a0e79a6031a32e7 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a0e79a6031a32e7 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a0e79a6031a32e7 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a0e79a6031a32e7 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a0e79a6031a32e7 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a0e79a6031a32e7 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a0e79a6031a32e7 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a0e79a6031a32e7 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a0e79a6031a32e7 .site-pc-navbar {
  background: #fff;
}
#a0e79a6031a32e7 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a0e79a6031a32e7 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a0e79a6031a32e7 .logo {
  display: inline-block;
}
#a0e79a6031a32e7 .menu-list {
  justify-content: flex-start;
}
#a0e79a6031a32e7 .submenu-items {
  display: inline-block;
}
#a0e79a6031a32e7 .submenu-items .sub-menu-item:last-child svg,
#a0e79a6031a32e7 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#ae225a6e63ae8dd .uk-container {
  overflow: visible;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a0e79a6031a32e7 .logged {
  display: none;
}
#a0e79a6031a32e7 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a0e79a6031a32e7 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a0e79a6031a32e7 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a0e79a6031a32e7 .quick-menus > li:last-child::after {
  content: '';
}
#a0e79a6031a32e7 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a0e79a6031a32e7 .site-header {
  height: 72px;
}
#a0e79a6031a32e7 .uk-navbar-item,
#a0e79a6031a32e7 .uk-navbar-nav > li > a,
#a0e79a6031a32e7 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a0e79a6031a32e7 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a0e79a6031a32e7 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a0e79a6031a32e7 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a0e79a6031a32e7 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a0e79a6031a32e7 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a0e79a6031a32e7 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a0e79a6031a32e7 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a0e79a6031a32e7 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a0e79a6031a32e7 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a0e79a6031a32e7 .site-pc-navbar {
  background: #fff;
}
#a0e79a6031a32e7 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a0e79a6031a32e7 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a0e79a6031a32e7 .logo {
  display: inline-block;
}
#a0e79a6031a32e7 .menu-list {
  justify-content: flex-start;
}
#a0e79a6031a32e7 .submenu-items {
  display: inline-block;
}
#a0e79a6031a32e7 .submenu-items .sub-menu-item:last-child svg,
#a0e79a6031a32e7 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
@media (min-width: 960px) {
  #a0f0ca2181a7c09 .uk-card {
    position: absolute;
    top: 20%;
    right: 0;
  }
}
@media (max-width: 740px) {
  #a0f0ca2181a7c09 .uk-width-large {
    width: auto;
    margin-top: 20px;
  }
}
#a90d1a99c7a4614 input,
#a90d1a99c7a4614 button {
  border-radius: 20px;
}
#a90d1a99c7a4614 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a242ca9e44a8ec9 [data-item="icon"] {left: 0px;top: 1px; position: relative;}#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a0e79a6031a32e7 .logged {
  display: none;
}
#a0e79a6031a32e7 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a0e79a6031a32e7 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a0e79a6031a32e7 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a0e79a6031a32e7 .quick-menus > li:last-child::after {
  content: '';
}
#a0e79a6031a32e7 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a0e79a6031a32e7 .site-header {
  height: 72px;
}
#a0e79a6031a32e7 .uk-navbar-item,
#a0e79a6031a32e7 .uk-navbar-nav > li > a,
#a0e79a6031a32e7 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a0e79a6031a32e7 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a0e79a6031a32e7 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a0e79a6031a32e7 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a0e79a6031a32e7 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a0e79a6031a32e7 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a0e79a6031a32e7 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a0e79a6031a32e7 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a0e79a6031a32e7 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a0e79a6031a32e7 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a0e79a6031a32e7 .site-pc-navbar {
  background: #fff;
}
#a0e79a6031a32e7 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a0e79a6031a32e7 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a0e79a6031a32e7 .logo {
  display: inline-block;
}
#a0e79a6031a32e7 .menu-list {
  justify-content: flex-start;
}
#a0e79a6031a32e7 .submenu-items {
  display: inline-block;
}
#a0e79a6031a32e7 .submenu-items .sub-menu-item:last-child svg,
#a0e79a6031a32e7 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#aadc3a0c8da941e .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a6014af887a25b3 .uk-slider {
  padding-top: 30px;
}
#a6014af887a25b3 .uk-slider-nav {
  position: absolute;
  right: 0;
  top: 10px;
}
#a6014af887a25b3 .uk-card-media-top {
  overflow: hidden;
}
#a6014af887a25b3 .img-wrap {
  overflow: hidden;
  transition: all 0.2s ease-in;
}
#a6014af887a25b3 .uk-card:hover .img-wrap {
  transform: scale(1.2);
}
#a6014af887a25b3 .uk-card {
  border: 1px solid #ececec;
}
#a6014af887a25b3 .uk-dotnav > * {
  padding-left: 6px;
}
#a6014af887a25b3 .uk-dotnav > * > * {
  width: 6px;
  height: 6px;
  border: none;
  transform: all .2s ease;
  background-color: #c8f09d;
}
#a6014af887a25b3 .uk-dotnav > .uk-active > * {
  width: 10px;
  height: 10px;
  margin-top: -2px;
  background-color: #7ed321;
}
#adf0ea8ceea2412 .next-feed li {
  display: block;
  padding: 10px 0;
  margin: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 500;
  vertical-align: top;
  transition: opacity .3s ease;
}
@media (min-width: 960px) {
  #a0f0ca2181a7c09 .uk-card {
    position: absolute;
    top: 20%;
    right: 0;
  }
}
@media (max-width: 740px) {
  #a0f0ca2181a7c09 .uk-width-large {
    width: auto;
    margin-top: 20px;
  }
}
#a55bfa3346af03a input,
#a55bfa3346af03a button {
  border-radius: 20px;
}
#a55bfa3346af03a .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a6014af887a25b3 .uk-container {max-width: 1500px;}#a6014af887a25b3 [data-item*=".abstract"], #a6014af887a25b3 [data-item*=".abstract"] a {show: false;}#a6014af887a25b3 [data-item*=".subTitle"], #a6014af887a25b3 [data-item*=".subTitle"] a {show: false;}#a6014af887a25b3 [data-item*=".category"], #a6014af887a25b3 [data-item*=".category"] a {show: true;}#a242ca9e44a8ec9 [data-item="icon"] {left: 0px;top: 1px; position: relative;}#a791eaef59ae9cd .logged {
  display: none;
}
#a791eaef59ae9cd .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a791eaef59ae9cd .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a791eaef59ae9cd .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a791eaef59ae9cd .quick-menus > li:last-child::after {
  content: '';
}
#a791eaef59ae9cd .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a791eaef59ae9cd .site-header {
  height: 72px;
}
#a791eaef59ae9cd .uk-navbar-item,
#a791eaef59ae9cd .uk-navbar-nav > li > a,
#a791eaef59ae9cd .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a791eaef59ae9cd .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a791eaef59ae9cd .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a791eaef59ae9cd .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a791eaef59ae9cd .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a791eaef59ae9cd .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a791eaef59ae9cd .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a791eaef59ae9cd .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a791eaef59ae9cd .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a791eaef59ae9cd .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a791eaef59ae9cd .site-pc-navbar {
  background: #fff;
}
#a791eaef59ae9cd .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a791eaef59ae9cd .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a791eaef59ae9cd .logo {
  display: inline-block;
}
#a791eaef59ae9cd .menu-list {
  justify-content: flex-start;
}
#a791eaef59ae9cd .submenu-items {
  display: inline-block;
}
#a791eaef59ae9cd .submenu-items .sub-menu-item:last-child svg,
#a791eaef59ae9cd .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
@media (min-width: 960px) {
  #af74aa984dad2f8 .uk-card {
    position: absolute;
    top: 20%;
    right: 0;
  }
}
@media (max-width: 740px) {
  #af74aa984dad2f8 .uk-width-large {
    width: auto;
    margin-top: 20px;
  }
}
#ab1ada72eca6b11 .timeline-item {
  padding-left: 30px;
}
@media only screen and (min-width: 992px) {
  #ab1ada72eca6b11 .timeline-item {
    padding-left: 60px;
  }
  #ab1ada72eca6b11 .timeline-item-date {
    position: absolute;
    top: -1px;
    right: 100%;
    white-space: nowrap;
    margin-right: 5px;
  }
  #ab1ada72eca6b11 .timeline-item-date:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 1px;
    background-color: rgba(169, 177, 187, 0.5);
    margin-left: 15px;
  }
}
#ab1ada72eca6b11 .timeline-item-point {
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid #7ed321;
  padding: 3px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
#ab1ada72eca6b11 .timeline-item-point:before {
  content: '';
  display: block;
  width: 100%;
  border-radius: 50%;
  height: 100%;
  background-color: #7ed321;
}
#ab1ada72eca6b11 .timeline-item-line {
  position: absolute;
  top: 25px;
  left: 7px;
  bottom: 5px;
  width: 2px;
  border-left: 2px dashed #a9b1bb;
  border-right: 2px dashed #a9b1bb;
}
#ab1ada72eca6b11 .timeline-item-active .timeline-item-line {
  top: 18px;
  bottom: 0;
  left: 8px;
  margin: 0;
  background-color: #7ed321;
  border: none!important;
}
#aef57ab69da3a81 .link-reset {
  color: #555;
  cursor: default;
}
#a6d9ca601daf47b input,
#a6d9ca601daf47b button {
  border-radius: 20px;
}
#a6d9ca601daf47b .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#af74aa984dad2f8 [data-item="abstract"] {left: 0px;top: -1px; position: relative;}#aa456abbfaa9922 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 7px;border-top-color: #ff9a46;box-shadow: 0px 2px 7px 0px rgba(238, 238, 238, 1);}#a1e04aa48ea6e74 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 7px;border-top-color: #ff9a46;box-shadow: 0px 2px 7px 0px rgba(238, 238, 238, 1);}#a7b3bae4cca579c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 7px;border-top-color: #ff9a46;box-shadow: 0px 2px 7px 0px rgba(238, 238, 238, 1);}#a75fba6b2ba9b97 [data-item="title"] {left: 0px;top: -1px; position: relative;}#a2b61ae57ca5572 .logged {
  display: none;
}
#a2b61ae57ca5572 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a2b61ae57ca5572 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a2b61ae57ca5572 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a2b61ae57ca5572 .quick-menus > li:last-child::after {
  content: '';
}
#a2b61ae57ca5572 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a2b61ae57ca5572 .site-header {
  height: 72px;
}
#a2b61ae57ca5572 .uk-navbar-item,
#a2b61ae57ca5572 .uk-navbar-nav > li > a,
#a2b61ae57ca5572 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a2b61ae57ca5572 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a2b61ae57ca5572 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a2b61ae57ca5572 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a2b61ae57ca5572 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a2b61ae57ca5572 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a2b61ae57ca5572 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a2b61ae57ca5572 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a2b61ae57ca5572 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a2b61ae57ca5572 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a2b61ae57ca5572 .site-pc-navbar {
  background: #fff;
}
#a2b61ae57ca5572 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a2b61ae57ca5572 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a2b61ae57ca5572 .logo {
  display: inline-block;
}
#a2b61ae57ca5572 .menu-list {
  justify-content: flex-start;
}
#a2b61ae57ca5572 .submenu-items {
  display: inline-block;
}
#a2b61ae57ca5572 .submenu-items .sub-menu-item:last-child svg,
#a2b61ae57ca5572 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a5861aba2fa413e {
  /* mobile */
}
#a5861aba2fa413e .item {
  min-height: 400px;
  overflow: visible;
}
#a5861aba2fa413e .uk-card {
  position: absolute;
  transition: all .3s;
  background-image: -webkit-linear-gradient(bottom, rgba(72, 72, 79, 0.3) 0%, #00316d 100%);
  background-image: -moz-linear-gradient(bottom, rgba(72, 72, 79, 0.3) 0%, #00316d 100%);
  background-image: -moz-linear-gradient(to top, rgba(72, 72, 79, 0.3) 0%, #00316d 100%);
  background-image: -o-linear-gradient(to top, rgba(72, 72, 79, 0.3) 0%, #00316d 100%);
  background-image: linear-gradient(to top, rgba(72, 72, 79, 0.3) 0%, #00316d 100%);
  background-repeat: repeat;
  padding-bottom: 120px;
  margin-top: 20px;
  padding-top: 50px;
  right: 15px;
  left: 0;
}
#a5861aba2fa413e .item-logo {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  margin: 0 auto 20px;
}
#a5861aba2fa413e .item-logo svg {
  display: block;
  width: 100%;
  height: auto;
  fill: #fff;
}
#a5861aba2fa413e .uk-card .title {
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  line-height: 40px;
}
#a5861aba2fa413e .uk-card .abstract {
  font-size: 14px;
  color: #999;
  line-height: 24px;
  height: 52px;
  margin: 0 30px;
  overflow: hidden;
  transition: all .3s ease;
}
#a5861aba2fa413e .bottom {
  padding: 20px 30px;
  bottom: 0;
  position: absolute;
  background: #27272e;
  left: 0;
  width: 100%;
}
#a5861aba2fa413e .bottom p {
  line-height: 30px;
  margin: 0;
  font-size: 14px;
  color: #999;
}
#a5861aba2fa413e .bottom p a {
  font-size: 14px;
  color: #fff;
  float: left;
  width: calc(50% - 1px);
}
#a5861aba2fa413e .uk-card:hover {
  margin-top: 0;
  background-color: #2f4c90;
  padding-bottom: 110px;
}
#a5861aba2fa413e .uk-card:hover .abstract {
  height: auto;
}
@media (max-width: 640px) {
  #a5861aba2fa413e .item {
    min-height: 350px;
  }
  #a5861aba2fa413e .uk-card {
    padding-top: 20px;
    padding-bottom: 150px;
  }
  #a5861aba2fa413e .item-logo {
    width: 50px;
    height: 50px;
  }
  #a5861aba2fa413e .bottom {
    padding: 15px;
  }
}
#aa265ae147ab424 .filter-nav li {
  padding: 2px 15px;
  border-radius: 2px;
  font-size: 14px;
  margin: 0 10px 4px 0;
  border: 1px solid #7ed321;
  color: #7ed321;
  display: inline-block;
  cursor: pointer;
  font-weight: 500;
}
#aa265ae147ab424 .filter-nav li.uk-active {
  color: #fff;
  background-color: #7ed321;
}
#aa265ae147ab424 .uk-card {
  background: #fff;
  font-size: 13px;
}
#aa265ae147ab424 .img {
  background-position: center center;
}
#aa265ae147ab424 .title {
  font-size: 14px;
  line-height: 18px;
  font-weight: bolder;
  color: #333;
  margin-bottom: 6px;
}
#abc5caf430a85b3 input,
#abc5caf430a85b3 button {
  border-radius: 20px;
}
#abc5caf430a85b3 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a2b9aa98dea1266 .uk-container {max-width: 1500px;}#a2b9aa98dea1266 [data-item="abstract"] {left: 0px;top: 1px; position: relative;}#a5861aba2fa413e [data-item="abstract"] {left: 0px;top: 1px; position: relative;}#aa265ae147ab424 [data-item="items"] .uk-card-body {padding: 15px}@media (min-width: 1200px) {
                #aa265ae147ab424 [data-item="items"] .uk-card-body {padding: 15px}
            }@media (max-width: 640px) {
                #aa265ae147ab424 [data-item="items"] .uk-card-body {padding: 15px}
            }#aa265ae147ab424 [data-item="items"] .uk-card {
                border: 20px solid transparent;
            }#aa265ae147ab424 [data-item="items"] .uk-card {
                border-radius: 25px !important; overflow: hidden;
            } #aa265ae147ab424 [data-item*=".abstract"], #aa265ae147ab424 [data-item*=".abstract"] a {show: true;}#aa265ae147ab424 [data-item*=".subTitle"], #aa265ae147ab424 [data-item*=".subTitle"] a {show: true;max-line: 4;}#aa265ae147ab424 [data-item*=".category"], #aa265ae147ab424 [data-item*=".category"] a {show: true;}#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a2b61ae57ca5572 .logged {
  display: none;
}
#a2b61ae57ca5572 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a2b61ae57ca5572 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a2b61ae57ca5572 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a2b61ae57ca5572 .quick-menus > li:last-child::after {
  content: '';
}
#a2b61ae57ca5572 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a2b61ae57ca5572 .site-header {
  height: 72px;
}
#a2b61ae57ca5572 .uk-navbar-item,
#a2b61ae57ca5572 .uk-navbar-nav > li > a,
#a2b61ae57ca5572 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a2b61ae57ca5572 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a2b61ae57ca5572 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a2b61ae57ca5572 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a2b61ae57ca5572 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a2b61ae57ca5572 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a2b61ae57ca5572 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a2b61ae57ca5572 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a2b61ae57ca5572 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a2b61ae57ca5572 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a2b61ae57ca5572 .site-pc-navbar {
  background: #fff;
}
#a2b61ae57ca5572 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a2b61ae57ca5572 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a2b61ae57ca5572 .logo {
  display: inline-block;
}
#a2b61ae57ca5572 .menu-list {
  justify-content: flex-start;
}
#a2b61ae57ca5572 .submenu-items {
  display: inline-block;
}
#a2b61ae57ca5572 .submenu-items .sub-menu-item:last-child svg,
#a2b61ae57ca5572 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a4627aa520af813 .uk-button .fa {
  border: 1px solid #fff;
  display: inline-block;
  margin-left: 6px;
  border-radius: 50%;
  width: 16px;
  transition: all 0.3s ease-in;
}
#a4627aa520af813 .uk-button:hover .fa {
  margin-left: 10px;
  background-color: #fff;
  color: #777;
}
#abc5caf430a85b3 input,
#abc5caf430a85b3 button {
  border-radius: 20px;
}
#abc5caf430a85b3 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a2b61ae57ca5572 .logged {
  display: none;
}
#a2b61ae57ca5572 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a2b61ae57ca5572 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a2b61ae57ca5572 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a2b61ae57ca5572 .quick-menus > li:last-child::after {
  content: '';
}
#a2b61ae57ca5572 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a2b61ae57ca5572 .site-header {
  height: 72px;
}
#a2b61ae57ca5572 .uk-navbar-item,
#a2b61ae57ca5572 .uk-navbar-nav > li > a,
#a2b61ae57ca5572 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a2b61ae57ca5572 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a2b61ae57ca5572 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a2b61ae57ca5572 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a2b61ae57ca5572 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a2b61ae57ca5572 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a2b61ae57ca5572 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a2b61ae57ca5572 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a2b61ae57ca5572 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a2b61ae57ca5572 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a2b61ae57ca5572 .site-pc-navbar {
  background: #fff;
}
#a2b61ae57ca5572 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a2b61ae57ca5572 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a2b61ae57ca5572 .logo {
  display: inline-block;
}
#a2b61ae57ca5572 .menu-list {
  justify-content: flex-start;
}
#a2b61ae57ca5572 .submenu-items {
  display: inline-block;
}
#a2b61ae57ca5572 .submenu-items .sub-menu-item:last-child svg,
#a2b61ae57ca5572 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#abc5caf430a85b3 input,
#abc5caf430a85b3 button {
  border-radius: 20px;
}
#abc5caf430a85b3 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a4ccea5395a2f29 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a772fa18d0a050c {
  overflow: hidden;
}
#a772fa18d0a050c .img-wrap {
  transition: all 0.3s ease-in;
}
#a772fa18d0a050c .img-wrap:hover {
  transform: scale(1.2);
}
#aba9cadda8ae261 {
  overflow: hidden;
}
#aba9cadda8ae261 .img-wrap {
  transition: all 0.3s ease-in;
}
#aba9cadda8ae261 .img-wrap:hover {
  transform: scale(1.2);
}
#a3406afb98a57f4 {
  overflow: hidden;
}
#a3406afb98a57f4 .img-wrap {
  transition: all 0.3s ease-in;
}
#a3406afb98a57f4 .img-wrap:hover {
  transform: scale(1.2);
}
#ad344ad68eaf5fb > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a1330aa443aae3a .ap-category-filter ul li.active {
  border-color: #7ed321;
  color: #7ed321;
}
#a1330aa443aae3a .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a1330aa443aae3a .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a1330aa443aae3a .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a1330aa443aae3a .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a1330aa443aae3a .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a1330aa443aae3a .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a1330aa443aae3a .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a1330aa443aae3a .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a1330aa443aae3a .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a1330aa443aae3a .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a1330aa443aae3a .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a1330aa443aae3a .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a1330aa443aae3a .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a1330aa443aae3a .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a1330aa443aae3a .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a1330aa443aae3a .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a1330aa443aae3a .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a1330aa443aae3a .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a1330aa443aae3a .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a1330aa443aae3a .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a1330aa443aae3a .ele-article-list .pic-article .img_wrap {
  width: 20%;
  border-radius: 0px;
  overflow: hidden;
}
#a1330aa443aae3a .ele-article-list .pic-article .info .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  min-height: 40px;
}
#a1330aa443aae3a .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a1330aa443aae3a .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a1330aa443aae3a .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a1330aa443aae3a .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a1330aa443aae3a .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a1330aa443aae3a .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a1330aa443aae3a .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a1330aa443aae3a .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a1330aa443aae3a .ele-article-list .text-article:hover .time {
  color: auto;
}
#a4752ac3beaa21f .logged {
  display: none;
}
#a4752ac3beaa21f .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a4752ac3beaa21f .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a4752ac3beaa21f .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a4752ac3beaa21f .quick-menus > li:last-child::after {
  content: '';
}
#a4752ac3beaa21f .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a4752ac3beaa21f .site-header {
  height: 72px;
}
#a4752ac3beaa21f .uk-navbar-item,
#a4752ac3beaa21f .uk-navbar-nav > li > a,
#a4752ac3beaa21f .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a4752ac3beaa21f .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a4752ac3beaa21f .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a4752ac3beaa21f .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a4752ac3beaa21f .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a4752ac3beaa21f .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a4752ac3beaa21f .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a4752ac3beaa21f .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a4752ac3beaa21f .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a4752ac3beaa21f .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a4752ac3beaa21f .site-pc-navbar {
  background: #fff;
}
#a4752ac3beaa21f .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a4752ac3beaa21f .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a4752ac3beaa21f .logo {
  display: inline-block;
}
#a4752ac3beaa21f .menu-list {
  justify-content: flex-start;
}
#a4752ac3beaa21f .submenu-items {
  display: inline-block;
}
#a4752ac3beaa21f .submenu-items .sub-menu-item:last-child svg,
#a4752ac3beaa21f .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a725da4ef2afeef {
  min-height: 90vh;
  /* mobile */
}
#a725da4ef2afeef .search-highlight {
  background: yellow;
}
#a725da4ef2afeef .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a725da4ef2afeef .el-title {
  margin-bottom: 20px;
}
#a725da4ef2afeef .el-item:hover .el-title {
  color: #0f6ecd;
}
#a725da4ef2afeef .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a725da4ef2afeef .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a725da4ef2afeef .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a725da4ef2afeef .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a725da4ef2afeef .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a725da4ef2afeef .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a725da4ef2afeef .el-title {
    margin-bottom: 0;
  }
  #a725da4ef2afeef .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a725da4ef2afeef .category {
    font-size: 12px;
  }
  #a725da4ef2afeef .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#a9cc9abbf0a9b62 input,
#a9cc9abbf0a9b62 button {
  border-radius: 20px;
}
#a9cc9abbf0a9b62 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a4752ac3beaa21f .logged {
  display: none;
}
#a4752ac3beaa21f .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a4752ac3beaa21f .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a4752ac3beaa21f .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a4752ac3beaa21f .quick-menus > li:last-child::after {
  content: '';
}
#a4752ac3beaa21f .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a4752ac3beaa21f .site-header {
  height: 72px;
}
#a4752ac3beaa21f .uk-navbar-item,
#a4752ac3beaa21f .uk-navbar-nav > li > a,
#a4752ac3beaa21f .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a4752ac3beaa21f .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a4752ac3beaa21f .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a4752ac3beaa21f .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a4752ac3beaa21f .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a4752ac3beaa21f .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a4752ac3beaa21f .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a4752ac3beaa21f .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a4752ac3beaa21f .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a4752ac3beaa21f .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a4752ac3beaa21f .site-pc-navbar {
  background: #fff;
}
#a4752ac3beaa21f .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a4752ac3beaa21f .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a4752ac3beaa21f .logo {
  display: inline-block;
}
#a4752ac3beaa21f .menu-list {
  justify-content: flex-start;
}
#a4752ac3beaa21f .submenu-items {
  display: inline-block;
}
#a4752ac3beaa21f .submenu-items .sub-menu-item:last-child svg,
#a4752ac3beaa21f .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a498ba58ada1699 {
  /* 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------------------------*/
}
#a498ba58ada1699 * {
  font-family: 'PT Sans Caption', sans-serif, 'arial', 'Times New Roman';
}
#a498ba58ada1699 .error .clip .shadow {
  height: 180px;
  /*Contrall*/
}
#a498ba58ada1699 .error .clip:nth-of-type(2) .shadow {
  width: 130px;
  /*Contrall play with javascript*/
}
#a498ba58ada1699 .error .clip:nth-of-type(1) .shadow,
#a498ba58ada1699 .error .clip:nth-of-type(3) .shadow {
  width: 250px;
  /*Contrall*/
}
#a498ba58ada1699 .error .digit {
  width: 150px;
  /*Contrall*/
  height: 150px;
  /*Contrall*/
  line-height: 150px;
  /*Contrall*/
  font-size: 120px;
  font-weight: bold;
}
#a498ba58ada1699 .error h2 {
  font-size: 32px;
}
#a498ba58ada1699 .error .msg {
  top: -190px;
  left: 30%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 32px;
}
#a498ba58ada1699 .error span.triangle {
  top: 70%;
  right: 0%;
  border-left: 20px solid #535353;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
#a498ba58ada1699 .error .container-error-404 {
  margin-top: 10%;
  position: relative;
  height: 250px;
  padding-top: 40px;
  text-align: center;
}
#a498ba58ada1699 .error .container-error-404 .clip {
  display: inline-block;
  transform: skew(-45deg);
}
#a498ba58ada1699 .error .clip .shadow {
  overflow: hidden;
}
#a498ba58ada1699 .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);
}
#a498ba58ada1699 .error .clip:nth-of-type(3) .shadow:after,
#a498ba58ada1699 .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%;
}
#a498ba58ada1699 .error .clip:nth-of-type(3) .shadow:after {
  left: -8px;
}
#a498ba58ada1699 .error .digit {
  position: relative;
  top: 8%;
  color: white;
  background: #07B3F9;
  border-radius: 50%;
  display: inline-block;
  transform: skew(45deg);
}
#a498ba58ada1699 .error .clip:nth-of-type(2) .digit {
  left: -10%;
}
#a498ba58ada1699 .error .clip:nth-of-type(1) .digit {
  right: -20%;
}
#a498ba58ada1699 .error .clip:nth-of-type(3) .digit {
  left: -20%;
}
#a498ba58ada1699 .error h2 {
  color: #A2A2A2;
  font-weight: bold;
  padding-bottom: 20px;
}
#a498ba58ada1699 .error .msg {
  position: relative;
  z-index: 9999;
  display: block;
  background: #535353;
  color: #A2A2A2;
  border-radius: 50%;
  font-style: italic;
}
#a498ba58ada1699 .error .triangle {
  position: absolute;
  z-index: 999;
  transform: rotate(45deg);
  content: "";
  width: 0;
  height: 0;
}
@media (max-width: 767px) {
  #a498ba58ada1699 {
    /* Error Page */
    /* Error Page */
  }
  #a498ba58ada1699 .error .clip .shadow {
    height: 100px;
    /*Contrall*/
  }
  #a498ba58ada1699 .error .clip:nth-of-type(2) .shadow {
    width: 80px;
    /*Contrall play with javascript*/
  }
  #a498ba58ada1699 .error .clip:nth-of-type(1) .shadow,
  #a498ba58ada1699 .error .clip:nth-of-type(3) .shadow {
    width: 100px;
    /*Contrall*/
  }
  #a498ba58ada1699 .error .digit {
    width: 80px;
    /*Contrall*/
    height: 80px;
    /*Contrall*/
    line-height: 80px;
    /*Contrall*/
    font-size: 52px;
  }
  #a498ba58ada1699 .error h2 {
    font-size: 24px;
  }
  #a498ba58ada1699 .error .msg {
    top: -110px;
    left: 15%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  #a498ba58ada1699 .error span.triangle {
    top: 70%;
    right: -3%;
    border-left: 10px solid #535353;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  #a498ba58ada1699 .error .container-error-404 {
    height: 150px;
  }
}
#a498ba58ada1699 .overlay {
  position: relative;
  z-index: 20;
}
#a498ba58ada1699 .ground-color {
  background: white;
}
#a498ba58ada1699 .item-bg-color {
  background: #EAEAEA;
}
#a498ba58ada1699 .padding-top {
  padding-top: 10px;
}
#a498ba58ada1699 .padding-bottom {
  padding-bottom: 10px;
}
#a498ba58ada1699 .padding-vertical {
  padding-top: 10px;
  padding-bottom: 10px;
}
#a498ba58ada1699 .padding-horizontal {
  padding-left: 10px;
  padding-right: 10px;
}
#a498ba58ada1699 .padding-all {
  padding: 10px;
}
#a498ba58ada1699 .no-padding-left {
  padding-left: 0px;
}
#a498ba58ada1699 .no-padding-right {
  padding-right: 0px;
}
#a498ba58ada1699 .no-vertical-padding {
  padding-top: 0px;
  padding-bottom: 0px;
}
#a498ba58ada1699 .no-horizontal-padding {
  padding-left: 0px;
  padding-right: 0px;
}
#a498ba58ada1699 .no-padding {
  padding: 0px;
}
#a498ba58ada1699 .margin-top {
  margin-top: 10px;
}
#a498ba58ada1699 .margin-bottom {
  margin-bottom: 10px;
}
#a498ba58ada1699 .margin-right {
  margin-right: 10px;
}
#a498ba58ada1699 .margin-left {
  margin-left: 10px;
}
#a498ba58ada1699 .margin-horizontal {
  margin-left: 10px;
  margin-right: 10px;
}
#a498ba58ada1699 .margin-vertical {
  margin-top: 10px;
  margin-bottom: 10px;
}
#a498ba58ada1699 .margin-all {
  margin: 10px;
}
#a498ba58ada1699 .no-margin {
  margin: 0px;
}
#a498ba58ada1699 .no-vertical-margin {
  margin-top: 0px;
  margin-bottom: 0px;
}
#a498ba58ada1699 .no-horizontal-margin {
  margin-left: 0px;
  margin-right: 0px;
}
#a498ba58ada1699 .inside-col-shrink {
  margin: 0px 20px;
}
#a498ba58ada1699 hr {
  margin: 0px;
  padding: 0px;
  border-top: 1px dashed #999;
}
#ab548a77f8a3cc3 {
  /* 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------------------------*/
}
#ab548a77f8a3cc3 * {
  font-family: 'PT Sans Caption', sans-serif, 'arial', 'Times New Roman';
}
#ab548a77f8a3cc3 .error .clip .shadow {
  height: 180px;
  /*Contrall*/
}
#ab548a77f8a3cc3 .error .clip:nth-of-type(2) .shadow {
  width: 130px;
  /*Contrall play with javascript*/
}
#ab548a77f8a3cc3 .error .clip:nth-of-type(1) .shadow,
#ab548a77f8a3cc3 .error .clip:nth-of-type(3) .shadow {
  width: 250px;
  /*Contrall*/
}
#ab548a77f8a3cc3 .error .digit {
  width: 150px;
  /*Contrall*/
  height: 150px;
  /*Contrall*/
  line-height: 150px;
  /*Contrall*/
  font-size: 120px;
  font-weight: bold;
}
#ab548a77f8a3cc3 .error h2 {
  font-size: 32px;
}
#ab548a77f8a3cc3 .error .msg {
  top: -190px;
  left: 30%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 32px;
}
#ab548a77f8a3cc3 .error span.triangle {
  top: 70%;
  right: 0%;
  border-left: 20px solid #535353;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
#ab548a77f8a3cc3 .error .container-error-404 {
  margin-top: 10%;
  position: relative;
  height: 250px;
  padding-top: 40px;
  text-align: center;
}
#ab548a77f8a3cc3 .error .container-error-404 .clip {
  display: inline-block;
  transform: skew(-45deg);
}
#ab548a77f8a3cc3 .error .clip .shadow {
  overflow: hidden;
}
#ab548a77f8a3cc3 .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);
}
#ab548a77f8a3cc3 .error .clip:nth-of-type(3) .shadow:after,
#ab548a77f8a3cc3 .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%;
}
#ab548a77f8a3cc3 .error .clip:nth-of-type(3) .shadow:after {
  left: -8px;
}
#ab548a77f8a3cc3 .error .digit {
  position: relative;
  top: 8%;
  color: white;
  background: #07B3F9;
  border-radius: 50%;
  display: inline-block;
  transform: skew(45deg);
}
#ab548a77f8a3cc3 .error .clip:nth-of-type(2) .digit {
  left: -10%;
}
#ab548a77f8a3cc3 .error .clip:nth-of-type(1) .digit {
  right: -20%;
}
#ab548a77f8a3cc3 .error .clip:nth-of-type(3) .digit {
  left: -20%;
}
#ab548a77f8a3cc3 .error h2 {
  color: #A2A2A2;
  font-weight: bold;
  padding-bottom: 20px;
}
#ab548a77f8a3cc3 .error .msg {
  position: relative;
  z-index: 9999;
  display: block;
  background: #535353;
  color: #A2A2A2;
  border-radius: 50%;
  font-style: italic;
}
#ab548a77f8a3cc3 .error .triangle {
  position: absolute;
  z-index: 999;
  transform: rotate(45deg);
  content: "";
  width: 0;
  height: 0;
}
@media (max-width: 767px) {
  #ab548a77f8a3cc3 {
    /* Error Page */
    /* Error Page */
  }
  #ab548a77f8a3cc3 .error .clip .shadow {
    height: 100px;
    /*Contrall*/
  }
  #ab548a77f8a3cc3 .error .clip:nth-of-type(2) .shadow {
    width: 80px;
    /*Contrall play with javascript*/
  }
  #ab548a77f8a3cc3 .error .clip:nth-of-type(1) .shadow,
  #ab548a77f8a3cc3 .error .clip:nth-of-type(3) .shadow {
    width: 100px;
    /*Contrall*/
  }
  #ab548a77f8a3cc3 .error .digit {
    width: 80px;
    /*Contrall*/
    height: 80px;
    /*Contrall*/
    line-height: 80px;
    /*Contrall*/
    font-size: 52px;
  }
  #ab548a77f8a3cc3 .error h2 {
    font-size: 24px;
  }
  #ab548a77f8a3cc3 .error .msg {
    top: -110px;
    left: 15%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  #ab548a77f8a3cc3 .error span.triangle {
    top: 70%;
    right: -3%;
    border-left: 10px solid #535353;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  #ab548a77f8a3cc3 .error .container-error-404 {
    height: 150px;
  }
}
#ab548a77f8a3cc3 .overlay {
  position: relative;
  z-index: 20;
}
#ab548a77f8a3cc3 .ground-color {
  background: white;
}
#ab548a77f8a3cc3 .item-bg-color {
  background: #EAEAEA;
}
#ab548a77f8a3cc3 .padding-top {
  padding-top: 10px;
}
#ab548a77f8a3cc3 .padding-bottom {
  padding-bottom: 10px;
}
#ab548a77f8a3cc3 .padding-vertical {
  padding-top: 10px;
  padding-bottom: 10px;
}
#ab548a77f8a3cc3 .padding-horizontal {
  padding-left: 10px;
  padding-right: 10px;
}
#ab548a77f8a3cc3 .padding-all {
  padding: 10px;
}
#ab548a77f8a3cc3 .no-padding-left {
  padding-left: 0px;
}
#ab548a77f8a3cc3 .no-padding-right {
  padding-right: 0px;
}
#ab548a77f8a3cc3 .no-vertical-padding {
  padding-top: 0px;
  padding-bottom: 0px;
}
#ab548a77f8a3cc3 .no-horizontal-padding {
  padding-left: 0px;
  padding-right: 0px;
}
#ab548a77f8a3cc3 .no-padding {
  padding: 0px;
}
#ab548a77f8a3cc3 .margin-top {
  margin-top: 10px;
}
#ab548a77f8a3cc3 .margin-bottom {
  margin-bottom: 10px;
}
#ab548a77f8a3cc3 .margin-right {
  margin-right: 10px;
}
#ab548a77f8a3cc3 .margin-left {
  margin-left: 10px;
}
#ab548a77f8a3cc3 .margin-horizontal {
  margin-left: 10px;
  margin-right: 10px;
}
#ab548a77f8a3cc3 .margin-vertical {
  margin-top: 10px;
  margin-bottom: 10px;
}
#ab548a77f8a3cc3 .margin-all {
  margin: 10px;
}
#ab548a77f8a3cc3 .no-margin {
  margin: 0px;
}
#ab548a77f8a3cc3 .no-vertical-margin {
  margin-top: 0px;
  margin-bottom: 0px;
}
#ab548a77f8a3cc3 .no-horizontal-margin {
  margin-left: 0px;
  margin-right: 0px;
}
#ab548a77f8a3cc3 .inside-col-shrink {
  margin: 0px 20px;
}
#ab548a77f8a3cc3 hr {
  margin: 0px;
  padding: 0px;
  border-top: 1px dashed #999;
}
#a9cc9abbf0a9b62 input,
#a9cc9abbf0a9b62 button {
  border-radius: 20px;
}
#a9cc9abbf0a9b62 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a07c8a533ba4fd0 .login-main {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(12, 1, 4, 0.05);
}
#a07c8a533ba4fd0 .switch_item {
  margin-right: 10px;
}
#a07c8a533ba4fd0 a.switch_item:hover {
  text-decoration: underline;
}
#a07c8a533ba4fd0 .slider {
  width: 420px;
  height: 600px;
}
#a07c8a533ba4fd0 .uk-slideshow-items {
  height: 100%;
}
#a07c8a533ba4fd0 .uk-slideshow-items a {
  width: 100%;
  height: 100%;
  display: block;
}
#a07c8a533ba4fd0 .login-wrap {
  width: 100%;
  height: 100%;
}
#a07c8a533ba4fd0 .uk-dotnav > * > * {
  background: #fff;
  border-color: #fff;
  opacity: .5;
}
#a07c8a533ba4fd0 .uk-dotnav > .uk-active > * {
  border-color: #0076fe;
  background: #0076fe;
}
#a07c8a533ba4fd0 .phone-login-box {
  margin: 40px auto 40px;
}
#a07c8a533ba4fd0 .login-header {
  margin-bottom: 24px;
}
#a07c8a533ba4fd0 .login-header h4 {
  font-size: 22px;
  font-weight: bolder;
  line-height: 1;
  padding-left: 20px;
  border-left: 4px solid #0076fe;
}
#a07c8a533ba4fd0 .input-item {
  width: 330px;
  height: 45px;
  background-color: #f0f2f7;
  border-radius: 22px;
  border: solid 1px #e3e8f0;
  position: relative;
  overflow: hidden;
}
#a07c8a533ba4fd0 .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;
}
#a07c8a533ba4fd0 .forget_password {
  cursor: pointer;
}
#a07c8a533ba4fd0 .forget_password:hover {
  color: #7ed321;
}
#a07c8a533ba4fd0 .input-item input.error,
#a07c8a533ba4fd0 .input-item input.error::placeholder {
  color: #fc4343;
}
#a07c8a533ba4fd0 .input-item input::placeholder {
  color: #999;
}
#a07c8a533ba4fd0 .input-item .icon {
  position: absolute;
  left: 10px;
  top: 12px;
  fill: #ccc;
  width: 20px;
}
#a07c8a533ba4fd0 .form-item {
  margin: 24px 0;
}
#a07c8a533ba4fd0 .verifycode-input .input-item {
  width: 200px;
  float: left;
}
#a07c8a533ba4fd0 .send-code {
  float: left;
  margin-left: 20px;
}
#a07c8a533ba4fd0 .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;
}
#a07c8a533ba4fd0 .submit {
  width: 330px;
  height: 45px;
  background-color: #0076fe;
  border-radius: 22px;
  font-size: 18px;
  line-height: 45px;
  color: #fff;
  cursor: pointer;
}
#a07c8a533ba4fd0 .error {
  color: #fc4343;
  font-size: 12px;
  padding-left: 10px;
  display: block;
  max-width: 300px;
}
#a07c8a533ba4fd0 .login_btn_wrap {
  text-align: center;
}
#a07c8a533ba4fd0 .login_btn_wrap .submit {
  display: block;
  margin-bottom: 10px;
}
#a07c8a533ba4fd0 .input-item .pwd-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  font-size: 16px;
  color: #999;
  cursor: pointer;
}
#a07c8a533ba4fd0 .input-item .pwd-toggle:hover {
  color: currentColor;
}
#aae4da3da7a6abe input,
#aae4da3da7a6abe button {
  border-radius: 20px;
}
#aae4da3da7a6abe .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#abd33a6ba0a0022 .logged {
  display: none;
}
#abd33a6ba0a0022 .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#abd33a6ba0a0022 .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#abd33a6ba0a0022 .quick-menus > li:after {
  content: '|';
  color: #888;
}
#abd33a6ba0a0022 .quick-menus > li:last-child::after {
  content: '';
}
#abd33a6ba0a0022 .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#abd33a6ba0a0022 .site-header {
  height: 72px;
}
#abd33a6ba0a0022 .uk-navbar-item,
#abd33a6ba0a0022 .uk-navbar-nav > li > a,
#abd33a6ba0a0022 .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#abd33a6ba0a0022 .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#abd33a6ba0a0022 .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#abd33a6ba0a0022 .uk-navbar-center {
  display: inline-block;
  position: static;
}
#abd33a6ba0a0022 .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#abd33a6ba0a0022 .ap-search-form {
  display: inline-block;
  width: 100%;
}
#abd33a6ba0a0022 .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#abd33a6ba0a0022 .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#abd33a6ba0a0022 .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#abd33a6ba0a0022 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#abd33a6ba0a0022 .site-pc-navbar {
  background: #fff;
}
#abd33a6ba0a0022 .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#abd33a6ba0a0022 .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#abd33a6ba0a0022 .logo {
  display: inline-block;
}
#abd33a6ba0a0022 .menu-list {
  justify-content: flex-start;
}
#abd33a6ba0a0022 .submenu-items {
  display: inline-block;
}
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child svg,
#abd33a6ba0a0022 .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a25c5a107cac8fb .sidebar {
  width: 150px;
  max-width: 150px;
  height: 100%;
}
#a25c5a107cac8fb .nav-items {
  background: #fafafa;
  min-height: 200px;
}
#a25c5a107cac8fb .phone-info {
  background: #fafafa;
  margin-top: 10px;
  font-size: 12px;
  padding: 22px 4px 20px 16px;
  line-height: 1.5;
  color: #666;
}
#a25c5a107cac8fb .phone-info .phone {
  line-height: 1.5;
  color: #333;
  font-size: 18px;
  font-family: Arial;
}
#a25c5a107cac8fb .nav-type {
  line-height: 37px;
  padding-left: 20px;
  cursor: pointer;
}
#a25c5a107cac8fb .nav-type.active {
  color: #FFF;
  cursor: default;
  background: #ff658c;
}
#a25c5a107cac8fb .content {
  padding-bottom: 60px;
  color: #666;
  border: 1px solid #f0f0f0;
  min-height: 400px;
}
#a25c5a107cac8fb .nav-list {
  padding: 0 20px;
}
#a25c5a107cac8fb .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;
}
#a25c5a107cac8fb .nav-list .nav-item.active {
  background-color: #ff5c89;
  color: #fff;
  cursor: default;
}
#a25c5a107cac8fb .order-item {
  margin-top: 10px;
  background: #fff;
  padding: 0 20px;
}
#a25c5a107cac8fb .order-item:hover {
  background: #f7f7f7;
}
#a25c5a107cac8fb .del-order {
  cursor: pointer;
}
#a25c5a107cac8fb .order-item .order-title {
  line-height: 40px;
  color: #666;
  font-size: 13px;
  border-bottom: 1px solid #f7f7f7;
}
#a25c5a107cac8fb .goods-item {
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
}
#a25c5a107cac8fb .order-goods-list .goods-item:last-child {
  border-bottom: none;
}
#a25c5a107cac8fb .goods-item img {
  width: 100px;
  height: 100px;
  background: #f4f4f4;
}
#a25c5a107cac8fb .goods-item .goods-info {
  padding: 0 15px;
}
#a25c5a107cac8fb .appoint-time span {
  color: #e4393c;
  background-color: #f9eeee;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 2px;
  line-height: 1;
}
#a25c5a107cac8fb .appoint-time {
  margin-bottom: 4px;
}
#a25c5a107cac8fb .appoint-name {
  color: #333;
  font-size: 14px;
}
#a25c5a107cac8fb .appoint-info {
  padding: 0 15px;
  font-size: 12px;
  color: #888;
}
#a25c5a107cac8fb .goods-item .goods-name {
  color: #333;
}
#a25c5a107cac8fb .goods-item .sku-name {
  color: #999;
  font-size: 12px;
}
#a25c5a107cac8fb .order-total-info {
  padding-bottom: 10px;
  color: #999;
  font-size: 12px;
}
#a25c5a107cac8fb .order-total-info .total-price {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
}
#a25c5a107cac8fb .load-more {
  font-size: 12px;
  padding-bottom: 15px;
  color: #999;
}
#a25c5a107cac8fb .order-btns {
  padding: 10px 0;
  border-top: 1px solid #f7f7f7;
}
#a25c5a107cac8fb .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;
}
#a25c5a107cac8fb .order-btns .btn-warn {
  color: #fff;
  background: #eb3c3c;
  border-color: #eb3c3c;
  cursor: pointer;
}
#a25c5a107cac8fb .appoint-info .title {
  font-weight: bold;
  color: #333;
}
#a25c5a107cac8fb .coupon-item {
  margin: 10px 30px;
  display: inline-flex;
  width: 42%;
}
#a25c5a107cac8fb .setting-form {
  padding: 30px 20px;
}
#a25c5a107cac8fb .setting-item {
  margin-bottom: 20px;
  font-size: 13px;
  color: #666;
  line-height: 18px;
}
#a25c5a107cac8fb .setting-item .label {
  display: inline-block;
  margin-right: 6px;
  text-align: right;
  min-width: 120px;
}
#a25c5a107cac8fb .setting-item .input-text {
  border: 1px solid #ccc;
  line-height: 28px;
  padding: 0 10px;
  min-width: 200px;
  font-size: 13px;
}
#a25c5a107cac8fb .setting-form .setting-btns {
  margin-left: 130px;
}
#a25c5a107cac8fb .setting-form .uk-button {
  height: 30px;
  line-height: 30px;
  margin-right: 8px;
}
#a25c5a107cac8fb .setting-wrap {
  position: relative;
}
#a25c5a107cac8fb .user-info {
  border: 1px solid #ccc;
  width: 300px;
  position: absolute;
  right: 80px;
  top: 30px;
  color: #666;
  padding: 10px;
  font-size: 13px;
  background: #f9f9f9;
}
#a25c5a107cac8fb .user-info .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 10px;
}
#a25c5a107cac8fb .user-info .levels {
  color: #888;
  font-size: 12px;
}
#a25c5a107cac8fb .address-wrap {
  padding: 30px 20px;
}
#a25c5a107cac8fb .addr-header {
  font-size: 18px;
  color: #333;
  margin: 0;
}
#a25c5a107cac8fb .addr-detail {
  border-bottom: 1px solid #ececec;
  margin-bottom: 10px;
}
#a25c5a107cac8fb .addr-list {
  min-height: 200px;
}
#a25c5a107cac8fb .addr-detail .addr-item-name,
#a25c5a107cac8fb .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;
}
#a25c5a107cac8fb .addr-detail .addr-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
#a25c5a107cac8fb .addr-detail .addr-item-name {
  color: #e93b3d;
  border-color: #e93b3d;
}
#a25c5a107cac8fb .addr-detail {
  padding: 12px 0;
  flex: 1;
}
#a25c5a107cac8fb .op-btns a {
  font-size: 12px;
  color: #e93b3d;
  margin-left: 6px;
}
#a25c5a107cac8fb .add-addr {
  height: 32px;
  line-height: 30px;
}
#a25c5a107cac8fb .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;
}
#a25c5a107cac8fb .publish-item {
  cursor: default;
  min-height: 120px;
}
#a25c5a107cac8fb .publish-item .status-0 {
  background-image: url(/resources/sys/img/icons/info-unread.png);
}
#a25c5a107cac8fb .publish-item .status-1 {
  background-image: url(/resources/sys/img/icons/info-fail.png);
}
#a25c5a107cac8fb .publish-item .btns a {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 2px;
  color: #fff;
  background: #7ed321;
}
#a25c5a107cac8fb .publish-item .btns .del-info {
  background: #ccc;
  color: #999;
}
#aae4da3da7a6abe input,
#aae4da3da7a6abe button {
  border-radius: 20px;
}
#aae4da3da7a6abe .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a4752ac3beaa21f .logged {
  display: none;
}
#a4752ac3beaa21f .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a4752ac3beaa21f .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a4752ac3beaa21f .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a4752ac3beaa21f .quick-menus > li:last-child::after {
  content: '';
}
#a4752ac3beaa21f .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a4752ac3beaa21f .site-header {
  height: 72px;
}
#a4752ac3beaa21f .uk-navbar-item,
#a4752ac3beaa21f .uk-navbar-nav > li > a,
#a4752ac3beaa21f .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a4752ac3beaa21f .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a4752ac3beaa21f .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a4752ac3beaa21f .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a4752ac3beaa21f .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a4752ac3beaa21f .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a4752ac3beaa21f .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a4752ac3beaa21f .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a4752ac3beaa21f .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a4752ac3beaa21f .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a4752ac3beaa21f .site-pc-navbar {
  background: #fff;
}
#a4752ac3beaa21f .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a4752ac3beaa21f .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a4752ac3beaa21f .logo {
  display: inline-block;
}
#a4752ac3beaa21f .menu-list {
  justify-content: flex-start;
}
#a4752ac3beaa21f .submenu-items {
  display: inline-block;
}
#a4752ac3beaa21f .submenu-items .sub-menu-item:last-child svg,
#a4752ac3beaa21f .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#a7f06a4b98a51a4 {
  min-height: 90vh;
  /* mobile */
}
#a7f06a4b98a51a4 .search-highlight {
  background: yellow;
}
#a7f06a4b98a51a4 .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a7f06a4b98a51a4 .el-title {
  margin-bottom: 20px;
}
#a7f06a4b98a51a4 .el-item:hover .el-title {
  color: #0f6ecd;
}
#a7f06a4b98a51a4 .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a7f06a4b98a51a4 .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a7f06a4b98a51a4 .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a7f06a4b98a51a4 .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a7f06a4b98a51a4 .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a7f06a4b98a51a4 .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a7f06a4b98a51a4 .el-title {
    margin-bottom: 0;
  }
  #a7f06a4b98a51a4 .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a7f06a4b98a51a4 .category {
    font-size: 12px;
  }
  #a7f06a4b98a51a4 .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#a9cc9abbf0a9b62 input,
#a9cc9abbf0a9b62 button {
  border-radius: 20px;
}
#a9cc9abbf0a9b62 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
#a4752ac3beaa21f .logged {
  display: none;
}
#a4752ac3beaa21f .header-topbar {
  position: relative;
  z-index: 30;
  height: 30px;
  font-size: 12px;
  color: #888;
  background: #efefef;
}
#a4752ac3beaa21f .header-topbar ul > li {
  display: inline-block;
  position: relative;
  align-items: center;
}
#a4752ac3beaa21f .quick-menus > li:after {
  content: '|';
  color: #888;
}
#a4752ac3beaa21f .quick-menus > li:last-child::after {
  content: '';
}
#a4752ac3beaa21f .header-topbar ul a {
  color: #888;
  padding: 0 4px;
  line-height: 30px;
}
#a4752ac3beaa21f .site-header {
  height: 72px;
}
#a4752ac3beaa21f .uk-navbar-item,
#a4752ac3beaa21f .uk-navbar-nav > li > a,
#a4752ac3beaa21f .uk-navbar-toggle {
  height: 72px;
  line-height: 72px;
  min-height: 72px;
  padding: 0;
  position: relative;
  margin: 0 25px;
}
#a4752ac3beaa21f .uk-navbar-nav > li.active > a {
  color: #7ed321;
}
#a4752ac3beaa21f .uk-navbar-nav > li:last-child a::after {
  display: none;
}
#a4752ac3beaa21f .uk-navbar-center {
  display: inline-block;
  position: static;
}
#a4752ac3beaa21f .uk-navbar-sticky .site-header {
  min-height: 72px;
}
#a4752ac3beaa21f .ap-search-form {
  display: inline-block;
  width: 100%;
}
#a4752ac3beaa21f .sub-menu-item {
  font-size: 14px;
  padding: 0 15px;
  line-height: 42px;
  display: inline-block;
  color: #262626;
}
#a4752ac3beaa21f .menu-item > a > svg {
  display: inline-block;
  width: 16px;
  margin: 0;
  margin-right: 4px;
}
#a4752ac3beaa21f .nav-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  z-index: 500;
}
#a4752ac3beaa21f .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #fff;
}
#a4752ac3beaa21f .site-pc-navbar {
  background: #fff;
}
#a4752ac3beaa21f .logo-text {
  font-size: 12px;
  color: #0A011E;
  line-height: 1.5;
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  opacity: .3;
  position: relative;
}
#a4752ac3beaa21f .logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #999;
}
#a4752ac3beaa21f .logo {
  display: inline-block;
}
#a4752ac3beaa21f .menu-list {
  justify-content: flex-start;
}
#a4752ac3beaa21f .submenu-items {
  display: inline-block;
}
#a4752ac3beaa21f .submenu-items .sub-menu-item:last-child svg,
#a4752ac3beaa21f .submenu-items .sub-menu-item:last-child img {
  border-right: none;
}
#aef1aa779aadd5a .comment-detail {
  min-height: 600px;
}
#aef1aa779aadd5a table {
  background: #f9fdff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#aef1aa779aadd5a table th,
#aef1aa779aadd5a table td {
  padding: 10px 20px;
  border: #ececec 1px solid;
  line-height: 1.8em;
}
#aef1aa779aadd5a table th {
  padding-left: 0;
  text-align: right;
  background: #eff7fe;
  font-weight: normal;
  color: #333;
}
#aef1aa779aadd5a .red {
  color: #F00!important;
}
#aef1aa779aadd5a .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;
}
#acd1aa2f49a0150 .comment-detail {
  min-height: 600px;
}
#acd1aa2f49a0150 table {
  background: #f9fdff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#acd1aa2f49a0150 table th,
#acd1aa2f49a0150 table td {
  padding: 10px 20px;
  border: #ececec 1px solid;
  line-height: 1.8em;
}
#acd1aa2f49a0150 table th {
  padding-left: 0;
  text-align: right;
  background: #eff7fe;
  font-weight: normal;
  color: #333;
}
#acd1aa2f49a0150 .red {
  color: #F00!important;
}
#acd1aa2f49a0150 .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;
}
#a9cc9abbf0a9b62 input,
#a9cc9abbf0a9b62 button {
  border-radius: 20px;
}
#a9cc9abbf0a9b62 .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
