.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Microsoft Yahei";
}
/* ========================================================================
   Component: Base
 ========================================================================== */
/*
 * 1. Set `font-size` to support `rem` units
 *    Not using `font` property because a leading hyphen (e.g. -apple-system) causes the font to break in IE11 and Edge
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 * 3. Style
 */
html {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 3 */
  color: #666;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
/*
   * Removes default margin.
   */
body {
  margin: 0;
  font-size: 14px;
  color: #666;
  background-color: #f5f7f9;
}
/* Links
   ========================================================================== */
/*
   * 1. Remove the gray background on active links in IE 10.
   * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
   */
a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects;
}
/*
   * Remove the outline on focused links when they are also active or hovered
   */
a:active,
a:hover {
  outline: none;
}
/*
   * Style
   */
a,
.uk-link {
  color: #93353c;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.uk-link:hover {
  color: #74262b;
}
/* 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: #74262b;
}
/* 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: #93353c;
  text-shadow: none;
}
::selection {
  background: #93353c;
  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 #93353c;
}
/* Small
   ========================================================================== */
/*
   * Reset child height, caused by `inline-block`
   */
.uk-divider-small {
  line-height: 0;
}
.uk-divider-small::after {
  border-top: 2px solid #93353c;
}
/* ========================================================================
     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: #93353c;
  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: #93353c;
  outline: none;
}
/* OnClick + Active */
.uk-icon-button:active,
.uk-active > .uk-icon-button {
  background-color: #93353c;
  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: #93353c;
  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: #93353c;
}
/* OnClick + Active */
.uk-button-default:active,
.uk-button-default.uk-active {
  background-color: #93353c;
  color: #ffffff;
}
/*
   * Primary
   */
.uk-button-primary {
  background-color: #93353c;
  color: #ffffff;
}
/* Hover + Focus */
.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: #2b2a2a;
  color: #ffffff;
}
/* OnClick + Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
  color: #ffffff;
}
/*
   * Secondary
   */
.uk-button-secondary {
  color: #666;
  border: 1px solid #2b2a2a;
}
/* OnClick + Active */
.uk-button-secondary:active,
.uk-button-secondary.uk-active {
  background-color: #93353c;
  color: #ffffff;
  border-color: #93353c;
}
/*
   * 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: #93353c;
}
/* 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: #93353c;
}
/* Hover + Focus */
.uk-button-link:hover,
.uk-button-link:focus {
  color: #74262b;
}
/* 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: #93353c;
}
/*
   * Secondary
   */
.uk-section-secondary,
.ap-container-secondary .uk-container {
  background: #2b2a2a;
}
.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: #93353c;
}
/*
   * Secondary
   */
.uk-tile-secondary {
  background: #2b2a2a;
}
/* ========================================================================
     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: #93353c;
  color: #ffffff;
}
.uk-card-primary .uk-card-title {
  color: #ffffff;
}
/*
   * Secondary
   */
.uk-card-secondary {
  background: #2b2a2a;
  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: #93353c;
  background-color: transparent;
}
/* ========================================================================
     Component: Marker
   ========================================================================== */
/*
   * Addopts `uk-icon`
   */
.uk-marker {
  padding: 5px;
  background: #2b2a2a;
  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: #93353c;
}
/*
   * 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: #93353c;
  color: #ffffff;
}
/*
   * Required for `a`
   */
.uk-badge:hover,
.uk-badge:focus {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
/* ========================================================================
     Component: Label
   ========================================================================== */
.uk-label {
  background: #93353c;
  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: #93353c;
  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: #93353c;
}
/* 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: #93353c;
  outline: none;
}
.uk-navbar-nav > li > a:hover::before {
  background-color: currentColor;
}
/* OnClick */
.uk-navbar-nav > li.uk-active > a::before {
  background-color: #93353c;
}
/* Item
   ========================================================================== */
.uk-navbar-item {
  color: #666;
}
/* Toggle
   ========================================================================== */
.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus,
.uk-navbar-toggle.uk-open {
  color: #93353c;
}
/* 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: #93353c;
  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: #93353c;
  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: #93353c;
  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: #93353c;
}
/* 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: #93353c;
  border-color: transparent;
}
/* Active */
.uk-dotnav > .uk-active > * {
  background-color: #93353c;
  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: #93353c;
}
/*
   * 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: #93353c;
}
/* 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: #93353c;
}
/*
   * 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: #93353c;
  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: #93353c;
}
.uk-progress::-moz-progress-bar {
  background-color: #93353c;
}
.uk-progress::-ms-fill {
  background-color: #93353c;
}
/* ========================================================================
     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: #93353c !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: #93353c !important;
}
@supports (-webkit-background-clip: text) {
  .uk-text-background {
    background-color: #93353c;
  }
}
/* ========================================================================
     Component: Background
   ========================================================================== */
/* Color
   ========================================================================== */
.uk-background-default {
  background-color: #ffffff;
}
.uk-background-muted {
  background-color: #f8f8f8;
}
.uk-background-primary {
  background-color: #93353c;
}
.uk-background-secondary {
  background-color: #2b2a2a;
}
/* ========================================================================
     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: #93353c;
  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: #93353c;
  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: #93353c;
  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: #93353c;
}
.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(43, 42, 42, 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: #93353c;
}
.uk-section-muted .uk-navbar-container.uk-navbar-sticky {
  background-color: #f8f8f8;
}
.uk-section-primary .uk-navbar-container.uk-navbar-sticky {
  background-color: #93353c;
}
.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: #93353c;
  border-color: #93353c;
}
.category .uk-pagination li:hover,
.ap-pagination li:hover,
.dynamic-pagination li:hover {
  border-color: #93353c;
}
/* ========================================================================
   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: #6e272d;
}
.ap-list-filter dd a.active {
  background-color: #93353c;
  color: #fff;
  border-radius: 2px;
}
.ap-filter-dropdown .filter-item-wrap.open,
.ap-filter-dropdown .filter-item.active {
  color: #93353c;
}
.category li a.active {
  color: #93353c;
}
.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: #93353c;
}
.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: #93353c;
  border: 1px solid rgba(147, 53, 60, 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: #93353c;
}
form .step .ui-step.active .ui-step-title {
  color: #93353c;
}
/**************** ×Ô¶¨Òå°æ¿éÑùÊ½ ********************/
.btn-effect-1 {
  border-color: #93353c;
  background-color: #93353c;
  color: #fff;
}
.header-effect-6 [data-item='title']::before {
  background-color: #93353c;
}
.header-effect-7 [data-item='subTitle'] {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  background-color: #93353c;
  color: #fff !important;
}
.btn-effect-2 {
  background-color: transparent;
  border: 1px solid #93353c;
  color: #93353c;
}
.btn-effect-2:hover {
  background-color: #93353c;
}
.uk-button.btn-effect-5 {
  background-color: #93353c;
  box-shadow: 0 0 15px rgba(147, 53, 60, 0.8);
}
.header-effect-3 [data-item='title']::after {
  background: #93353c;
}
.header-effect-6 [data-item='title']::before {
  background-color: #93353c;
}
#ace9face15aaec3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
@media (min-width: 1200px) {
  #a1daca820ba91d1 .uk-container {
    padding: 0 60px;
  }
}
#a1daca820ba91d1 .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 #93353c;
}
#a1daca820ba91d1 .comments_count {
  display: block;
  padding: 14px 0 18px;
  text-align: center;
  background-color: #e7ecee;
}
#a1daca820ba91d1 .uk-card {
  padding: 10px;
}
#a1daca820ba91d1 .tag-link {
  background-color: #919292;
  color: #fff;
  display: inline-block;
  font-weight: 400;
  font-size: 13px !important;
}
#a1daca820ba91d1 .uk-list a.active,
#a1daca820ba91d1 .uk-list a:hover {
  color: #93353c;
  text-decoration: none;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ace9face15aaec3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a64cda85c6af372 .sidebar {
  width: 300px;
  margin-left: 20px;
}
#a64cda85c6af372 .sidebar.left {
  margin-left: 0;
  margin-right: 20px;
}
#a64cda85c6af372 .abstract {
  white-space: pre-wrap;
}
@media (max-width: 640px) {
  #a64cda85c6af372 .sidebar {
    width: 100%;
    margin: 0 0 15px;
  }
  #a64cda85c6af372 .uk-container {
    padding: 0;
  }
  #a64cda85c6af372 .sidebar {
    padding: 10px;
  }
}
#a64cda85c6af372 .search-form {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: block;
}
#a64cda85c6af372 .search-form .search-input {
  width: 100%;
  height: 34px;
  padding: 5px 52px 5px 10px;
  font-size: 14px;
  color: #333;
  border: 1px solid #efefef;
}
#a64cda85c6af372 .search-form .submit {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  width: 42px;
  height: 34px;
  padding: 0;
  font-family: FontAwesome;
  content: '\f13d';
  font-size: 16px;
  line-height: 34px;
  text-align: center;
  color: #fff;
  background-color: #93353c;
  cursor: pointer;
}
#a64cda85c6af372 .content-tags a {
  display: inline-block;
  margin: 0 10px 5px 0;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 1.2;
  color: #666;
  border: 1px solid #999;
  border-radius: 3px;
  transition: all .3s ease;
}
#a64cda85c6af372 .content-tags a:hover {
  background: #93353c;
  color: #fff;
  border-color: #93353c;
}
#a64cda85c6af372 .abstract,
#a64cda85c6af372 .copyright {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #999;
  border: 1px solid #efefef;
  background: #fbfbfb;
  border-radius: 3px;
}
#a64cda85c6af372 .copyright a {
  color: #999;
  word-break: break-all;
}
#a64cda85c6af372 .detail-content {
  font-size: 16px;
  color: #444;
}
#a64cda85c6af372 .detail-content img {
  margin-bottom: 10px;
}
#a64cda85c6af372 .detail-content table {
  font-size: 13px;
}
#a64cda85c6af372 .phone {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
#a64cda85c6af372 .hot-list,
#a64cda85c6af372 .new-list {
  padding: 12px;
}
#a64cda85c6af372 .new-list a:hover,
#a64cda85c6af372 .hot-list a:hover {
  color: #74262b;
}
#a64cda85c6af372 .hot-item .thumb {
  display: inline-block;
  width: 100px;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
#a64cda85c6af372 .hot-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s ease-out 0s;
}
#a64cda85c6af372 .hot-item:hover a {
  color: #74262b;
}
#a64cda85c6af372 .panel-title {
  position: relative;
  padding-left: 10px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
#a64cda85c6af372 .panel-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #93353c;
  content: "";
}
#a64cda85c6af372 .content-header {
  padding-bottom: 10px;
}
#a64cda85c6af372 .item-title {
  color: #333;
}
#a64cda85c6af372 input::placeholder {
  color: #999;
}
#a64cda85c6af372 .datetime {
  color: #999;
}
#a64cda85c6af372 .new-item a {
  padding-left: 25px;
}
#a64cda85c6af372 .new-item span {
  background-color: #f0f0f0;
  display: inline-block;
  font-size: 13px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  color: #999;
  text-align: center;
  position: absolute;
  left: 0;
  top: 3px;
}
#a64cda85c6af372 .siblings a {
  color: #444;
  line-height: 2;
}
#a64cda85c6af372 .siblings a:hover {
  color: #74262b;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a446fae78fa249d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a3452ae911a6be9 .el-process-item {
  position: relative;
}
#a3452ae911a6be9 .el-process-item-index {
  height: 50px;
  width: 50px;
  line-height: 50px;
  margin: 0 auto;
  border: 1px solid #999999;
  font-weight: 700;
  font-size: 26px;
}
#a3452ae911a6be9 .el-process-item-linker {
  position: absolute;
  height: 1px;
  top: 25px;
  left: calc(50% - -52px);
  overflow: hidden;
  background: #999999;
  width: calc(100% - 82px);
}
@media (max-width: 960px) {
  #a3452ae911a6be9 .el-process-item .el-process-item-linker {
    display: none;
  }
}
#a2807a5d13a04c9 .card-content {
  padding-left: 70px;
}
#a2807a5d13a04c9 .title {
  color: #777;
  font-size: 16px;
  font-weight: bolder;
  margin-bottom: 10px;
  display: block;
}
#a2807a5d13a04c9 .date-post {
  float: left;
  border: 2px solid #93353c;
  padding: 12px 10px 9px;
  text-align: center;
}
#a2807a5d13a04c9 .date-post span {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #93353c;
  text-transform: uppercase;
}
#a2807a5d13a04c9 .card-metas li {
  display: block;
  list-style: none;
  line-height: 2;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1d30a6173af72d .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 50px;font-size: 26px;justify-content: center;}#a1d30a6173af72d .ele-wrap:hover {border-color: rgba(251, 251, 251, 1);background-color: #fff;color: #ffffff;}#ada44a2f5da0eaa > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#ada44a2f5da0eaa .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#ada44a2f5da0eaa .hover-content-wrap:nth-child(2)
                            {background-color: rgba(147, 53, 60, 1);}#a282eaa45aa0a2d , #a282eaa45aa0a2d a{color: rgba(255, 255, 255, 1);}#a0e47acea1a1a32 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a0e47acea1a1a32 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a0e47acea1a1a32 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(147, 53, 60, 1);}#a506facef2aaa8a , #a506facef2aaa8a a{color: rgba(255, 255, 255, 1);}#a4063a5e07ae511 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a4063a5e07ae511 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a4063a5e07ae511 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(147, 53, 60, 1);}#aa22eaff05a7afb , #aa22eaff05a7afb a{color: rgba(255, 255, 255, 1);}#ae945a0681a80bb > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#ae945a0681a80bb .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#ae945a0681a80bb .hover-content-wrap:nth-child(2)
                            {background-color: rgba(147, 53, 60, 1);}#aedafab06eaf7dc , #aedafab06eaf7dc a{color: rgba(255, 255, 255, 1);}#a02c4a05dfa7cd0 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a02c4a05dfa7cd0 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a02c4a05dfa7cd0 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(147, 53, 60, 1);}#a56afabbbea9ae2 , #a56afabbbea9ae2 a{color: rgba(255, 255, 255, 1);}#a04a9a8eafa4e29 > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#afda0a29ada40dc > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ab4fca2415a09b2 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYONVSNukMESOJ.jpg);}#ab4fca2415a09b2  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ad54bade18ac26f > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a422da180ba6d42 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a422da180ba6d42 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a956fa8fada8eea > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ae898a8613a1b0f > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYOjHTOukMESOJ.jpg);}#ae898a8613a1b0f  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#af724a99a1a919c > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a27fdafe89a593f .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a27fdafe89a593f .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#abcb1a653baf722 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a9b9faa58ba76ae > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYNjjZNEkMESOJ.jpg);}#a9b9faa58ba76ae  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ab155aff92a358d > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ab931ac657af24c .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ab931ac657af24c .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ac4faac1c9a47b8 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a4731a71c2a03fe > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYNNZSNukQJyV.jpg);}#a4731a71c2a03fe  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a7911ae358adf46 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ac583a511ca5670 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ac583a511ca5670 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#acdcdac0b1aa666 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ab001ac31fa71c1 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYNDDNOOkMESOJ.jpg);}#ab001ac31fa71c1  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ab4efad24eaa5dd > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a71eea0f26a59b5 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a71eea0f26a59b5 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a9596a07cfa6559 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a01dbadc8eac72a > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYNNLTPEkQJyV.jpg);}#a01dbadc8eac72a  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a4180a85b5a6930 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a7ee4a0fccadfa3 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a7ee4a0fccadfa3 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#adbeaaebd1a6304 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#aabd1a856fa5d8e > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtVYONZNOEkMESOJ.jpg);}#aabd1a856fa5d8e  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aa0f1a2f97ac1fa > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a4070a83caa341f .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a4070a83caa341f .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a795aa5358a76c8 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#af16ca30bbaef78 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtHPNjNAOukMESOJ.jpg);}#af16ca30bbaef78  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a4444aa533aa5ce > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a2501a24bea06c4 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a2501a24bea06c4 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a62e4a9d4aad358 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#adc50a3c8ba90d2 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtVYPtVUNEkMESOJ.jpg);}#adc50a3c8ba90d2  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ad4ffa1b8aa0bce > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a7c1fa0038a3e64 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a7c1fa0038a3e64 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a8db2a51c3adb0e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a05f3a139faf393 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtVYPjNQNukMESOJ.jpg);}#a05f3a139faf393  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a9716a8491ab2ec > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a20a6abe9da5fce .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a20a6abe9da5fce .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a1defaca77a773c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ac649a577ba1460 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtVYPtDQNEkMESOJ.jpg);}#ac649a577ba1460  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a4c02a3f93aed79 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a71dcae8cfa3ed0 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a71dcae8cfa3ed0 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aa0a0afa36a2070 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#aff73aab24a7dbd > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtHPNtHNPOkMESOJ.jpg);}#aff73aab24a7dbd  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a7a53aaf55a9f28 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a8a2ea0165a7f74 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a8a2ea0165a7f74 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a1f0ea46f1aac21 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a573aadb40a053f > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZAQNLTNjjUOEkMESOJ.jpg);}#a573aadb40a053f  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a0351af9fca5ffe > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aa949ac00da3a92 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aa949ac00da3a92 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a4ab6a2c8baa60c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a96cbac05aa98c0 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZAQNLTNDHNOkkMESOJ.jpg);}#a96cbac05aa98c0  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#af0c3aa3bda11ed > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aa006a49eca5ba6 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aa006a49eca5ba6 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a22c4a9192a7cf1 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a71bea788aa479d > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZAQNLTNtNNNukMESOJ.jpg);}#a71bea788aa479d  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ac434a40e7af5f5 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ac9d3a926ba877b .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ac9d3a926ba877b .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a0412acdfbad2f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a0a29ac774aea38 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZAQNLTNDjNPOkMESOJ.jpg);}#a0a29ac774aea38  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ab7ceab84fa8930 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a52baa1c51af874 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a52baa1c51af874 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#abea0a9767a9c7d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a3712a1dc5a9d2e > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODxYPtLZOOkMESOJ.jpg);}#a3712a1dc5a9d2e  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a057ca0490aef10 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a8ef0a18b6a6e8e .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a8ef0a18b6a6e8e .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a2adcac60fa7a02 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a1eeba0df3ad4c6 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODtPNt0PNEkQJyV.jpg);}#a1eeba0df3ad4c6  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a31b2ac481aced7 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a540ba4861a5774 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a540ba4861a5774 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#af0e7acec1aa28f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#aac23a9879a8c3a > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODtPNjRSOukMESOJ.jpg);}#aac23a9879a8c3a  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a2ecda1b68ace57 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#afd26ad8bdab0bc .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#afd26ad8bdab0bc .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a6a68aaa29ad3af > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ac94dacffcae195 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODtPNtLPNEkMESOJ.jpg);}#ac94dacffcae195  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ad98ca0a57a7bd7 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a4874a3ce0a5f03 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a4874a3ce0a5f03 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a32c8a934ea6712 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ae53ca5ed9a6b38 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODtPNDZSNEkMESOJ.jpg);}#ae53ca5ed9a6b38  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#acc2baf180a1f5a > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a737baaddca3618 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a737baaddca3618 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a2094acee6a8c7e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a3358abb7fa4d6b > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODxYPt0POukQJyV.jpg);}#a3358abb7fa4d6b  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a7fb6a96b9acde3 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a91d0a6221aec7c .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a91d0a6221aec7c .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a56deaf824a42a4 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a6b02a597cafae4 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTNNNTOkkMESOJ.jpg);}#a6b02a597cafae4  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aecd0aca2bab65b > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a129da0e7ea74fb .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a129da0e7ea74fb .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a185ea238fa733e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a8302a32d3a0fc2 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTNDDOOEkMESOJ.jpg);}#a8302a32d3a0fc2  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a8861ad1b3a22bc > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ac139a6428ac3b3 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ac139a6428ac3b3 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a6574abaedad176 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a77c6aa04aa7aa7 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTOtRANEkQJyV.jpg);}#a77c6aa04aa7aa7  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a17baabd2caa061 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ab9f1aeb74ad51b .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ab9f1aeb74ad51b .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a0571ae262a176d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a22c0a1308af114 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTOjRUNOkMESOJ.jpg);}#a22c0a1308af114  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a70bfa411badc14 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a5c1fa7ecfafa86 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a5c1fa7ecfafa86 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a3b9aa8451a32a0 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ad211a2a6dac012 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTNtpROEkMESOJ.jpg);}#ad211a2a6dac012  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a7ed3adb3aad182 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a6f87a5b98a0d9e .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a6f87a5b98a0d9e .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a500aa5104abe6e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a084ea8404ac1cd > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTNjZTNkkMESOJ.jpg);}#a084ea8404ac1cd  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a9e59a7cc9a3ccb > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a75a5ae5aea7639 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a75a5ae5aea7639 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aaab8a08e0abb2c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a62cea612faa4ee > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOjpPONLTNOkMESOJ.jpg);}#a62cea612faa4ee  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a0d0aa63f9a0e02 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aa6e9a5e8ea6a72 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aa6e9a5e8ea6a72 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aae82a1566aa114 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a94f5a4167ae495 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfNONDQNtHTNkkMESOJ.jpg);}#a94f5a4167ae495  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a0b9dabf89ad249 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#abc20a6e06a2a09 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#abc20a6e06a2a09 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a690da5541ac753 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#aa562a43f5a83aa > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfOQNVRNjDAOOkMESOJ.jpg);}#aa562a43f5a83aa  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a1a55a113aaac23 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a45f4a845fa7347 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a45f4a845fa7347 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a9b2fa9f3fa9c21 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a3c4eae114a0320 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROtZQONjQNukMESOJ.jpg);}#a3c4eae114a0320  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a84c6a6948a780d > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a0d15a4b10a3401 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a0d15a4b10a3401 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a8e82a211ca74fc > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a888dabc9fa5894 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROtZQONDZOEkMESOJ.jpg);}#a888dabc9fa5894  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a5fd9a6445a66fc > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ae349ae47ead52e .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ae349ae47ead52e .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a1bc4ae945a2eb9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a9c16ab799a607c > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROtZQPjVSOEkMESOJ.jpg);}#a9c16ab799a607c  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a6116a9bada94cf > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a7655acd73a37c7 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a7655acd73a37c7 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a40a1aed3aa117b > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a0379a10eea4360 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOjpPONLTNOkMESOJ.jpg);}#a0379a10eea4360  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a9368aba6aa9027 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a4553a931faa76b .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a4553a931faa76b .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a6a2da66f5ac180 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a3dc1a6c92af70b > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtDPNtVTNOkMESOJ.jpg);}#a3dc1a6c92af70b  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#acde2aab46abd1c > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a020faa05da611a .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a020faa05da611a .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a5039a9aceabc1b > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#abd8ca56bba6ea3 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtpOPtDZNOkMESOJ.jpg);}#abd8ca56bba6ea3  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aca58a7e5ca5c95 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a9043aab0ea89ac .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a9043aab0ea89ac .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a20d1a47c2a15f9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a3c86a9876a2485 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtDUPjDZOukMESOJ.jpg);}#a3c86a9876a2485  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#abaf8a52e4a7f8e > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a6f95afb9ca520b .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a6f95afb9ca520b .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a856fa70dcaecf1 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a4056a94bdae44f > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtpUPjVROkkMESOJ.jpg);}#a4056a94bdae44f  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a0baea75c7aca3e > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a4c81a7371aa76f .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a4c81a7371aa76f .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#af843ae93ba5ed7 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a2233aa7ada101f > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtpXNjZZNkkMESOJ.jpg);}#a2233aa7ada101f  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a672fa10f2ad806 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aa13aaa6f4a66d1 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aa13aaa6f4a66d1 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a09abab1dea71a0 {
  overflow: hidden;
  pointer-events: none;
}
#a09abab1dea71a0 > .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;
}
#a09abab1dea71a0 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a09abab1dea71a0 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a09abab1dea71a0 > .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;
}
#a09abab1dea71a0 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a09abab1dea71a0 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a09abab1dea71a0 > .tab-wrap > div > .tab-nav,
#a09abab1dea71a0 > .tab-nav,
#a09abab1dea71a0 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a09abab1dea71a0 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a09abab1dea71a0 > .tab-wrap > div > .tab-nav-horizontal,
#a09abab1dea71a0 > .tab-nav-horizontal,
#a09abab1dea71a0 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a09abab1dea71a0 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a09abab1dea71a0 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a09abab1dea71a0 > .tab-nav-horizontal::-webkit-scrollbar,
#a09abab1dea71a0 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a09abab1dea71a0 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a09abab1dea71a0 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a09abab1dea71a0 > .tab-nav-horizontal.tagScroll,
#a09abab1dea71a0 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a09abab1dea71a0 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a09abab1dea71a0 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a09abab1dea71a0 > .tab-nav-horizontal.tagScroll li a,
#a09abab1dea71a0 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a09abab1dea71a0 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a09abab1dea71a0 > .tab-wrap > div > .tab-nav a,
#a09abab1dea71a0 > .tab-nav a,
#a09abab1dea71a0 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a09abab1dea71a0 > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#a09abab1dea71a0 > .tab-wrap > div > .tab-nav li a,
#a09abab1dea71a0 > .tab-nav li a,
#a09abab1dea71a0 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a09abab1dea71a0 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#a09abab1dea71a0 > .tab-wrap > div > .tab-nav li a svg,
#a09abab1dea71a0 > .tab-nav li a svg,
#a09abab1dea71a0 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a09abab1dea71a0 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a09abab1dea71a0 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a09abab1dea71a0 > .tab-nav li a .ap_icon,
#a09abab1dea71a0 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a09abab1dea71a0 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a09abab1dea71a0 > .tab-wrap > div > .tab-nav li a:hover,
#a09abab1dea71a0 > .tab-nav li a:hover,
#a09abab1dea71a0 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a09abab1dea71a0 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a09abab1dea71a0 > .tab-wrap > div > .tab-nav li.uk-active a,
#a09abab1dea71a0 > .tab-nav li.uk-active a,
#a09abab1dea71a0 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a09abab1dea71a0 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a09abab1dea71a0 .layout-left li,
#a09abab1dea71a0 .layout-center li,
#a09abab1dea71a0 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a09abab1dea71a0 .layout-left li a,
#a09abab1dea71a0 .layout-center li a,
#a09abab1dea71a0 .layout-right li a {
  height: 100%;
}
#a09abab1dea71a0 > .tab-tabs .layout-left {
  text-align: left;
}
#a09abab1dea71a0 > .tab-tabs .layout-center {
  text-align: center;
}
#a09abab1dea71a0 > .tab-tabs .layout-right {
  text-align: right;
}
#a09abab1dea71a0 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a09abab1dea71a0 .tab-content-wrap {
  background-color: #ffffff;
}
#a09abab1dea71a0 .tab-contents,
#a09abab1dea71a0 .tab-contents-wrap {
  pointer-events: none;
}
#a09abab1dea71a0 .tab-content,
#a09abab1dea71a0 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a09abab1dea71a0 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a09abab1dea71a0 .tab-wrap .tab-contents {
  height: 100%;
}
#a09abab1dea71a0 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a09abab1dea71a0 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a09abab1dea71a0 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a9e43a79afabeef .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a9e43a79afabeef .ele-wrap:hover {background-color: #0483cc;background-color: rgba(120, 38, 44, 1);}#acfdfa4a4aad0b5 [data-item="undefined"] {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#acfdfa4a4aad0b5 [data-item="undefined"]:hover {background-color: #0483cc;background-color: rgba(255, 1, 19, 1);}#a97aba9d7aa84b7 > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#ae371ae3c8a3728 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ae371ae3c8a3728 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(120, 38, 44, 1);}#ae081a245caca4a [data-item="undefined"] {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ae081a245caca4a [data-item="undefined"]:hover {background-color: #0483cc;background-color: rgba(255, 1, 19, 1);}#a7278ab51aa9532 > .ele-wrap {background-color: rgba(74, 144, 226, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbUODxUNtDOOukMESOJ.jpg);}#a7278ab51aa9532  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a0637ad84aa0670 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ad8f4a5e84a6ea4 > .ele-wrap {background-color: rgba(74, 144, 226, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbUODxUNtNZNOkMESOJ.jpg);}#ad8f4a5e84a6ea4  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ab77aa934fa07c3 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a1a98a621ca74e1 > .ele-wrap {background-color: rgba(74, 144, 226, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbUODxUNDLAOOkMESOJ.jpg);}#a1a98a621ca74e1  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#af07ea1c00aa796 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ac38dab327a632c > .ele-wrap {background-color: rgba(74, 144, 226, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbUODxUNDVZNukMESOJ.jpg);}#ac38dab327a632c  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aeff7a92c8a2b2a > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aa604a9044a6a37 > .ele-wrap {background-color: rgba(74, 144, 226, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbUODxUNt0ONukMESOJ.jpg);}#aa604a9044a6a37  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a9757a2e79a50af > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#afb36aabe8a13f4 > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#a3412af622ad67c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a3471a8c7aa5cad > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a0aa3af687a042e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a393baef02a0aa1 > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#a25ecade35a85b3 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2643ac4a6af850 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae1aeaa605a9c24 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1b02a6070a8476 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae709ade17a0ac0 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af7eea5178a11ca > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af968a7ba5aedab > div {
        font-weight: bold;
        font-style: normal;
    font-size: 36px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a793ea643da8102 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad7cda1f5eaaa7a > div {
        font-weight: bold;
        font-style: normal;
    font-size: 36px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a9567a9072aae41 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aea4fa041eacbe4 > div {
        font-weight: bold;
        font-style: normal;
    font-size: 36px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a600daca0ea850b .ele-wrap {border-color: #000;color: #fff;font-size: 18px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a600daca0ea850b .ele-wrap:hover {background-color: #0483cc;background-color: rgba(101, 34, 39, 1);}#a2807a5d13a04c9 [data-item*=".abstract"], #a2807a5d13a04c9 [data-item*=".abstract"] a {show: true;}#a2807a5d13a04c9 [data-item*=".subTitle"], #a2807a5d13a04c9 [data-item*=".subTitle"] a {show: true;}#a2807a5d13a04c9 [data-item*=".category"], #a2807a5d13a04c9 [data-item*=".category"] a {show: true;}#a2807a5d13a04c9 [data-item="buttons[0]"] {font-size: 14px;justify-content: center;border-style: solid;}#a2807a5d13a04c9 [data-item="buttons[0]"]:hover {background-color: rgba(124, 33, 39, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ace9face15aaec3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ac8adab1cdab899 .el-process-item {
  position: relative;
}
#ac8adab1cdab899 .el-process-item-index {
  height: 50px;
  width: 50px;
  line-height: 50px;
  margin: 0 auto;
  border: 1px solid #999999;
  font-weight: 700;
  font-size: 26px;
}
#ac8adab1cdab899 .el-process-item-linker {
  position: absolute;
  height: 1px;
  top: 25px;
  left: calc(50% - -52px);
  overflow: hidden;
  background: #999999;
  width: calc(100% - 82px);
}
@media (max-width: 960px) {
  #ac8adab1cdab899 .el-process-item .el-process-item-linker {
    display: none;
  }
}
#a3b12a30a8a3160 .card-content {
  padding-left: 70px;
}
#a3b12a30a8a3160 .title {
  color: #777;
  font-size: 16px;
  font-weight: bolder;
  margin-bottom: 10px;
  display: block;
}
#a3b12a30a8a3160 .date-post {
  float: left;
  border: 2px solid #93353c;
  padding: 12px 10px 9px;
  text-align: center;
}
#a3b12a30a8a3160 .date-post span {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #93353c;
  text-transform: uppercase;
}
#a3b12a30a8a3160 .card-metas li {
  display: block;
  list-style: none;
  line-height: 2;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af572a2f5ba9be1 .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 50px;font-size: 26px;justify-content: center;}#af572a2f5ba9be1 .ele-wrap:hover {border-color: rgba(251, 251, 251, 1);background-color: #fff;color: #ffffff;}#a1d22a55e4abc0a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a1d22a55e4abc0a .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a1d22a55e4abc0a .hover-content-wrap:nth-child(2)
                            {background-color: rgba(147, 53, 60, 1);}#af72ea6454a4b73 , #af72ea6454a4b73 a{color: rgba(255, 255, 255, 1);}#a40aaabf8ca25f4 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a40aaabf8ca25f4 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a40aaabf8ca25f4 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(147, 53, 60, 1);}#a80deaf7dca1f22 , #a80deaf7dca1f22 a{color: rgba(255, 255, 255, 1);}#a5e56ac468af845 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a5e56ac468af845 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a5e56ac468af845 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(147, 53, 60, 1);}#af681a7b26ab651 , #af681a7b26ab651 a{color: rgba(255, 255, 255, 1);}#a919da0300a5495 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a919da0300a5495 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a919da0300a5495 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(147, 53, 60, 1);}#a9242ac35ba18e7 , #a9242ac35ba18e7 a{color: rgba(255, 255, 255, 1);}#ae200a053aac18f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#ae200a053aac18f .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#ae200a053aac18f .hover-content-wrap:nth-child(2)
                            {background-color: rgba(147, 53, 60, 1);}#a6514af373a813c , #a6514af373a813c a{color: rgba(255, 255, 255, 1);}#a04d0a45d8ab943 > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#a1b4ba497aa3aa2 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a5534a6f2ca6bec > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYONVSNukMESOJ.jpg);}#a5534a6f2ca6bec  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a81daab7acae40c > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ada88a8943a4041 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ada88a8943a4041 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a67b6adaa9a2db2 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#acfbfae25fa804e > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYOjHTOukMESOJ.jpg);}#acfbfae25fa804e  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a18cbab576af3e4 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ad826a8bffa164d .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ad826a8bffa164d .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aba15a268dae87f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a11c8a7e12a33c9 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYNjjZNEkMESOJ.jpg);}#a11c8a7e12a33c9  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a98f9a3945aa5eb > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ad834a1321aaffe .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ad834a1321aaffe .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a1483abb99acdbc > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a532aaf2e8a82b4 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYNNZSNukQJyV.jpg);}#a532aaf2e8a82b4  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#abbcca9e7ea9158 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ac561a72a7a0179 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ac561a72a7a0179 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a1ed1a142cacfef > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a6ca9a9083a70d6 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYNDDNOOkMESOJ.jpg);}#a6ca9a9083a70d6  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a7f5da344ea3025 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a5719af9bea1a05 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a5719af9bea1a05 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a315da397aa17c1 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a9884aebe0a0ed4 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYNNLTPEkQJyV.jpg);}#a9884aebe0a0ed4  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a5dc6afe8bab020 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#af0adab6bca1b63 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#af0adab6bca1b63 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#afa00a28d7a229d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a8ef2aac70a1a20 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtVYONZNOEkMESOJ.jpg);}#a8ef2aac70a1a20  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aaaeeab959a6075 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ada64a9e6fa7a95 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ada64a9e6fa7a95 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a0f18a8508a7c92 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a0c3ca3fcca5755 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtHPNjNAOukMESOJ.jpg);}#a0c3ca3fcca5755  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#afb87a5e31a92e8 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a34a7a7d39ae141 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a34a7a7d39ae141 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a4672a25afab131 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a6d32a4730a550b > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtVYPtVUNEkMESOJ.jpg);}#a6d32a4730a550b  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a1e1da65d3a40d6 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a5550a16beae4af .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a5550a16beae4af .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a0a9dae797a5c28 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#af906a34d7acdfe > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtVYPjNQNukMESOJ.jpg);}#af906a34d7acdfe  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a6128a61f2ac88a > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a80f4ac470a6791 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a80f4ac470a6791 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a38c4a3afeaf639 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a611dafc1fad0a0 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtVYPtDQNEkMESOJ.jpg);}#a611dafc1fad0a0  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aa310a6b57a0ff6 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a1262a748bac371 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a1262a748bac371 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a0b69a824fa4ff6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ae86eafc61a6b03 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtHPNtHNPOkMESOJ.jpg);}#ae86eafc61a6b03  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aa4a4a087bab0d8 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aa684a3b3baa1ab .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aa684a3b3baa1ab .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a1ec0a6d7cab689 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a336da9b7ea51c5 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZAQNLTNjjUOEkMESOJ.jpg);}#a336da9b7ea51c5  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a99d0a327aaee72 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aadf0a8738a4e8f .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aadf0a8738a4e8f .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a02f6afe29a62a5 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a2183a82a1a06fd > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZAQNLTNDHNOkkMESOJ.jpg);}#a2183a82a1a06fd  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#afc86ad07aa27e1 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a253ca2294ae70f .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a253ca2294ae70f .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#acc8ba51a1a005a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a1419af7eca77b4 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZAQNLTNtNNNukMESOJ.jpg);}#a1419af7eca77b4  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a0cb3a8f9eafc09 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a1d2da41caa86d3 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a1d2da41caa86d3 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aad90a6df4a19e6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ab1cfa519aa4770 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZAQNLTNDjNPOkMESOJ.jpg);}#ab1cfa519aa4770  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a30c4a51cfad7bd > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ae805a85caac287 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ae805a85caac287 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a748fa01f0a5661 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a1ee4a2ab8a4c8e > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODxYPtLZOOkMESOJ.jpg);}#a1ee4a2ab8a4c8e  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a303fa9f18acf63 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ab1aca6e66aee02 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ab1aca6e66aee02 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aa114ad3fca809a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#acb2ba51b4a2381 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODtPNt0PNEkQJyV.jpg);}#acb2ba51b4a2381  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a2af8a9232a35b7 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ac354a5088a83c2 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ac354a5088a83c2 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#acfa7aa46ea4d47 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a2f6ca930aaaed1 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODtPNjRSOukMESOJ.jpg);}#a2f6ca930aaaed1  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a59a4a5df1a805d > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#af9eea78d3ac2fe .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#af9eea78d3ac2fe .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1bba747baa7b0 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a7fe9a7c77addbb > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODtPNtLPNEkMESOJ.jpg);}#a7fe9a7c77addbb  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a23dfa2c15af070 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a0235a8147a8720 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a0235a8147a8720 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a4ac6ae3a6a5554 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#aae18ac95da31f8 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODtPNDZSNEkMESOJ.jpg);}#aae18ac95da31f8  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a8393a6dc1af908 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a4fe7a55feaf61a .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a4fe7a55feaf61a .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a5445a6431a5fea > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#abd33af76aaf0aa > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODxYPt0POukQJyV.jpg);}#abd33af76aaf0aa  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ac616a6b9ca70e7 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a550fa1ed7a1747 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a550fa1ed7a1747 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a678aa632ead8fe > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a3ae5a0df9a4081 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTNNNTOkkMESOJ.jpg);}#a3ae5a0df9a4081  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a26b8a980cac51f > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a973ba531cae01b .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a973ba531cae01b .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a5a47a1e87ae835 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a8b90ac28aaae1f > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTNDDOOEkMESOJ.jpg);}#a8b90ac28aaae1f  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ab6c5af824a6993 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ace35ac875af903 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ace35ac875af903 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a0ba4ac4daab2c4 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#afb17a72ccae2d8 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTOtRANEkQJyV.jpg);}#afb17a72ccae2d8  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#add9aa312ca33c9 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a985aa3ed7a8347 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a985aa3ed7a8347 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a5d0eaadc2acd21 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ad516a321da1ef6 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTOjRUNOkMESOJ.jpg);}#ad516a321da1ef6  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a9f3ca4245a8e9a > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aa341adfbca129f .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aa341adfbca129f .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a3c59ae6fcab2b9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#adba7aedb9aa38f > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTNtpROEkMESOJ.jpg);}#adba7aedb9aa38f  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#af127a17bca0c3c > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aef3da5b3baffe0 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aef3da5b3baffe0 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#afce4a1803a55c9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a5780ad740a67df > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTNjZTNkkMESOJ.jpg);}#a5780ad740a67df  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a3e2ea477daed5a > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a59d5aab28a4c07 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a59d5aab28a4c07 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a6eaaa1fadab5b0 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a0a3cad027a3203 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOjpPONLTNOkMESOJ.jpg);}#a0a3cad027a3203  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#adb0eaa523a4616 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a1f54aa97aaa847 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a1f54aa97aaa847 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aeeb0aa441a630a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a16f6a6105afc50 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfNONDQNtHTNkkMESOJ.jpg);}#a16f6a6105afc50  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ab59facb41acbb0 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aa433ab04cabf9a .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aa433ab04cabf9a .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ad653a2baca8535 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a3d54a5829a1cd4 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfOQNVRNjDAOOkMESOJ.jpg);}#a3d54a5829a1cd4  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a48c6a5edba130e > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a4593a6a22a970e .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a4593a6a22a970e .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae9f9af752a1c68 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a94cdac995a8004 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROtZQONjQNukMESOJ.jpg);}#a94cdac995a8004  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a4be5a2ee8a0bdd > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a38a5af9d4ae91e .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a38a5af9d4ae91e .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a1563ab73aa5e1b > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a2169a5a00a35dd > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROtZQONDZOEkMESOJ.jpg);}#a2169a5a00a35dd  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a8c55a80bea9641 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aae79a5dddab96c .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aae79a5dddab96c .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a2b1dafb8fa63c5 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#afcd6ab841abd51 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROtZQPjVSOEkMESOJ.jpg);}#afcd6ab841abd51  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a2eafa587ea6e67 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a876baadd8ad074 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a876baadd8ad074 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ac90ba44eaaa91c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a5c66ae38fad5d5 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOjpPONLTNOkMESOJ.jpg);}#a5c66ae38fad5d5  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ab4efa81d5ad68f > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a6849a2fbaad73e .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a6849a2fbaad73e .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a2e19ace46af3a3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a5ce3af358ade46 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtDPNtVTNOkMESOJ.jpg);}#a5ce3af358ade46  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a5e1aa64d6a736a > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a4f43a35f0a06cc .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a4f43a35f0a06cc .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a6a8fa79b6a4415 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ab282a07b5abca7 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtpOPtDZNOkMESOJ.jpg);}#ab282a07b5abca7  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ad388a1a90ae758 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#af706af1b3a691b .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#af706af1b3a691b .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a88e7aa1d8a61f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a12f8aad85acef5 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtDUPjDZOukMESOJ.jpg);}#a12f8aad85acef5  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aee86a3693a4baa > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a2c5fad034a52fb .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a2c5fad034a52fb .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a0968a67e4a61b2 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#af456a7c74a3c9b > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtpUPjVROkkMESOJ.jpg);}#af456a7c74a3c9b  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a83daa3b7ca7db1 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a2423ac25ca4971 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a2423ac25ca4971 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a61ada09b2a9025 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a2318aa4a8af5ca > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtpXNjZZNkkMESOJ.jpg);}#a2318aa4a8af5ca  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#af0bcabe5eaea5a > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a15b8a3ee1adf01 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a15b8a3ee1adf01 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a3e6aaf564aa796 {
  overflow: hidden;
  pointer-events: none;
}
#a3e6aaf564aa796 > .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;
}
#a3e6aaf564aa796 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a3e6aaf564aa796 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a3e6aaf564aa796 > .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;
}
#a3e6aaf564aa796 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a3e6aaf564aa796 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a3e6aaf564aa796 > .tab-wrap > div > .tab-nav,
#a3e6aaf564aa796 > .tab-nav,
#a3e6aaf564aa796 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a3e6aaf564aa796 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a3e6aaf564aa796 > .tab-wrap > div > .tab-nav-horizontal,
#a3e6aaf564aa796 > .tab-nav-horizontal,
#a3e6aaf564aa796 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a3e6aaf564aa796 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a3e6aaf564aa796 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a3e6aaf564aa796 > .tab-nav-horizontal::-webkit-scrollbar,
#a3e6aaf564aa796 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a3e6aaf564aa796 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a3e6aaf564aa796 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a3e6aaf564aa796 > .tab-nav-horizontal.tagScroll,
#a3e6aaf564aa796 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a3e6aaf564aa796 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a3e6aaf564aa796 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a3e6aaf564aa796 > .tab-nav-horizontal.tagScroll li a,
#a3e6aaf564aa796 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a3e6aaf564aa796 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a3e6aaf564aa796 > .tab-wrap > div > .tab-nav a,
#a3e6aaf564aa796 > .tab-nav a,
#a3e6aaf564aa796 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a3e6aaf564aa796 > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#a3e6aaf564aa796 > .tab-wrap > div > .tab-nav li a,
#a3e6aaf564aa796 > .tab-nav li a,
#a3e6aaf564aa796 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a3e6aaf564aa796 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#a3e6aaf564aa796 > .tab-wrap > div > .tab-nav li a svg,
#a3e6aaf564aa796 > .tab-nav li a svg,
#a3e6aaf564aa796 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a3e6aaf564aa796 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a3e6aaf564aa796 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a3e6aaf564aa796 > .tab-nav li a .ap_icon,
#a3e6aaf564aa796 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a3e6aaf564aa796 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a3e6aaf564aa796 > .tab-wrap > div > .tab-nav li a:hover,
#a3e6aaf564aa796 > .tab-nav li a:hover,
#a3e6aaf564aa796 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a3e6aaf564aa796 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a3e6aaf564aa796 > .tab-wrap > div > .tab-nav li.uk-active a,
#a3e6aaf564aa796 > .tab-nav li.uk-active a,
#a3e6aaf564aa796 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a3e6aaf564aa796 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a3e6aaf564aa796 .layout-left li,
#a3e6aaf564aa796 .layout-center li,
#a3e6aaf564aa796 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a3e6aaf564aa796 .layout-left li a,
#a3e6aaf564aa796 .layout-center li a,
#a3e6aaf564aa796 .layout-right li a {
  height: 100%;
}
#a3e6aaf564aa796 > .tab-tabs .layout-left {
  text-align: left;
}
#a3e6aaf564aa796 > .tab-tabs .layout-center {
  text-align: center;
}
#a3e6aaf564aa796 > .tab-tabs .layout-right {
  text-align: right;
}
#a3e6aaf564aa796 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a3e6aaf564aa796 .tab-content-wrap {
  background-color: #ffffff;
}
#a3e6aaf564aa796 .tab-contents,
#a3e6aaf564aa796 .tab-contents-wrap {
  pointer-events: none;
}
#a3e6aaf564aa796 .tab-content,
#a3e6aaf564aa796 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a3e6aaf564aa796 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a3e6aaf564aa796 .tab-wrap .tab-contents {
  height: 100%;
}
#a3e6aaf564aa796 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a3e6aaf564aa796 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a3e6aaf564aa796 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ae7cea93a9adb39 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ae7cea93a9adb39 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(120, 38, 44, 1);}#a08e2a3cb8a206b [data-item="undefined"] {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a08e2a3cb8a206b [data-item="undefined"]:hover {background-color: #0483cc;background-color: rgba(255, 1, 19, 1);}#a44bba0001a8b87 > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#a7e88a75a2aa6aa .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a7e88a75a2aa6aa .ele-wrap:hover {background-color: #0483cc;background-color: rgba(120, 38, 44, 1);}#aefbeae9f5a3feb [data-item="undefined"] {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aefbeae9f5a3feb [data-item="undefined"]:hover {background-color: #0483cc;background-color: rgba(255, 1, 19, 1);}#a2108aed55a520b > .ele-wrap {background-color: rgba(74, 144, 226, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbUODxUNtDOOukMESOJ.jpg);}#a2108aed55a520b  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aed4da5dfca066b > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aa1afac206a6202 > .ele-wrap {background-color: rgba(74, 144, 226, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbUODxUNtNZNOkMESOJ.jpg);}#aa1afac206a6202  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a659da597ea064e > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a93e1a81eea17b3 > .ele-wrap {background-color: rgba(74, 144, 226, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbUODxUNDLAOOkMESOJ.jpg);}#a93e1a81eea17b3  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a6568adf4ead9e0 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aaeb2a0f54a2d0c > .ele-wrap {background-color: rgba(74, 144, 226, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbUODxUNDVZNukMESOJ.jpg);}#aaeb2a0f54a2d0c  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ae61aab560aae8c > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a720eaca3aa8cb5 > .ele-wrap {background-color: rgba(74, 144, 226, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbUODxUNt0ONukMESOJ.jpg);}#a720eaca3aa8cb5  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a4990aebaba7fa2 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ab41fa796daced2 > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#a10e3a109ba4136 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a047eaaa01a52e5 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a4710a964ea3939 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a01e6a235fa4836 > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#a86cfabf1ca4c90 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0572a66c6a30d3 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aabd9a7d73a9a15 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af8afad970a65f1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8d7aadd61aa7b7 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5545a90f5a0873 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6361ab3baaa5ed > div {
        font-weight: bold;
        font-style: normal;
    font-size: 36px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a48ecab094a8d61 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a367fae8dea72d5 > div {
        font-weight: bold;
        font-style: normal;
    font-size: 36px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a6d62aca37a521a > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aeb8aad328aed6e > div {
        font-weight: bold;
        font-style: normal;
    font-size: 36px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#add92a0c6ba2a8c .ele-wrap {border-color: #000;color: #fff;font-size: 18px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#add92a0c6ba2a8c .ele-wrap:hover {background-color: #0483cc;background-color: rgba(101, 34, 39, 1);}#a3b12a30a8a3160 [data-item*=".abstract"], #a3b12a30a8a3160 [data-item*=".abstract"] a {show: true;}#a3b12a30a8a3160 [data-item*=".subTitle"], #a3b12a30a8a3160 [data-item*=".subTitle"] a {show: true;}#a3b12a30a8a3160 [data-item*=".category"], #a3b12a30a8a3160 [data-item*=".category"] a {show: true;}#a3b12a30a8a3160 [data-item="buttons[0]"] {font-size: 14px;justify-content: center;border-style: solid;}#a3b12a30a8a3160 [data-item="buttons[0]"]:hover {background-color: rgba(124, 33, 39, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2d58a24bbae5f4 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a3e0da4426a46ca .timeline-item {
  padding-left: 30px;
}
@media only screen and (min-width: 992px) {
  #a3e0da4426a46ca .timeline-item {
    padding-left: 60px;
  }
  #a3e0da4426a46ca .timeline-item-date {
    position: absolute;
    top: -1px;
    right: 100%;
    white-space: nowrap;
    margin-right: 5px;
  }
  #a3e0da4426a46ca .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;
  }
}
#a3e0da4426a46ca .timeline-item-point {
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid #93353c;
  padding: 3px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
#a3e0da4426a46ca .timeline-item-point:before {
  content: '';
  display: block;
  width: 100%;
  border-radius: 50%;
  height: 100%;
  background-color: #93353c;
}
#a3e0da4426a46ca .timeline-item-line {
  position: absolute;
  top: 25px;
  left: 7px;
  bottom: 5px;
  width: 2px;
  border-left: 2px dashed #a9b1bb;
  border-right: 2px dashed #a9b1bb;
}
#a3e0da4426a46ca .timeline-item-active .timeline-item-line {
  top: 18px;
  bottom: 0;
  left: 8px;
  margin: 0;
  background-color: #93353c;
  border: none!important;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a7a14adef5a5d33 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#af30fa70e6a58f6 > .ele-wrap {border-right-width: 0px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 0px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 0px;border-top-width: 0px;border-left-style: solid;border-top-style: solid;}#af30fa70e6a58f6 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#af30fa70e6a58f6 .hover-content-wrap:nth-child(2)
                            {}#a69eaa1cf5a9f71 > .ele-wrap {border-right-width: 0px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 0px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 0px;border-top-width: 0px;border-left-style: solid;border-top-style: solid;}#a69eaa1cf5a9f71 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a69eaa1cf5a9f71 .hover-content-wrap:nth-child(2)
                            {}#a298ba85ada6bc2 > .ele-wrap {border-right-width: 0px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 0px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 0px;border-top-width: 0px;border-left-style: solid;border-top-style: solid;}#a298ba85ada6bc2 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a298ba85ada6bc2 .hover-content-wrap:nth-child(2)
                            {}#aa17ead25da0685 > .ele-wrap {border-right-width: 0px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 0px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 0px;border-top-width: 0px;border-left-style: solid;border-top-style: solid;}#aa17ead25da0685 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#aa17ead25da0685 .hover-content-wrap:nth-child(2)
                            {}#a1479a43bbaf889 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a3e28af5f1a4969 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#abe2da0e79a3748 .ab049a8c83ae063 .img-wrap {
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  border-bottom-left-radius: 1px;
  border-top-left-radius: 1px;
  border-top-width: 1px;
  border-top-color: #eeeeee;
  border-right-color: #eeeeee;
  border-left-color: #eeeeee;
  border-bottom-color: #eeeeee;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
}
#abe2da0e79a3748 .uk-grid {
  margin-left: -15px;
}
#abe2da0e79a3748 .uk-grid > * {
  padding-left: 15px;
}
#abe2da0e79a3748 .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#abe2da0e79a3748 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #abe2da0e79a3748 .uk-position-center-left-out {
    left: -30px;
  }
  #abe2da0e79a3748 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a89bfa855ea5dc0 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a5d37a3701af220 .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a5d37a3701af220 .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a5d37a3701af220 .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a5d37a3701af220 .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a5d37a3701af220 .marquee-wrap .marquee-item svg,
#a5d37a3701af220 .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a5d37a3701af220 .marquee-wrap:hover {
  background: ;
}
#a5d37a3701af220 .marquee-wrap .content {
  position: absolute;
}
#a5d37a3701af220 .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a5d37a3701af220 .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a5d37a3701af220 .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#a1f93a4854ab5f0 {
  overflow: hidden;
  pointer-events: none;
}
#a1f93a4854ab5f0 > .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;
}
#a1f93a4854ab5f0 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a1f93a4854ab5f0 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a1f93a4854ab5f0 > .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;
}
#a1f93a4854ab5f0 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a1f93a4854ab5f0 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a1f93a4854ab5f0 > .tab-wrap > div > .tab-nav,
#a1f93a4854ab5f0 > .tab-nav,
#a1f93a4854ab5f0 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a1f93a4854ab5f0 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a1f93a4854ab5f0 > .tab-wrap > div > .tab-nav-horizontal,
#a1f93a4854ab5f0 > .tab-nav-horizontal,
#a1f93a4854ab5f0 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a1f93a4854ab5f0 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a1f93a4854ab5f0 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a1f93a4854ab5f0 > .tab-nav-horizontal::-webkit-scrollbar,
#a1f93a4854ab5f0 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a1f93a4854ab5f0 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a1f93a4854ab5f0 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a1f93a4854ab5f0 > .tab-nav-horizontal.tagScroll,
#a1f93a4854ab5f0 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a1f93a4854ab5f0 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a1f93a4854ab5f0 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a1f93a4854ab5f0 > .tab-nav-horizontal.tagScroll li a,
#a1f93a4854ab5f0 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a1f93a4854ab5f0 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a1f93a4854ab5f0 > .tab-wrap > div > .tab-nav a,
#a1f93a4854ab5f0 > .tab-nav a,
#a1f93a4854ab5f0 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a1f93a4854ab5f0 > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#a1f93a4854ab5f0 > .tab-wrap > div > .tab-nav li a,
#a1f93a4854ab5f0 > .tab-nav li a,
#a1f93a4854ab5f0 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a1f93a4854ab5f0 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#a1f93a4854ab5f0 > .tab-wrap > div > .tab-nav li a svg,
#a1f93a4854ab5f0 > .tab-nav li a svg,
#a1f93a4854ab5f0 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a1f93a4854ab5f0 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a1f93a4854ab5f0 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a1f93a4854ab5f0 > .tab-nav li a .ap_icon,
#a1f93a4854ab5f0 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a1f93a4854ab5f0 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a1f93a4854ab5f0 > .tab-wrap > div > .tab-nav li a:hover,
#a1f93a4854ab5f0 > .tab-nav li a:hover,
#a1f93a4854ab5f0 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a1f93a4854ab5f0 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a1f93a4854ab5f0 > .tab-wrap > div > .tab-nav li.uk-active a,
#a1f93a4854ab5f0 > .tab-nav li.uk-active a,
#a1f93a4854ab5f0 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a1f93a4854ab5f0 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a1f93a4854ab5f0 .layout-left li,
#a1f93a4854ab5f0 .layout-center li,
#a1f93a4854ab5f0 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a1f93a4854ab5f0 .layout-left li a,
#a1f93a4854ab5f0 .layout-center li a,
#a1f93a4854ab5f0 .layout-right li a {
  height: 100%;
}
#a1f93a4854ab5f0 > .tab-tabs .layout-left {
  text-align: left;
}
#a1f93a4854ab5f0 > .tab-tabs .layout-center {
  text-align: center;
}
#a1f93a4854ab5f0 > .tab-tabs .layout-right {
  text-align: right;
}
#a1f93a4854ab5f0 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a1f93a4854ab5f0 .tab-content-wrap {
  background-color: #ffffff;
}
#a1f93a4854ab5f0 .tab-contents,
#a1f93a4854ab5f0 .tab-contents-wrap {
  pointer-events: none;
}
#a1f93a4854ab5f0 .tab-content,
#a1f93a4854ab5f0 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a1f93a4854ab5f0 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a1f93a4854ab5f0 .tab-wrap .tab-contents {
  height: 100%;
}
#a1f93a4854ab5f0 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a1f93a4854ab5f0 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a1f93a4854ab5f0 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#aa9cdaf497abfde > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa797a5e66a9b34 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a3c1ead5c1a8584 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a3c1ead5c1a8584 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a3c1ead5c1a8584 .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;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a3c1ead5c1a8584 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a3c1ead5c1a8584 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a3c1ead5c1a8584 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a3c1ead5c1a8584 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a3c1ead5c1a8584 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a3c1ead5c1a8584 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a3c1ead5c1a8584 .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;
  }
}
#a3c1ead5c1a8584 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a3c1ead5c1a8584 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a3c1ead5c1a8584 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a3c1ead5c1a8584 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#a3c1ead5c1a8584 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a3c1ead5c1a8584 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a3c1ead5c1a8584 .ele-article-list .text-article:hover .time {
  color: auto;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2e2ca193cad3ac .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a4905a3054ad141 .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a4905a3054ad141 .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a4905a3054ad141 .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a4905a3054ad141 .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a4905a3054ad141 .marquee-wrap .marquee-item svg,
#a4905a3054ad141 .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a4905a3054ad141 .marquee-wrap:hover {
  background: ;
}
#a4905a3054ad141 .marquee-wrap .content {
  position: absolute;
}
#a4905a3054ad141 .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a4905a3054ad141 .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a4905a3054ad141 .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#a792caae2aaf55e {
  overflow: hidden;
  pointer-events: none;
}
#a792caae2aaf55e > .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;
}
#a792caae2aaf55e > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a792caae2aaf55e > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a792caae2aaf55e > .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;
}
#a792caae2aaf55e > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a792caae2aaf55e > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a792caae2aaf55e > .tab-wrap > div > .tab-nav,
#a792caae2aaf55e > .tab-nav,
#a792caae2aaf55e > .tab-tabs > .tab-wrap > div > .tab-nav,
#a792caae2aaf55e > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a792caae2aaf55e > .tab-wrap > div > .tab-nav-horizontal,
#a792caae2aaf55e > .tab-nav-horizontal,
#a792caae2aaf55e > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a792caae2aaf55e > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a792caae2aaf55e > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a792caae2aaf55e > .tab-nav-horizontal::-webkit-scrollbar,
#a792caae2aaf55e > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a792caae2aaf55e > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a792caae2aaf55e > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a792caae2aaf55e > .tab-nav-horizontal.tagScroll,
#a792caae2aaf55e > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a792caae2aaf55e > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a792caae2aaf55e > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a792caae2aaf55e > .tab-nav-horizontal.tagScroll li a,
#a792caae2aaf55e > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a792caae2aaf55e > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a792caae2aaf55e > .tab-wrap > div > .tab-nav a,
#a792caae2aaf55e > .tab-nav a,
#a792caae2aaf55e > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a792caae2aaf55e > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#a792caae2aaf55e > .tab-wrap > div > .tab-nav li a,
#a792caae2aaf55e > .tab-nav li a,
#a792caae2aaf55e > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a792caae2aaf55e > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#a792caae2aaf55e > .tab-wrap > div > .tab-nav li a svg,
#a792caae2aaf55e > .tab-nav li a svg,
#a792caae2aaf55e > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a792caae2aaf55e > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a792caae2aaf55e > .tab-wrap > div > .tab-nav li a .ap_icon,
#a792caae2aaf55e > .tab-nav li a .ap_icon,
#a792caae2aaf55e > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a792caae2aaf55e > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a792caae2aaf55e > .tab-wrap > div > .tab-nav li a:hover,
#a792caae2aaf55e > .tab-nav li a:hover,
#a792caae2aaf55e > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a792caae2aaf55e > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a792caae2aaf55e > .tab-wrap > div > .tab-nav li.uk-active a,
#a792caae2aaf55e > .tab-nav li.uk-active a,
#a792caae2aaf55e > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a792caae2aaf55e > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a792caae2aaf55e .layout-left li,
#a792caae2aaf55e .layout-center li,
#a792caae2aaf55e .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a792caae2aaf55e .layout-left li a,
#a792caae2aaf55e .layout-center li a,
#a792caae2aaf55e .layout-right li a {
  height: 100%;
}
#a792caae2aaf55e > .tab-tabs .layout-left {
  text-align: left;
}
#a792caae2aaf55e > .tab-tabs .layout-center {
  text-align: center;
}
#a792caae2aaf55e > .tab-tabs .layout-right {
  text-align: right;
}
#a792caae2aaf55e .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a792caae2aaf55e .tab-content-wrap {
  background-color: #ffffff;
}
#a792caae2aaf55e .tab-contents,
#a792caae2aaf55e .tab-contents-wrap {
  pointer-events: none;
}
#a792caae2aaf55e .tab-content,
#a792caae2aaf55e .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a792caae2aaf55e .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a792caae2aaf55e .tab-wrap .tab-contents {
  height: 100%;
}
#a792caae2aaf55e .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a792caae2aaf55e .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a792caae2aaf55e .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a8283aed5eac9ad > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ace7dae743a2afc > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad674a8dc6a4b0c .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#ad674a8dc6a4b0c .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#ad674a8dc6a4b0c .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;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#ad674a8dc6a4b0c .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#ad674a8dc6a4b0c .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#ad674a8dc6a4b0c .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#ad674a8dc6a4b0c .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#ad674a8dc6a4b0c .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#ad674a8dc6a4b0c .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#ad674a8dc6a4b0c .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;
  }
}
#ad674a8dc6a4b0c .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article:hover .category {
  color: auto;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#ad674a8dc6a4b0c .ele-article-list .pic-article:hover .time {
  color: auto;
}
#ad674a8dc6a4b0c .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#ad674a8dc6a4b0c .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#ad674a8dc6a4b0c .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#ad674a8dc6a4b0c .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#ad674a8dc6a4b0c .ele-article-list .text-article:hover .time {
  color: auto;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af489a320cab85e .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a44cdadffead68c > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1034ac3dda136b > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a1034ac3dda136b .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a1034ac3dda136b .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#ae340a5211a614e , #ae340a5211a614e a{color: rgba(255, 255, 255, 1);}#a6596ad5e1a5abd , #a6596ad5e1a5abd a{color: rgba(255, 255, 255, 1);}#aa432a989dae7a5 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#aa432a989dae7a5 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#aa432a989dae7a5 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#af74baeec4a65b3 , #af74baeec4a65b3 a{color: rgba(255, 255, 255, 1);}#a0533a8641a5c36 , #a0533a8641a5c36 a{color: rgba(255, 255, 255, 1);}#a00f5af966ac836 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a00f5af966ac836 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a00f5af966ac836 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#a45d2a6f45a4d53 , #a45d2a6f45a4d53 a{color: rgba(255, 255, 255, 1);}#a5241aa49cace9f , #a5241aa49cace9f a{color: rgba(255, 255, 255, 1);}#acb9bafdc5ac22a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#acb9bafdc5ac22a .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#acb9bafdc5ac22a .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#a5036a8e48adfce , #a5036a8e48adfce a{color: rgba(255, 255, 255, 1);}#a3cd7ad697a0714 , #a3cd7ad697a0714 a{color: rgba(255, 255, 255, 1);}#a7d4aafa06a7145 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a7d4aafa06a7145 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a7d4aafa06a7145 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#a76f2a1549a368b , #a76f2a1549a368b a{color: rgba(255, 255, 255, 1);}#a79dba531ea69d0 , #a79dba531ea69d0 a{color: rgba(255, 255, 255, 1);}#a1079a960aada4d > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa53ba4d35ae089 > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#a42c0a6f0aab7d2 > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#a1f50af53ba19b5 > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#a596ba17ecae6e6 > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#a4778ad3d0a33dd > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#a41dfa5145a135b > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a153ca9b36a7fa7 > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8032ab128ad83c > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6311ae772a17e8 > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a13b3a6b1eaa466 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac1d5ab61ba0142 > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab9f4a2d9fa187d > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a55a5a5fc5a9632 > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4b88aab80a9182 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#adaaea786ca56e1 > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6215a0906a9717 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a6215a0906a9717 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a6215a0906a9717 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a6215a0906a9717 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a6215a0906a9717 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a6215a0906a9717 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a6215a0906a9717 .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;
}
#a6215a0906a9717 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a6215a0906a9717 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a6215a0906a9717 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a6215a0906a9717 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a6215a0906a9717 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a6215a0906a9717 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a6215a0906a9717 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a6215a0906a9717 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a6215a0906a9717 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a6215a0906a9717 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a6215a0906a9717 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a6215a0906a9717 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a6215a0906a9717 .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;
  }
}
#a6215a0906a9717 .ele-article-list .pic-article {
  padding: 10px 0px;
  border-bottom: 1px solid #ececec;
}
#a6215a0906a9717 .ele-article-list .pic-article .img_wrap {
  width: 25%;
  border-radius: 0px;
  overflow: hidden;
}
#a6215a0906a9717 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a6215a0906a9717 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a6215a0906a9717 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a6215a0906a9717 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a6215a0906a9717 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a6215a0906a9717 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a6215a0906a9717 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a6215a0906a9717 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a6215a0906a9717 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a6215a0906a9717 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a2e65acf57a02c2 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a2e65acf57a02c2 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a2e65acf57a02c2 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a2e65acf57a02c2 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a2e65acf57a02c2 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a2e65acf57a02c2 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a2e65acf57a02c2 .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;
}
#a2e65acf57a02c2 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a2e65acf57a02c2 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a2e65acf57a02c2 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a2e65acf57a02c2 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a2e65acf57a02c2 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a2e65acf57a02c2 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a2e65acf57a02c2 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a2e65acf57a02c2 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a2e65acf57a02c2 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a2e65acf57a02c2 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a2e65acf57a02c2 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a2e65acf57a02c2 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a2e65acf57a02c2 .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;
  }
}
#a2e65acf57a02c2 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a2e65acf57a02c2 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a2e65acf57a02c2 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a2e65acf57a02c2 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a2e65acf57a02c2 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a2e65acf57a02c2 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a2e65acf57a02c2 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a2e65acf57a02c2 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a2e65acf57a02c2 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a2e65acf57a02c2 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a2e65acf57a02c2 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a2e65acf57a02c2 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a2e65acf57a02c2 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a2e65acf57a02c2 .ele-article-list .text-article:hover .time {
  color: auto;
}
#aa1a7a477baebfa .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#aa1a7a477baebfa .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#aa1a7a477baebfa .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#aa1a7a477baebfa .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#aa1a7a477baebfa .marquee-wrap .marquee-item svg,
#aa1a7a477baebfa .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#aa1a7a477baebfa .marquee-wrap:hover {
  background: ;
}
#aa1a7a477baebfa .marquee-wrap .content {
  position: absolute;
}
#aa1a7a477baebfa .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#aa1a7a477baebfa .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#aa1a7a477baebfa .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#abb03afc77ace2f > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afc4eafe06a39df > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abaebadee4a1cae .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#abaebadee4a1cae .uk-grid {
  margin-left: -4px;
}
#abaebadee4a1cae .uk-grid > * {
  padding-left: 4px;
}
#abaebadee4a1cae .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#abaebadee4a1cae .uk-card {
  background-color: #ffffff;
  transition: all .3s ease;
}
#abaebadee4a1cae .uk-card-media-top {
  overflow: hidden;
}
#abaebadee4a1cae .uk-card-media-top .img {
  transition: all .3s ease;
}
#abaebadee4a1cae .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#abaebadee4a1cae .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#abaebadee4a1cae .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#abaebadee4a1cae .uk-card-body {
  padding: 15px 10px 8px;
}
#abaebadee4a1cae hr {
  border-top-color: #ffffff;
  margin: 0 0 10px;
}
#abaebadee4a1cae .uk-button {
  border: 1px solid #ececec;
}
#abaebadee4a1cae .uk-card .title {
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: center;
  font-family: inherit;
  color: #333333;
}
#abaebadee4a1cae .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: NotoSansSC-Light;
  color: #333333;
}
#abaebadee4a1cae .uk-card:hover {
  background-color: #ffffff;
}
#abaebadee4a1cae .uk-card:hover .title {
  color: #333333;
}
#abaebadee4a1cae .uk-card:hover hr {
  border-top-color: #ffffff;
}
#abaebadee4a1cae .uk-card:hover .img {
  transform: scale(1.2);
}
#abaebadee4a1cae .uk-card:hover .abstract {
  color: #666666;
}
#abaebadee4a1cae .uk-card:hover .datetime {
  color: #d3b267;
}
#abaebadee4a1cae .uk-card:hover .category {
  color: #d3b267;
}
#abaebadee4a1cae .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#ae56ea2df6a4664 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#ae56ea2df6a4664 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ae56ea2df6a4664 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#ae56ea2df6a4664 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#ae56ea2df6a4664 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#ae56ea2df6a4664 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#ae56ea2df6a4664 .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;
}
#ae56ea2df6a4664 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#ae56ea2df6a4664 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#ae56ea2df6a4664 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#ae56ea2df6a4664 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#ae56ea2df6a4664 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#ae56ea2df6a4664 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#ae56ea2df6a4664 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#ae56ea2df6a4664 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#ae56ea2df6a4664 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#ae56ea2df6a4664 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#ae56ea2df6a4664 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#ae56ea2df6a4664 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#ae56ea2df6a4664 .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;
  }
}
#ae56ea2df6a4664 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#ae56ea2df6a4664 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#ae56ea2df6a4664 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#ae56ea2df6a4664 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#ae56ea2df6a4664 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#ae56ea2df6a4664 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#ae56ea2df6a4664 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#ae56ea2df6a4664 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#ae56ea2df6a4664 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#ae56ea2df6a4664 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#ae56ea2df6a4664 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#ae56ea2df6a4664 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#ae56ea2df6a4664 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#ae56ea2df6a4664 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a3209a6bd2accf9 .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a3209a6bd2accf9 .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a3209a6bd2accf9 .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a3209a6bd2accf9 .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a3209a6bd2accf9 .marquee-wrap .marquee-item svg,
#a3209a6bd2accf9 .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a3209a6bd2accf9 .marquee-wrap:hover {
  background: ;
}
#a3209a6bd2accf9 .marquee-wrap .content {
  position: absolute;
}
#a3209a6bd2accf9 .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a3209a6bd2accf9 .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a3209a6bd2accf9 .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#a2ec5a5f63aa976 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8edfa5cf6aef35 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1588a2c91a18aa {
  overflow: hidden;
  pointer-events: none;
}
#a1588a2c91a18aa > .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;
}
#a1588a2c91a18aa > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a1588a2c91a18aa > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a1588a2c91a18aa > .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;
}
#a1588a2c91a18aa > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a1588a2c91a18aa > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a1588a2c91a18aa > .tab-wrap > div > .tab-nav,
#a1588a2c91a18aa > .tab-nav,
#a1588a2c91a18aa > .tab-tabs > .tab-wrap > div > .tab-nav,
#a1588a2c91a18aa > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a1588a2c91a18aa > .tab-wrap > div > .tab-nav-horizontal,
#a1588a2c91a18aa > .tab-nav-horizontal,
#a1588a2c91a18aa > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a1588a2c91a18aa > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a1588a2c91a18aa > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a1588a2c91a18aa > .tab-nav-horizontal::-webkit-scrollbar,
#a1588a2c91a18aa > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a1588a2c91a18aa > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a1588a2c91a18aa > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a1588a2c91a18aa > .tab-nav-horizontal.tagScroll,
#a1588a2c91a18aa > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a1588a2c91a18aa > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a1588a2c91a18aa > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a1588a2c91a18aa > .tab-nav-horizontal.tagScroll li a,
#a1588a2c91a18aa > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a1588a2c91a18aa > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a1588a2c91a18aa > .tab-wrap > div > .tab-nav a,
#a1588a2c91a18aa > .tab-nav a,
#a1588a2c91a18aa > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a1588a2c91a18aa > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#a1588a2c91a18aa > .tab-wrap > div > .tab-nav li a,
#a1588a2c91a18aa > .tab-nav li a,
#a1588a2c91a18aa > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a1588a2c91a18aa > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#a1588a2c91a18aa > .tab-wrap > div > .tab-nav li a svg,
#a1588a2c91a18aa > .tab-nav li a svg,
#a1588a2c91a18aa > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a1588a2c91a18aa > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a1588a2c91a18aa > .tab-wrap > div > .tab-nav li a .ap_icon,
#a1588a2c91a18aa > .tab-nav li a .ap_icon,
#a1588a2c91a18aa > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a1588a2c91a18aa > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a1588a2c91a18aa > .tab-wrap > div > .tab-nav li a:hover,
#a1588a2c91a18aa > .tab-nav li a:hover,
#a1588a2c91a18aa > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a1588a2c91a18aa > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a1588a2c91a18aa > .tab-wrap > div > .tab-nav li.uk-active a,
#a1588a2c91a18aa > .tab-nav li.uk-active a,
#a1588a2c91a18aa > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a1588a2c91a18aa > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a1588a2c91a18aa .layout-left li,
#a1588a2c91a18aa .layout-center li,
#a1588a2c91a18aa .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a1588a2c91a18aa .layout-left li a,
#a1588a2c91a18aa .layout-center li a,
#a1588a2c91a18aa .layout-right li a {
  height: 100%;
}
#a1588a2c91a18aa > .tab-tabs .layout-left {
  text-align: left;
}
#a1588a2c91a18aa > .tab-tabs .layout-center {
  text-align: center;
}
#a1588a2c91a18aa > .tab-tabs .layout-right {
  text-align: right;
}
#a1588a2c91a18aa .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a1588a2c91a18aa .tab-content-wrap {
  background-color: #ffffff;
}
#a1588a2c91a18aa .tab-contents,
#a1588a2c91a18aa .tab-contents-wrap {
  pointer-events: none;
}
#a1588a2c91a18aa .tab-content,
#a1588a2c91a18aa .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a1588a2c91a18aa .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a1588a2c91a18aa .tab-wrap .tab-contents {
  height: 100%;
}
#a1588a2c91a18aa .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a1588a2c91a18aa .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a1588a2c91a18aa .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afe53a9296a8bb8 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a4ba7aa147aee3c .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a4ba7aa147aee3c .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a4ba7aa147aee3c .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a4ba7aa147aee3c .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a4ba7aa147aee3c .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a4ba7aa147aee3c .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a4ba7aa147aee3c .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;
}
#a4ba7aa147aee3c .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a4ba7aa147aee3c .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a4ba7aa147aee3c .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a4ba7aa147aee3c .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a4ba7aa147aee3c .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a4ba7aa147aee3c .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a4ba7aa147aee3c .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a4ba7aa147aee3c .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a4ba7aa147aee3c .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a4ba7aa147aee3c .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a4ba7aa147aee3c .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a4ba7aa147aee3c .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a4ba7aa147aee3c .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;
  }
}
#a4ba7aa147aee3c .ele-article-list .pic-article {
  padding: 10px 0px;
  border-bottom: 1px solid #ececec;
}
#a4ba7aa147aee3c .ele-article-list .pic-article .img_wrap {
  width: 25%;
  border-radius: 0px;
  overflow: hidden;
}
#a4ba7aa147aee3c .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a4ba7aa147aee3c .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a4ba7aa147aee3c .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a4ba7aa147aee3c .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a4ba7aa147aee3c .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a4ba7aa147aee3c .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a4ba7aa147aee3c .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a4ba7aa147aee3c .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a4ba7aa147aee3c .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a4ba7aa147aee3c .ele-article-list .text-article:hover .time {
  color: auto;
}
#ac454acc61a9128 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#ac454acc61a9128 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ac454acc61a9128 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#ac454acc61a9128 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#ac454acc61a9128 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#ac454acc61a9128 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#ac454acc61a9128 .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;
}
#ac454acc61a9128 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#ac454acc61a9128 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#ac454acc61a9128 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#ac454acc61a9128 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#ac454acc61a9128 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#ac454acc61a9128 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#ac454acc61a9128 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#ac454acc61a9128 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#ac454acc61a9128 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#ac454acc61a9128 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#ac454acc61a9128 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#ac454acc61a9128 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#ac454acc61a9128 .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;
  }
}
#ac454acc61a9128 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#ac454acc61a9128 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#ac454acc61a9128 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#ac454acc61a9128 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#ac454acc61a9128 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#ac454acc61a9128 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#ac454acc61a9128 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#ac454acc61a9128 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#ac454acc61a9128 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#ac454acc61a9128 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#ac454acc61a9128 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#ac454acc61a9128 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#ac454acc61a9128 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#ac454acc61a9128 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a68a6a222aa05a9 .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a68a6a222aa05a9 .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a68a6a222aa05a9 .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a68a6a222aa05a9 .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a68a6a222aa05a9 .marquee-wrap .marquee-item svg,
#a68a6a222aa05a9 .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a68a6a222aa05a9 .marquee-wrap:hover {
  background: ;
}
#a68a6a222aa05a9 .marquee-wrap .content {
  position: absolute;
}
#a68a6a222aa05a9 .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a68a6a222aa05a9 .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a68a6a222aa05a9 .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#a2bd3a2ffbaff19 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ace03adcc3a3626 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af7a8a21e5a5099 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad694a15e6a5edd > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#ad694a15e6a5edd .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#ad694a15e6a5edd .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#a6a74ae5a3a31a6 , #a6a74ae5a3a31a6 a{color: rgba(255, 255, 255, 1);}#a7c9fa7231af851 , #a7c9fa7231af851 a{color: rgba(255, 255, 255, 1);}#a28bbaf4b8ae102 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a28bbaf4b8ae102 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a28bbaf4b8ae102 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#a92c1a0135a535c , #a92c1a0135a535c a{color: rgba(255, 255, 255, 1);}#a2b13a0816abc86 , #a2b13a0816abc86 a{color: rgba(255, 255, 255, 1);}#a063da272aaa2ca > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a063da272aaa2ca .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a063da272aaa2ca .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#a1c3da3c08a72cf , #a1c3da3c08a72cf a{color: rgba(255, 255, 255, 1);}#acefba9efba01eb , #acefba9efba01eb a{color: rgba(255, 255, 255, 1);}#addcaa125dada49 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#addcaa125dada49 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#addcaa125dada49 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#ab59fad6cca1026 , #ab59fad6cca1026 a{color: rgba(255, 255, 255, 1);}#abd4aa6dd4ac02b , #abd4aa6dd4ac02b a{color: rgba(255, 255, 255, 1);}#a7f37a7357a4439 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a7f37a7357a4439 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a7f37a7357a4439 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#aca64af0a2ac4d0 , #aca64af0a2ac4d0 a{color: rgba(255, 255, 255, 1);}#affd1a1e95a824e , #affd1a1e95a824e a{color: rgba(255, 255, 255, 1);}#ab650a4cbeaa07d > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acadaaba9ca146c > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#af568ae6c8aba15 > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#af66da1abca33e7 > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#a3e5ba52e3a3489 > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#a44e0a5cbfaa2ba > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#a745fac8cba9f96 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9242a8829ae763 > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8f87a97dfa9dc8 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9a4ea444da1ffe > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#adc3dac816a1e76 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a69b9a3b6baab4f > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2f5ca0cb7a1b52 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a80aea5639ae772 > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a953ca2d47af45f > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a16cdaa39fadb46 > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae1a9a597da5d51 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#ae1a9a597da5d51 .uk-grid {
  margin-left: -4px;
}
#ae1a9a597da5d51 .uk-grid > * {
  padding-left: 4px;
}
#ae1a9a597da5d51 .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#ae1a9a597da5d51 .uk-card {
  background-color: #ffffff;
  transition: all .3s ease;
}
#ae1a9a597da5d51 .uk-card-media-top {
  overflow: hidden;
}
#ae1a9a597da5d51 .uk-card-media-top .img {
  transition: all .3s ease;
}
#ae1a9a597da5d51 .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#ae1a9a597da5d51 .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#ae1a9a597da5d51 .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#ae1a9a597da5d51 .uk-card-body {
  padding: 15px 10px 8px;
}
#ae1a9a597da5d51 hr {
  border-top-color: #ffffff;
  margin: 0 0 10px;
}
#ae1a9a597da5d51 .uk-button {
  border: 1px solid #ececec;
}
#ae1a9a597da5d51 .uk-card .title {
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: center;
  font-family: inherit;
  color: #333333;
}
#ae1a9a597da5d51 .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: NotoSansSC-Light;
  color: #333333;
}
#ae1a9a597da5d51 .uk-card:hover {
  background-color: #f7f7f7;
}
#ae1a9a597da5d51 .uk-card:hover .title {
  color: #333333;
}
#ae1a9a597da5d51 .uk-card:hover hr {
  border-top-color: #ffffff;
}
#ae1a9a597da5d51 .uk-card:hover .img {
  transform: scale(1.2);
}
#ae1a9a597da5d51 .uk-card:hover .abstract {
  color: #666666;
}
#ae1a9a597da5d51 .uk-card:hover .datetime {
  color: #d3b267;
}
#ae1a9a597da5d51 .uk-card:hover .category {
  color: #d3b267;
}
#ae1a9a597da5d51 .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#ad9daab4f1a7f0e .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#ad9daab4f1a7f0e .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#ad9daab4f1a7f0e .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;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#ad9daab4f1a7f0e .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#ad9daab4f1a7f0e .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#ad9daab4f1a7f0e .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#ad9daab4f1a7f0e .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#ad9daab4f1a7f0e .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#ad9daab4f1a7f0e .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#ad9daab4f1a7f0e .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;
  }
}
#ad9daab4f1a7f0e .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article:hover .category {
  color: auto;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#ad9daab4f1a7f0e .ele-article-list .pic-article:hover .time {
  color: auto;
}
#ad9daab4f1a7f0e .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#ad9daab4f1a7f0e .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#ad9daab4f1a7f0e .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#ad9daab4f1a7f0e .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#ad9daab4f1a7f0e .ele-article-list .text-article:hover .time {
  color: auto;
}
#a20eaa0f5da2f21 .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a20eaa0f5da2f21 .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a20eaa0f5da2f21 .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a20eaa0f5da2f21 .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a20eaa0f5da2f21 .marquee-wrap .marquee-item svg,
#a20eaa0f5da2f21 .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a20eaa0f5da2f21 .marquee-wrap:hover {
  background: ;
}
#a20eaa0f5da2f21 .marquee-wrap .content {
  position: absolute;
}
#a20eaa0f5da2f21 .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a20eaa0f5da2f21 .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a20eaa0f5da2f21 .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#abe59ad652a17db > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9e29a9541ab204 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae3c9a172aa348f {
  overflow: hidden;
  pointer-events: none;
}
#ae3c9a172aa348f > .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;
}
#ae3c9a172aa348f > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#ae3c9a172aa348f > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ae3c9a172aa348f > .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;
}
#ae3c9a172aa348f > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#ae3c9a172aa348f > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ae3c9a172aa348f > .tab-wrap > div > .tab-nav,
#ae3c9a172aa348f > .tab-nav,
#ae3c9a172aa348f > .tab-tabs > .tab-wrap > div > .tab-nav,
#ae3c9a172aa348f > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#ae3c9a172aa348f > .tab-wrap > div > .tab-nav-horizontal,
#ae3c9a172aa348f > .tab-nav-horizontal,
#ae3c9a172aa348f > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#ae3c9a172aa348f > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#ae3c9a172aa348f > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ae3c9a172aa348f > .tab-nav-horizontal::-webkit-scrollbar,
#ae3c9a172aa348f > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ae3c9a172aa348f > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#ae3c9a172aa348f > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ae3c9a172aa348f > .tab-nav-horizontal.tagScroll,
#ae3c9a172aa348f > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ae3c9a172aa348f > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#ae3c9a172aa348f > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ae3c9a172aa348f > .tab-nav-horizontal.tagScroll li a,
#ae3c9a172aa348f > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ae3c9a172aa348f > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#ae3c9a172aa348f > .tab-wrap > div > .tab-nav a,
#ae3c9a172aa348f > .tab-nav a,
#ae3c9a172aa348f > .tab-tabs > .tab-wrap > div > .tab-nav a,
#ae3c9a172aa348f > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#ae3c9a172aa348f > .tab-wrap > div > .tab-nav li a,
#ae3c9a172aa348f > .tab-nav li a,
#ae3c9a172aa348f > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#ae3c9a172aa348f > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#ae3c9a172aa348f > .tab-wrap > div > .tab-nav li a svg,
#ae3c9a172aa348f > .tab-nav li a svg,
#ae3c9a172aa348f > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#ae3c9a172aa348f > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#ae3c9a172aa348f > .tab-wrap > div > .tab-nav li a .ap_icon,
#ae3c9a172aa348f > .tab-nav li a .ap_icon,
#ae3c9a172aa348f > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#ae3c9a172aa348f > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#ae3c9a172aa348f > .tab-wrap > div > .tab-nav li a:hover,
#ae3c9a172aa348f > .tab-nav li a:hover,
#ae3c9a172aa348f > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#ae3c9a172aa348f > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#ae3c9a172aa348f > .tab-wrap > div > .tab-nav li.uk-active a,
#ae3c9a172aa348f > .tab-nav li.uk-active a,
#ae3c9a172aa348f > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#ae3c9a172aa348f > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#ae3c9a172aa348f .layout-left li,
#ae3c9a172aa348f .layout-center li,
#ae3c9a172aa348f .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#ae3c9a172aa348f .layout-left li a,
#ae3c9a172aa348f .layout-center li a,
#ae3c9a172aa348f .layout-right li a {
  height: 100%;
}
#ae3c9a172aa348f > .tab-tabs .layout-left {
  text-align: left;
}
#ae3c9a172aa348f > .tab-tabs .layout-center {
  text-align: center;
}
#ae3c9a172aa348f > .tab-tabs .layout-right {
  text-align: right;
}
#ae3c9a172aa348f .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#ae3c9a172aa348f .tab-content-wrap {
  background-color: #ffffff;
}
#ae3c9a172aa348f .tab-contents,
#ae3c9a172aa348f .tab-contents-wrap {
  pointer-events: none;
}
#ae3c9a172aa348f .tab-content,
#ae3c9a172aa348f .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#ae3c9a172aa348f .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#ae3c9a172aa348f .tab-wrap .tab-contents {
  height: 100%;
}
#ae3c9a172aa348f .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ae3c9a172aa348f .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#ae3c9a172aa348f .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6b05a8e4dacfe5 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1714aab71a73c8 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a1714aab71a73c8 .uk-grid {
  margin-left: -4px;
}
#a1714aab71a73c8 .uk-grid > * {
  padding-left: 4px;
}
#a1714aab71a73c8 .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#a1714aab71a73c8 .uk-card {
  background-color: #ffffff;
  transition: all .3s ease;
}
#a1714aab71a73c8 .uk-card-media-top {
  overflow: hidden;
}
#a1714aab71a73c8 .uk-card-media-top .img {
  transition: all .3s ease;
}
#a1714aab71a73c8 .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#a1714aab71a73c8 .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#a1714aab71a73c8 .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#a1714aab71a73c8 .uk-card-body {
  padding: 15px 10px 8px;
}
#a1714aab71a73c8 hr {
  border-top-color: #ffffff;
  margin: 0 0 10px;
}
#a1714aab71a73c8 .uk-button {
  border: 1px solid #ececec;
}
#a1714aab71a73c8 .uk-card .title {
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: center;
  font-family: inherit;
  color: #333333;
}
#a1714aab71a73c8 .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: NotoSansSC-Light;
  color: #333333;
}
#a1714aab71a73c8 .uk-card:hover {
  background-color: #ffffff;
}
#a1714aab71a73c8 .uk-card:hover .title {
  color: #333333;
}
#a1714aab71a73c8 .uk-card:hover hr {
  border-top-color: #ffffff;
}
#a1714aab71a73c8 .uk-card:hover .img {
  transform: scale(1.2);
}
#a1714aab71a73c8 .uk-card:hover .abstract {
  color: #666666;
}
#a1714aab71a73c8 .uk-card:hover .datetime {
  color: #d3b267;
}
#a1714aab71a73c8 .uk-card:hover .category {
  color: #d3b267;
}
#a1714aab71a73c8 .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#ac730ae4c2a4756 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a91b7ace1ea03e1 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a91b7ace1ea03e1 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a91b7ace1ea03e1 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#adc17ad394a8e5e , #adc17ad394a8e5e a{color: rgba(255, 255, 255, 1);}#a8fb9a3c3aa5d92 , #a8fb9a3c3aa5d92 a{color: rgba(255, 255, 255, 1);}#addfaa0857af5cc > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#addfaa0857af5cc .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#addfaa0857af5cc .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#aa1e0a9b5aa2efd , #aa1e0a9b5aa2efd a{color: rgba(255, 255, 255, 1);}#a89b2a675da1baa , #a89b2a675da1baa a{color: rgba(255, 255, 255, 1);}#a9e79abdf7a5e9b > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a9e79abdf7a5e9b .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a9e79abdf7a5e9b .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#a0771acb0ea9b16 , #a0771acb0ea9b16 a{color: rgba(255, 255, 255, 1);}#a21f7ae0f1a2643 , #a21f7ae0f1a2643 a{color: rgba(255, 255, 255, 1);}#ac3a7a952ea68d8 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#ac3a7a952ea68d8 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#ac3a7a952ea68d8 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#ab09dad89fab97d , #ab09dad89fab97d a{color: rgba(255, 255, 255, 1);}#a8449a5784a8011 , #a8449a5784a8011 a{color: rgba(255, 255, 255, 1);}#a480ca2fcda5d98 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a480ca2fcda5d98 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a480ca2fcda5d98 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#afb7aa2d8ba1537 , #afb7aa2d8ba1537 a{color: rgba(255, 255, 255, 1);}#ad6cea74e9a16d3 , #ad6cea74e9a16d3 a{color: rgba(255, 255, 255, 1);}#a869dab82faa5cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abe0ea8a8ca6d8e > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#abcaeaf8e5a6c7b > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#adefaac091aa2ba > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#a9148a3816aeac9 > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#a4c35a0431ae57d > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#afb8da1a72a4db5 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa9f4a91d7a629f > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a3644ab984ac878 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1d81a93b2a5bbf > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8ed9a6adfa2062 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1360aa8e6ad876 > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4d59a2950a8521 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a841dab614a9729 > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a069da39f1a2ca0 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a52b3aee46a4de8 > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa271a0544adc62 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#aa271a0544adc62 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aa271a0544adc62 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#aa271a0544adc62 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#aa271a0544adc62 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#aa271a0544adc62 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#aa271a0544adc62 .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;
}
#aa271a0544adc62 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#aa271a0544adc62 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#aa271a0544adc62 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#aa271a0544adc62 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#aa271a0544adc62 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#aa271a0544adc62 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#aa271a0544adc62 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#aa271a0544adc62 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#aa271a0544adc62 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#aa271a0544adc62 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#aa271a0544adc62 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#aa271a0544adc62 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#aa271a0544adc62 .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;
  }
}
#aa271a0544adc62 .ele-article-list .pic-article {
  padding: 10px 0px;
  border-bottom: 1px solid #ececec;
}
#aa271a0544adc62 .ele-article-list .pic-article .img_wrap {
  width: 25%;
  border-radius: 0px;
  overflow: hidden;
}
#aa271a0544adc62 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#aa271a0544adc62 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#aa271a0544adc62 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#aa271a0544adc62 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#aa271a0544adc62 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#aa271a0544adc62 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#aa271a0544adc62 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#aa271a0544adc62 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#aa271a0544adc62 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#aa271a0544adc62 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a8c17a0246a603a .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a8c17a0246a603a .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a8c17a0246a603a .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a8c17a0246a603a .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a8c17a0246a603a .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a8c17a0246a603a .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a8c17a0246a603a .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;
}
#a8c17a0246a603a .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a8c17a0246a603a .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a8c17a0246a603a .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a8c17a0246a603a .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a8c17a0246a603a .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a8c17a0246a603a .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a8c17a0246a603a .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a8c17a0246a603a .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a8c17a0246a603a .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a8c17a0246a603a .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a8c17a0246a603a .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a8c17a0246a603a .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a8c17a0246a603a .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;
  }
}
#a8c17a0246a603a .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a8c17a0246a603a .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a8c17a0246a603a .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a8c17a0246a603a .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a8c17a0246a603a .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a8c17a0246a603a .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a8c17a0246a603a .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a8c17a0246a603a .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a8c17a0246a603a .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a8c17a0246a603a .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a8c17a0246a603a .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a8c17a0246a603a .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a8c17a0246a603a .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a8c17a0246a603a .ele-article-list .text-article:hover .time {
  color: auto;
}
#a807ea6344ac161 .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a807ea6344ac161 .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a807ea6344ac161 .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a807ea6344ac161 .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a807ea6344ac161 .marquee-wrap .marquee-item svg,
#a807ea6344ac161 .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a807ea6344ac161 .marquee-wrap:hover {
  background: ;
}
#a807ea6344ac161 .marquee-wrap .content {
  position: absolute;
}
#a807ea6344ac161 .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a807ea6344ac161 .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a807ea6344ac161 .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#a3fdeac1e4ab840 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a128ca3134a8aa5 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9d14a789dad7c8 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a9d14a789dad7c8 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a9d14a789dad7c8 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a9d14a789dad7c8 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a9d14a789dad7c8 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a9d14a789dad7c8 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a9d14a789dad7c8 .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;
}
#a9d14a789dad7c8 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a9d14a789dad7c8 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a9d14a789dad7c8 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a9d14a789dad7c8 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a9d14a789dad7c8 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a9d14a789dad7c8 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a9d14a789dad7c8 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a9d14a789dad7c8 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a9d14a789dad7c8 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a9d14a789dad7c8 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a9d14a789dad7c8 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a9d14a789dad7c8 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a9d14a789dad7c8 .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;
  }
}
#a9d14a789dad7c8 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a9d14a789dad7c8 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a9d14a789dad7c8 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a9d14a789dad7c8 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a9d14a789dad7c8 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a9d14a789dad7c8 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a9d14a789dad7c8 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a9d14a789dad7c8 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a9d14a789dad7c8 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a9d14a789dad7c8 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a9d14a789dad7c8 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a9d14a789dad7c8 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a9d14a789dad7c8 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a9d14a789dad7c8 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a80fba8acaa853c .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a80fba8acaa853c .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a80fba8acaa853c .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a80fba8acaa853c .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a80fba8acaa853c .marquee-wrap .marquee-item svg,
#a80fba8acaa853c .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a80fba8acaa853c .marquee-wrap:hover {
  background: ;
}
#a80fba8acaa853c .marquee-wrap .content {
  position: absolute;
}
#a80fba8acaa853c .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a80fba8acaa853c .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a80fba8acaa853c .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#aa24ba5ad1a32b7 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae7e0a843eac994 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9134a261baec9d {
  overflow: hidden;
  pointer-events: none;
}
#a9134a261baec9d > .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;
}
#a9134a261baec9d > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a9134a261baec9d > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a9134a261baec9d > .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;
}
#a9134a261baec9d > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a9134a261baec9d > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a9134a261baec9d > .tab-wrap > div > .tab-nav,
#a9134a261baec9d > .tab-nav,
#a9134a261baec9d > .tab-tabs > .tab-wrap > div > .tab-nav,
#a9134a261baec9d > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a9134a261baec9d > .tab-wrap > div > .tab-nav-horizontal,
#a9134a261baec9d > .tab-nav-horizontal,
#a9134a261baec9d > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a9134a261baec9d > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a9134a261baec9d > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a9134a261baec9d > .tab-nav-horizontal::-webkit-scrollbar,
#a9134a261baec9d > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a9134a261baec9d > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a9134a261baec9d > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a9134a261baec9d > .tab-nav-horizontal.tagScroll,
#a9134a261baec9d > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a9134a261baec9d > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a9134a261baec9d > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a9134a261baec9d > .tab-nav-horizontal.tagScroll li a,
#a9134a261baec9d > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a9134a261baec9d > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a9134a261baec9d > .tab-wrap > div > .tab-nav a,
#a9134a261baec9d > .tab-nav a,
#a9134a261baec9d > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a9134a261baec9d > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#a9134a261baec9d > .tab-wrap > div > .tab-nav li a,
#a9134a261baec9d > .tab-nav li a,
#a9134a261baec9d > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a9134a261baec9d > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#a9134a261baec9d > .tab-wrap > div > .tab-nav li a svg,
#a9134a261baec9d > .tab-nav li a svg,
#a9134a261baec9d > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a9134a261baec9d > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a9134a261baec9d > .tab-wrap > div > .tab-nav li a .ap_icon,
#a9134a261baec9d > .tab-nav li a .ap_icon,
#a9134a261baec9d > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a9134a261baec9d > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a9134a261baec9d > .tab-wrap > div > .tab-nav li a:hover,
#a9134a261baec9d > .tab-nav li a:hover,
#a9134a261baec9d > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a9134a261baec9d > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a9134a261baec9d > .tab-wrap > div > .tab-nav li.uk-active a,
#a9134a261baec9d > .tab-nav li.uk-active a,
#a9134a261baec9d > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a9134a261baec9d > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a9134a261baec9d .layout-left li,
#a9134a261baec9d .layout-center li,
#a9134a261baec9d .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a9134a261baec9d .layout-left li a,
#a9134a261baec9d .layout-center li a,
#a9134a261baec9d .layout-right li a {
  height: 100%;
}
#a9134a261baec9d > .tab-tabs .layout-left {
  text-align: left;
}
#a9134a261baec9d > .tab-tabs .layout-center {
  text-align: center;
}
#a9134a261baec9d > .tab-tabs .layout-right {
  text-align: right;
}
#a9134a261baec9d .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a9134a261baec9d .tab-content-wrap {
  background-color: #ffffff;
}
#a9134a261baec9d .tab-contents,
#a9134a261baec9d .tab-contents-wrap {
  pointer-events: none;
}
#a9134a261baec9d .tab-content,
#a9134a261baec9d .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a9134a261baec9d .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a9134a261baec9d .tab-wrap .tab-contents {
  height: 100%;
}
#a9134a261baec9d .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a9134a261baec9d .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a9134a261baec9d .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a959da25c8a1aa2 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a04bfaf1c0ab0dc > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#abe90aebeea0edf > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#addb9ab4b4ad106 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5dc2aa113a2e59 > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad293a9f8da9a9f > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a10c6adc02aa65c > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b89aab1bae334 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7b7ca77baa4e4e > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a48eeacf24a9ca5 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9617a8507a3f2f > .ele-wrap {background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtRAOtDXPjVZOkkQJyV.jpg);background-repeat: no-repeat;background-position: top center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5d00ae866a74ff > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#aaf88a68b9a54d5 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#aaf88a68b9a54d5 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#aaf88a68b9a54d5 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#af05aa4460a3737 , #af05aa4460a3737 a{color: rgba(255, 255, 255, 1);}#a0368acfa1a7eac , #a0368acfa1a7eac a{color: rgba(255, 255, 255, 1);}#a3a35a9d00add99 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a3a35a9d00add99 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a3a35a9d00add99 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#ac65ca929daa1cc , #ac65ca929daa1cc a{color: rgba(255, 255, 255, 1);}#a1f2ba9853ac6c3 , #a1f2ba9853ac6c3 a{color: rgba(255, 255, 255, 1);}#a6a71afd61abf22 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a6a71afd61abf22 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a6a71afd61abf22 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#a1ba4a50e8a8acf , #a1ba4a50e8a8acf a{color: rgba(255, 255, 255, 1);}#a9a27aafb2a0440 , #a9a27aafb2a0440 a{color: rgba(255, 255, 255, 1);}#a29d6a4df8a8858 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a29d6a4df8a8858 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a29d6a4df8a8858 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#ac07fa2e8aa1fcf , #ac07fa2e8aa1fcf a{color: rgba(255, 255, 255, 1);}#a6194ab1b4a0fda , #a6194ab1b4a0fda a{color: rgba(255, 255, 255, 1);}#a2748a0c5eafa90 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-width: 1px;border-right-color: rgba(222, 222, 222, 1);border-right-style: solid;border-bottom-color: rgba(222, 222, 222, 1);border-bottom-width: 1px;border-bottom-style: solid;border-left-color: rgba(222, 222, 222, 1);border-top-color: rgba(222, 222, 222, 1);border-left-width: 1px;border-top-width: 1px;border-left-style: solid;border-top-style: solid;}#a2748a0c5eafa90 .hover-content-wrap:nth-child(1)
                            {background-size: cover;background-repeat: no-repeat;background-position: center center;}#a2748a0c5eafa90 .hover-content-wrap:nth-child(2)
                            {background-color: rgba(249, 249, 249, 1);}#a4c5da3943a5bb3 , #a4c5da3943a5bb3 a{color: rgba(255, 255, 255, 1);}#a9320ada52a33c5 , #a9320ada52a33c5 a{color: rgba(255, 255, 255, 1);}#a4f22a411ca15e2 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aac90ac87da30a8 > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#aa11ea4addac645 > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#aed10a82bda4683 > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#a1a2aabb7ca0270 > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#a59aca3cc3af8ae > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;border-top-left-radius: 500px;border-top-right-radius: 500px;}#aa0e4a0cdfa3c53 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#aa0e4a0cdfa3c53 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#aa0e4a0cdfa3c53 .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;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#aa0e4a0cdfa3c53 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#aa0e4a0cdfa3c53 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#aa0e4a0cdfa3c53 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#aa0e4a0cdfa3c53 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#aa0e4a0cdfa3c53 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#aa0e4a0cdfa3c53 .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;
  }
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article {
  padding: 10px 0px;
  border-bottom: 1px solid #ececec;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article .img_wrap {
  width: 25%;
  border-radius: 0px;
  overflow: hidden;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#aa0e4a0cdfa3c53 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#aa0e4a0cdfa3c53 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#aa0e4a0cdfa3c53 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#aa0e4a0cdfa3c53 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#aa0e4a0cdfa3c53 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a5d41aa49ea6c29 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a5d41aa49ea6c29 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a5d41aa49ea6c29 .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;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a5d41aa49ea6c29 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a5d41aa49ea6c29 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a5d41aa49ea6c29 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a5d41aa49ea6c29 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a5d41aa49ea6c29 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a5d41aa49ea6c29 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a5d41aa49ea6c29 .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;
  }
}
#a5d41aa49ea6c29 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a5d41aa49ea6c29 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a5d41aa49ea6c29 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a5d41aa49ea6c29 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a5d41aa49ea6c29 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a5d41aa49ea6c29 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a5d41aa49ea6c29 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a15f8aa29aa8ee8 .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a15f8aa29aa8ee8 .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a15f8aa29aa8ee8 .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a15f8aa29aa8ee8 .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a15f8aa29aa8ee8 .marquee-wrap .marquee-item svg,
#a15f8aa29aa8ee8 .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a15f8aa29aa8ee8 .marquee-wrap:hover {
  background: ;
}
#a15f8aa29aa8ee8 .marquee-wrap .content {
  position: absolute;
}
#a15f8aa29aa8ee8 .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a15f8aa29aa8ee8 .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a15f8aa29aa8ee8 .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#a2d99afd54a4463 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac734a6fc6af1de > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1d12a503ea4dc8 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a1d12a503ea4dc8 .uk-grid {
  margin-left: -4px;
}
#a1d12a503ea4dc8 .uk-grid > * {
  padding-left: 4px;
}
#a1d12a503ea4dc8 .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#a1d12a503ea4dc8 .uk-card {
  background-color: #ffffff;
  transition: all .3s ease;
}
#a1d12a503ea4dc8 .uk-card-media-top {
  overflow: hidden;
}
#a1d12a503ea4dc8 .uk-card-media-top .img {
  transition: all .3s ease;
}
#a1d12a503ea4dc8 .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#a1d12a503ea4dc8 .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#a1d12a503ea4dc8 .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#a1d12a503ea4dc8 .uk-card-body {
  padding: 15px 10px 8px;
}
#a1d12a503ea4dc8 hr {
  border-top-color: #ffffff;
  margin: 0 0 10px;
}
#a1d12a503ea4dc8 .uk-button {
  border: 1px solid #ececec;
}
#a1d12a503ea4dc8 .uk-card .title {
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: center;
  font-family: inherit;
  color: #333333;
}
#a1d12a503ea4dc8 .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: NotoSansSC-Light;
  color: #333333;
}
#a1d12a503ea4dc8 .uk-card:hover {
  background-color: #fefefe;
}
#a1d12a503ea4dc8 .uk-card:hover .title {
  color: #333333;
}
#a1d12a503ea4dc8 .uk-card:hover hr {
  border-top-color: #ffffff;
}
#a1d12a503ea4dc8 .uk-card:hover .img {
  transform: scale(1.2);
}
#a1d12a503ea4dc8 .uk-card:hover .abstract {
  color: #666666;
}
#a1d12a503ea4dc8 .uk-card:hover .datetime {
  color: #d3b267;
}
#a1d12a503ea4dc8 .uk-card:hover .category {
  color: #d3b267;
}
#a1d12a503ea4dc8 .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#a9befa3962a09ba .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a9befa3962a09ba .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a9befa3962a09ba .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a9befa3962a09ba .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a9befa3962a09ba .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a9befa3962a09ba .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a9befa3962a09ba .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;
}
#a9befa3962a09ba .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a9befa3962a09ba .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a9befa3962a09ba .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a9befa3962a09ba .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a9befa3962a09ba .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a9befa3962a09ba .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a9befa3962a09ba .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a9befa3962a09ba .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a9befa3962a09ba .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a9befa3962a09ba .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a9befa3962a09ba .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a9befa3962a09ba .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a9befa3962a09ba .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;
  }
}
#a9befa3962a09ba .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a9befa3962a09ba .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a9befa3962a09ba .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a9befa3962a09ba .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a9befa3962a09ba .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a9befa3962a09ba .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a9befa3962a09ba .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a9befa3962a09ba .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a9befa3962a09ba .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a9befa3962a09ba .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a9befa3962a09ba .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a9befa3962a09ba .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a9befa3962a09ba .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a9befa3962a09ba .ele-article-list .text-article:hover .time {
  color: auto;
}
#a8915afb5bad613 .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a8915afb5bad613 .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a8915afb5bad613 .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a8915afb5bad613 .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a8915afb5bad613 .marquee-wrap .marquee-item svg,
#a8915afb5bad613 .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a8915afb5bad613 .marquee-wrap:hover {
  background: ;
}
#a8915afb5bad613 .marquee-wrap .content {
  position: absolute;
}
#a8915afb5bad613 .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a8915afb5bad613 .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a8915afb5bad613 .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#ac1aca9419ae124 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aef36aba3ba0d76 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a095da180eaa5aa {
  overflow: hidden;
  pointer-events: none;
}
#a095da180eaa5aa > .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;
}
#a095da180eaa5aa > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a095da180eaa5aa > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a095da180eaa5aa > .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;
}
#a095da180eaa5aa > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a095da180eaa5aa > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a095da180eaa5aa > .tab-wrap > div > .tab-nav,
#a095da180eaa5aa > .tab-nav,
#a095da180eaa5aa > .tab-tabs > .tab-wrap > div > .tab-nav,
#a095da180eaa5aa > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a095da180eaa5aa > .tab-wrap > div > .tab-nav-horizontal,
#a095da180eaa5aa > .tab-nav-horizontal,
#a095da180eaa5aa > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a095da180eaa5aa > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a095da180eaa5aa > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a095da180eaa5aa > .tab-nav-horizontal::-webkit-scrollbar,
#a095da180eaa5aa > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a095da180eaa5aa > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a095da180eaa5aa > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a095da180eaa5aa > .tab-nav-horizontal.tagScroll,
#a095da180eaa5aa > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a095da180eaa5aa > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a095da180eaa5aa > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a095da180eaa5aa > .tab-nav-horizontal.tagScroll li a,
#a095da180eaa5aa > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a095da180eaa5aa > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a095da180eaa5aa > .tab-wrap > div > .tab-nav a,
#a095da180eaa5aa > .tab-nav a,
#a095da180eaa5aa > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a095da180eaa5aa > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#a095da180eaa5aa > .tab-wrap > div > .tab-nav li a,
#a095da180eaa5aa > .tab-nav li a,
#a095da180eaa5aa > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a095da180eaa5aa > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#a095da180eaa5aa > .tab-wrap > div > .tab-nav li a svg,
#a095da180eaa5aa > .tab-nav li a svg,
#a095da180eaa5aa > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a095da180eaa5aa > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a095da180eaa5aa > .tab-wrap > div > .tab-nav li a .ap_icon,
#a095da180eaa5aa > .tab-nav li a .ap_icon,
#a095da180eaa5aa > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a095da180eaa5aa > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a095da180eaa5aa > .tab-wrap > div > .tab-nav li a:hover,
#a095da180eaa5aa > .tab-nav li a:hover,
#a095da180eaa5aa > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a095da180eaa5aa > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a095da180eaa5aa > .tab-wrap > div > .tab-nav li.uk-active a,
#a095da180eaa5aa > .tab-nav li.uk-active a,
#a095da180eaa5aa > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a095da180eaa5aa > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a095da180eaa5aa .layout-left li,
#a095da180eaa5aa .layout-center li,
#a095da180eaa5aa .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a095da180eaa5aa .layout-left li a,
#a095da180eaa5aa .layout-center li a,
#a095da180eaa5aa .layout-right li a {
  height: 100%;
}
#a095da180eaa5aa > .tab-tabs .layout-left {
  text-align: left;
}
#a095da180eaa5aa > .tab-tabs .layout-center {
  text-align: center;
}
#a095da180eaa5aa > .tab-tabs .layout-right {
  text-align: right;
}
#a095da180eaa5aa .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a095da180eaa5aa .tab-content-wrap {
  background-color: #ffffff;
}
#a095da180eaa5aa .tab-contents,
#a095da180eaa5aa .tab-contents-wrap {
  pointer-events: none;
}
#a095da180eaa5aa .tab-content,
#a095da180eaa5aa .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a095da180eaa5aa .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a095da180eaa5aa .tab-wrap .tab-contents {
  height: 100%;
}
#a095da180eaa5aa .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a095da180eaa5aa .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a095da180eaa5aa .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1818afb42a020a .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a99cca9dcca980a .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a99cca9dcca980a .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a99cca9dcca980a .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a99cca9dcca980a .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a99cca9dcca980a .marquee-wrap .marquee-item svg,
#a99cca9dcca980a .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a99cca9dcca980a .marquee-wrap:hover {
  background: ;
}
#a99cca9dcca980a .marquee-wrap .content {
  position: absolute;
}
#a99cca9dcca980a .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a99cca9dcca980a .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a99cca9dcca980a .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#a622fa6aada81db .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a622fa6aada81db .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a622fa6aada81db .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a622fa6aada81db .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a622fa6aada81db .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a622fa6aada81db .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a622fa6aada81db .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;
}
#a622fa6aada81db .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a622fa6aada81db .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a622fa6aada81db .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a622fa6aada81db .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a622fa6aada81db .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a622fa6aada81db .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a622fa6aada81db .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a622fa6aada81db .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a622fa6aada81db .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a622fa6aada81db .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a622fa6aada81db .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a622fa6aada81db .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a622fa6aada81db .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;
  }
}
#a622fa6aada81db .ele-article-list .pic-article {
  padding: 10px 0px;
  border-bottom: 1px solid #ececec;
}
#a622fa6aada81db .ele-article-list .pic-article .img_wrap {
  width: 25%;
  border-radius: 0px;
  overflow: hidden;
}
#a622fa6aada81db .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a622fa6aada81db .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a622fa6aada81db .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a622fa6aada81db .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a622fa6aada81db .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a622fa6aada81db .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a622fa6aada81db .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a622fa6aada81db .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a622fa6aada81db .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a622fa6aada81db .ele-article-list .text-article:hover .time {
  color: auto;
}
#a61b4a6502aaf2e .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a61b4a6502aaf2e .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a61b4a6502aaf2e .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a61b4a6502aaf2e .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a61b4a6502aaf2e .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a61b4a6502aaf2e .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a61b4a6502aaf2e .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;
}
#a61b4a6502aaf2e .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a61b4a6502aaf2e .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a61b4a6502aaf2e .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a61b4a6502aaf2e .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a61b4a6502aaf2e .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a61b4a6502aaf2e .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a61b4a6502aaf2e .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a61b4a6502aaf2e .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a61b4a6502aaf2e .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a61b4a6502aaf2e .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a61b4a6502aaf2e .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a61b4a6502aaf2e .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a61b4a6502aaf2e .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;
  }
}
#a61b4a6502aaf2e .ele-article-list .pic-article {
  padding: 10px 0px;
  border-bottom: 1px solid #ececec;
}
#a61b4a6502aaf2e .ele-article-list .pic-article .img_wrap {
  width: 25%;
  border-radius: 0px;
  overflow: hidden;
}
#a61b4a6502aaf2e .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a61b4a6502aaf2e .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a61b4a6502aaf2e .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a61b4a6502aaf2e .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a61b4a6502aaf2e .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a61b4a6502aaf2e .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a61b4a6502aaf2e .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a61b4a6502aaf2e .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a61b4a6502aaf2e .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a61b4a6502aaf2e .ele-article-list .text-article:hover .time {
  color: auto;
}
#abf6ba779bac868 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#abf6ba779bac868 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#abf6ba779bac868 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#abf6ba779bac868 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#abf6ba779bac868 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#abf6ba779bac868 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#abf6ba779bac868 .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;
}
#abf6ba779bac868 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#abf6ba779bac868 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#abf6ba779bac868 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#abf6ba779bac868 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#abf6ba779bac868 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#abf6ba779bac868 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#abf6ba779bac868 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#abf6ba779bac868 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#abf6ba779bac868 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#abf6ba779bac868 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#abf6ba779bac868 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#abf6ba779bac868 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#abf6ba779bac868 .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;
  }
}
#abf6ba779bac868 .ele-article-list .pic-article {
  padding: 10px 0px;
  border-bottom: 1px solid #ececec;
}
#abf6ba779bac868 .ele-article-list .pic-article .img_wrap {
  width: 25%;
  border-radius: 0px;
  overflow: hidden;
}
#abf6ba779bac868 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#abf6ba779bac868 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#abf6ba779bac868 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#abf6ba779bac868 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#abf6ba779bac868 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#abf6ba779bac868 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#abf6ba779bac868 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#abf6ba779bac868 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#abf6ba779bac868 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#abf6ba779bac868 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a773ca0076a59f0 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a773ca0076a59f0 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a773ca0076a59f0 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a773ca0076a59f0 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a773ca0076a59f0 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a773ca0076a59f0 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a773ca0076a59f0 .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;
}
#a773ca0076a59f0 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a773ca0076a59f0 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a773ca0076a59f0 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a773ca0076a59f0 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a773ca0076a59f0 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a773ca0076a59f0 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a773ca0076a59f0 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a773ca0076a59f0 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a773ca0076a59f0 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a773ca0076a59f0 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a773ca0076a59f0 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a773ca0076a59f0 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a773ca0076a59f0 .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;
  }
}
#a773ca0076a59f0 .ele-article-list .pic-article {
  padding: 10px 0px;
  border-bottom: 1px solid #ececec;
}
#a773ca0076a59f0 .ele-article-list .pic-article .img_wrap {
  width: 25%;
  border-radius: 0px;
  overflow: hidden;
}
#a773ca0076a59f0 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a773ca0076a59f0 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a773ca0076a59f0 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a773ca0076a59f0 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a773ca0076a59f0 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a773ca0076a59f0 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a773ca0076a59f0 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a773ca0076a59f0 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a773ca0076a59f0 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a773ca0076a59f0 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a7f8aa5b18ac010 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a7f8aa5b18ac010 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a7f8aa5b18ac010 .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;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a7f8aa5b18ac010 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a7f8aa5b18ac010 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a7f8aa5b18ac010 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a7f8aa5b18ac010 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a7f8aa5b18ac010 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a7f8aa5b18ac010 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a7f8aa5b18ac010 .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;
  }
}
#a7f8aa5b18ac010 .ele-article-list .pic-article {
  padding: 10px 0px;
  border-bottom: 1px solid #ececec;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article .img_wrap {
  width: 25%;
  border-radius: 0px;
  overflow: hidden;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a7f8aa5b18ac010 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a7f8aa5b18ac010 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a7f8aa5b18ac010 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a7f8aa5b18ac010 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a7f8aa5b18ac010 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a406caa5dca5fe8 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a406caa5dca5fe8 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a406caa5dca5fe8 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a406caa5dca5fe8 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a406caa5dca5fe8 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a406caa5dca5fe8 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a406caa5dca5fe8 .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;
}
#a406caa5dca5fe8 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a406caa5dca5fe8 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a406caa5dca5fe8 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a406caa5dca5fe8 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a406caa5dca5fe8 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a406caa5dca5fe8 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a406caa5dca5fe8 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a406caa5dca5fe8 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a406caa5dca5fe8 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a406caa5dca5fe8 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a406caa5dca5fe8 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a406caa5dca5fe8 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a406caa5dca5fe8 .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;
  }
}
#a406caa5dca5fe8 .ele-article-list .pic-article {
  padding: 10px 0px;
  border-bottom: 1px solid #ececec;
}
#a406caa5dca5fe8 .ele-article-list .pic-article .img_wrap {
  width: 25%;
  border-radius: 0px;
  overflow: hidden;
}
#a406caa5dca5fe8 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a406caa5dca5fe8 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a406caa5dca5fe8 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a406caa5dca5fe8 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a406caa5dca5fe8 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a406caa5dca5fe8 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a406caa5dca5fe8 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a406caa5dca5fe8 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a406caa5dca5fe8 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a406caa5dca5fe8 .ele-article-list .text-article:hover .time {
  color: auto;
}
#aca24a4edfa741a {
  overflow: hidden;
  pointer-events: none;
}
#aca24a4edfa741a > .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;
}
#aca24a4edfa741a > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#aca24a4edfa741a > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#aca24a4edfa741a > .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;
}
#aca24a4edfa741a > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#aca24a4edfa741a > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#aca24a4edfa741a > .tab-wrap > div > .tab-nav,
#aca24a4edfa741a > .tab-nav,
#aca24a4edfa741a > .tab-tabs > .tab-wrap > div > .tab-nav,
#aca24a4edfa741a > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#aca24a4edfa741a > .tab-wrap > div > .tab-nav-horizontal,
#aca24a4edfa741a > .tab-nav-horizontal,
#aca24a4edfa741a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#aca24a4edfa741a > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#aca24a4edfa741a > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#aca24a4edfa741a > .tab-nav-horizontal::-webkit-scrollbar,
#aca24a4edfa741a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#aca24a4edfa741a > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#aca24a4edfa741a > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#aca24a4edfa741a > .tab-nav-horizontal.tagScroll,
#aca24a4edfa741a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#aca24a4edfa741a > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#aca24a4edfa741a > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#aca24a4edfa741a > .tab-nav-horizontal.tagScroll li a,
#aca24a4edfa741a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#aca24a4edfa741a > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#aca24a4edfa741a > .tab-wrap > div > .tab-nav a,
#aca24a4edfa741a > .tab-nav a,
#aca24a4edfa741a > .tab-tabs > .tab-wrap > div > .tab-nav a,
#aca24a4edfa741a > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#aca24a4edfa741a > .tab-wrap > div > .tab-nav li a,
#aca24a4edfa741a > .tab-nav li a,
#aca24a4edfa741a > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#aca24a4edfa741a > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#aca24a4edfa741a > .tab-wrap > div > .tab-nav li a svg,
#aca24a4edfa741a > .tab-nav li a svg,
#aca24a4edfa741a > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#aca24a4edfa741a > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#aca24a4edfa741a > .tab-wrap > div > .tab-nav li a .ap_icon,
#aca24a4edfa741a > .tab-nav li a .ap_icon,
#aca24a4edfa741a > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#aca24a4edfa741a > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#aca24a4edfa741a > .tab-wrap > div > .tab-nav li a:hover,
#aca24a4edfa741a > .tab-nav li a:hover,
#aca24a4edfa741a > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#aca24a4edfa741a > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#aca24a4edfa741a > .tab-wrap > div > .tab-nav li.uk-active a,
#aca24a4edfa741a > .tab-nav li.uk-active a,
#aca24a4edfa741a > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#aca24a4edfa741a > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#aca24a4edfa741a .layout-left li,
#aca24a4edfa741a .layout-center li,
#aca24a4edfa741a .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#aca24a4edfa741a .layout-left li a,
#aca24a4edfa741a .layout-center li a,
#aca24a4edfa741a .layout-right li a {
  height: 100%;
}
#aca24a4edfa741a > .tab-tabs .layout-left {
  text-align: left;
}
#aca24a4edfa741a > .tab-tabs .layout-center {
  text-align: center;
}
#aca24a4edfa741a > .tab-tabs .layout-right {
  text-align: right;
}
#aca24a4edfa741a .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#aca24a4edfa741a .tab-content-wrap {
  background-color: #ffffff;
}
#aca24a4edfa741a .tab-contents,
#aca24a4edfa741a .tab-contents-wrap {
  pointer-events: none;
}
#aca24a4edfa741a .tab-content,
#aca24a4edfa741a .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#aca24a4edfa741a .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#aca24a4edfa741a .tab-wrap .tab-contents {
  height: 100%;
}
#aca24a4edfa741a .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#aca24a4edfa741a .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#aca24a4edfa741a .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a100aa9d89aeca6 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af88da7930a4202 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a68ada316ea21ac .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a68ada316ea21ac .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a68ada316ea21ac .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a68ada316ea21ac .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a68ada316ea21ac .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a68ada316ea21ac .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a68ada316ea21ac .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;
}
#a68ada316ea21ac .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a68ada316ea21ac .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a68ada316ea21ac .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a68ada316ea21ac .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a68ada316ea21ac .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a68ada316ea21ac .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a68ada316ea21ac .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a68ada316ea21ac .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a68ada316ea21ac .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a68ada316ea21ac .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a68ada316ea21ac .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a68ada316ea21ac .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a68ada316ea21ac .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;
  }
}
#a68ada316ea21ac .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a68ada316ea21ac .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a68ada316ea21ac .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a68ada316ea21ac .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a68ada316ea21ac .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a68ada316ea21ac .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a68ada316ea21ac .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a68ada316ea21ac .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a68ada316ea21ac .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a68ada316ea21ac .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a68ada316ea21ac .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a68ada316ea21ac .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a68ada316ea21ac .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a68ada316ea21ac .ele-article-list .text-article:hover .time {
  color: auto;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae985a4e0bad751 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae814ad932aec22 .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#ae814ad932aec22 .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#ae814ad932aec22 .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#ae814ad932aec22 .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#ae814ad932aec22 .marquee-wrap .marquee-item svg,
#ae814ad932aec22 .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#ae814ad932aec22 .marquee-wrap:hover {
  background: ;
}
#ae814ad932aec22 .marquee-wrap .content {
  position: absolute;
}
#ae814ad932aec22 .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#ae814ad932aec22 .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#ae814ad932aec22 .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#adec1a3600a5e76 {
  overflow: hidden;
  pointer-events: none;
}
#adec1a3600a5e76 > .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;
}
#adec1a3600a5e76 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#adec1a3600a5e76 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#adec1a3600a5e76 > .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;
}
#adec1a3600a5e76 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#adec1a3600a5e76 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#adec1a3600a5e76 > .tab-wrap > div > .tab-nav,
#adec1a3600a5e76 > .tab-nav,
#adec1a3600a5e76 > .tab-tabs > .tab-wrap > div > .tab-nav,
#adec1a3600a5e76 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#adec1a3600a5e76 > .tab-wrap > div > .tab-nav-horizontal,
#adec1a3600a5e76 > .tab-nav-horizontal,
#adec1a3600a5e76 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#adec1a3600a5e76 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#adec1a3600a5e76 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#adec1a3600a5e76 > .tab-nav-horizontal::-webkit-scrollbar,
#adec1a3600a5e76 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#adec1a3600a5e76 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#adec1a3600a5e76 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#adec1a3600a5e76 > .tab-nav-horizontal.tagScroll,
#adec1a3600a5e76 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#adec1a3600a5e76 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#adec1a3600a5e76 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#adec1a3600a5e76 > .tab-nav-horizontal.tagScroll li a,
#adec1a3600a5e76 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#adec1a3600a5e76 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#adec1a3600a5e76 > .tab-wrap > div > .tab-nav a,
#adec1a3600a5e76 > .tab-nav a,
#adec1a3600a5e76 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#adec1a3600a5e76 > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#adec1a3600a5e76 > .tab-wrap > div > .tab-nav li a,
#adec1a3600a5e76 > .tab-nav li a,
#adec1a3600a5e76 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#adec1a3600a5e76 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#adec1a3600a5e76 > .tab-wrap > div > .tab-nav li a svg,
#adec1a3600a5e76 > .tab-nav li a svg,
#adec1a3600a5e76 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#adec1a3600a5e76 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#adec1a3600a5e76 > .tab-wrap > div > .tab-nav li a .ap_icon,
#adec1a3600a5e76 > .tab-nav li a .ap_icon,
#adec1a3600a5e76 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#adec1a3600a5e76 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#adec1a3600a5e76 > .tab-wrap > div > .tab-nav li a:hover,
#adec1a3600a5e76 > .tab-nav li a:hover,
#adec1a3600a5e76 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#adec1a3600a5e76 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#adec1a3600a5e76 > .tab-wrap > div > .tab-nav li.uk-active a,
#adec1a3600a5e76 > .tab-nav li.uk-active a,
#adec1a3600a5e76 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#adec1a3600a5e76 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#adec1a3600a5e76 .layout-left li,
#adec1a3600a5e76 .layout-center li,
#adec1a3600a5e76 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#adec1a3600a5e76 .layout-left li a,
#adec1a3600a5e76 .layout-center li a,
#adec1a3600a5e76 .layout-right li a {
  height: 100%;
}
#adec1a3600a5e76 > .tab-tabs .layout-left {
  text-align: left;
}
#adec1a3600a5e76 > .tab-tabs .layout-center {
  text-align: center;
}
#adec1a3600a5e76 > .tab-tabs .layout-right {
  text-align: right;
}
#adec1a3600a5e76 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#adec1a3600a5e76 .tab-content-wrap {
  background-color: #ffffff;
}
#adec1a3600a5e76 .tab-contents,
#adec1a3600a5e76 .tab-contents-wrap {
  pointer-events: none;
}
#adec1a3600a5e76 .tab-content,
#adec1a3600a5e76 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#adec1a3600a5e76 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#adec1a3600a5e76 .tab-wrap .tab-contents {
  height: 100%;
}
#adec1a3600a5e76 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#adec1a3600a5e76 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#adec1a3600a5e76 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a6132a90dda4fa9 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acf56a835daa486 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aab5aadaabad11d .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#aab5aadaabad11d .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aab5aadaabad11d .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#aab5aadaabad11d .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#aab5aadaabad11d .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#aab5aadaabad11d .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#aab5aadaabad11d .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;
}
#aab5aadaabad11d .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#aab5aadaabad11d .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#aab5aadaabad11d .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#aab5aadaabad11d .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#aab5aadaabad11d .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#aab5aadaabad11d .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#aab5aadaabad11d .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#aab5aadaabad11d .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#aab5aadaabad11d .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#aab5aadaabad11d .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#aab5aadaabad11d .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#aab5aadaabad11d .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#aab5aadaabad11d .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;
  }
}
#aab5aadaabad11d .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#aab5aadaabad11d .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#aab5aadaabad11d .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#aab5aadaabad11d .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#aab5aadaabad11d .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#aab5aadaabad11d .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#aab5aadaabad11d .ele-article-list .pic-article:hover .category {
  color: auto;
}
#aab5aadaabad11d .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#aab5aadaabad11d .ele-article-list .pic-article:hover .time {
  color: auto;
}
#aab5aadaabad11d .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#aab5aadaabad11d .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#aab5aadaabad11d .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#aab5aadaabad11d .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#aab5aadaabad11d .ele-article-list .text-article:hover .time {
  color: auto;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab3bdabdcaaf0b6 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a0490a3f30a5ff6 .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a0490a3f30a5ff6 .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a0490a3f30a5ff6 .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a0490a3f30a5ff6 .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a0490a3f30a5ff6 .marquee-wrap .marquee-item svg,
#a0490a3f30a5ff6 .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a0490a3f30a5ff6 .marquee-wrap:hover {
  background: ;
}
#a0490a3f30a5ff6 .marquee-wrap .content {
  position: absolute;
}
#a0490a3f30a5ff6 .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a0490a3f30a5ff6 .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a0490a3f30a5ff6 .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#afe77a1020a8b00 {
  overflow: hidden;
  pointer-events: none;
}
#afe77a1020a8b00 > .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;
}
#afe77a1020a8b00 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#afe77a1020a8b00 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#afe77a1020a8b00 > .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;
}
#afe77a1020a8b00 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#afe77a1020a8b00 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#afe77a1020a8b00 > .tab-wrap > div > .tab-nav,
#afe77a1020a8b00 > .tab-nav,
#afe77a1020a8b00 > .tab-tabs > .tab-wrap > div > .tab-nav,
#afe77a1020a8b00 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#afe77a1020a8b00 > .tab-wrap > div > .tab-nav-horizontal,
#afe77a1020a8b00 > .tab-nav-horizontal,
#afe77a1020a8b00 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#afe77a1020a8b00 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#afe77a1020a8b00 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#afe77a1020a8b00 > .tab-nav-horizontal::-webkit-scrollbar,
#afe77a1020a8b00 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#afe77a1020a8b00 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#afe77a1020a8b00 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#afe77a1020a8b00 > .tab-nav-horizontal.tagScroll,
#afe77a1020a8b00 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#afe77a1020a8b00 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#afe77a1020a8b00 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#afe77a1020a8b00 > .tab-nav-horizontal.tagScroll li a,
#afe77a1020a8b00 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#afe77a1020a8b00 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#afe77a1020a8b00 > .tab-wrap > div > .tab-nav a,
#afe77a1020a8b00 > .tab-nav a,
#afe77a1020a8b00 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#afe77a1020a8b00 > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#afe77a1020a8b00 > .tab-wrap > div > .tab-nav li a,
#afe77a1020a8b00 > .tab-nav li a,
#afe77a1020a8b00 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#afe77a1020a8b00 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#afe77a1020a8b00 > .tab-wrap > div > .tab-nav li a svg,
#afe77a1020a8b00 > .tab-nav li a svg,
#afe77a1020a8b00 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#afe77a1020a8b00 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#afe77a1020a8b00 > .tab-wrap > div > .tab-nav li a .ap_icon,
#afe77a1020a8b00 > .tab-nav li a .ap_icon,
#afe77a1020a8b00 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#afe77a1020a8b00 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#afe77a1020a8b00 > .tab-wrap > div > .tab-nav li a:hover,
#afe77a1020a8b00 > .tab-nav li a:hover,
#afe77a1020a8b00 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#afe77a1020a8b00 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#afe77a1020a8b00 > .tab-wrap > div > .tab-nav li.uk-active a,
#afe77a1020a8b00 > .tab-nav li.uk-active a,
#afe77a1020a8b00 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#afe77a1020a8b00 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#afe77a1020a8b00 .layout-left li,
#afe77a1020a8b00 .layout-center li,
#afe77a1020a8b00 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#afe77a1020a8b00 .layout-left li a,
#afe77a1020a8b00 .layout-center li a,
#afe77a1020a8b00 .layout-right li a {
  height: 100%;
}
#afe77a1020a8b00 > .tab-tabs .layout-left {
  text-align: left;
}
#afe77a1020a8b00 > .tab-tabs .layout-center {
  text-align: center;
}
#afe77a1020a8b00 > .tab-tabs .layout-right {
  text-align: right;
}
#afe77a1020a8b00 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#afe77a1020a8b00 .tab-content-wrap {
  background-color: #ffffff;
}
#afe77a1020a8b00 .tab-contents,
#afe77a1020a8b00 .tab-contents-wrap {
  pointer-events: none;
}
#afe77a1020a8b00 .tab-content,
#afe77a1020a8b00 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#afe77a1020a8b00 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#afe77a1020a8b00 .tab-wrap .tab-contents {
  height: 100%;
}
#afe77a1020a8b00 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#afe77a1020a8b00 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#afe77a1020a8b00 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#aa2d8a5029a6d74 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a70d4a2cefa6974 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a815eaf92dacdec .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a815eaf92dacdec .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a815eaf92dacdec .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a815eaf92dacdec .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a815eaf92dacdec .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a815eaf92dacdec .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a815eaf92dacdec .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;
}
#a815eaf92dacdec .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a815eaf92dacdec .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a815eaf92dacdec .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a815eaf92dacdec .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a815eaf92dacdec .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a815eaf92dacdec .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a815eaf92dacdec .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a815eaf92dacdec .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a815eaf92dacdec .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a815eaf92dacdec .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a815eaf92dacdec .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a815eaf92dacdec .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a815eaf92dacdec .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;
  }
}
#a815eaf92dacdec .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a815eaf92dacdec .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a815eaf92dacdec .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a815eaf92dacdec .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#a815eaf92dacdec .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a815eaf92dacdec .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a815eaf92dacdec .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a815eaf92dacdec .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a815eaf92dacdec .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a815eaf92dacdec .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a815eaf92dacdec .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#a815eaf92dacdec .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a815eaf92dacdec .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a815eaf92dacdec .ele-article-list .text-article:hover .time {
  color: auto;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a069cabd67a6a21 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a667ea64e6a45b6 .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a667ea64e6a45b6 .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a667ea64e6a45b6 .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a667ea64e6a45b6 .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a667ea64e6a45b6 .marquee-wrap .marquee-item svg,
#a667ea64e6a45b6 .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a667ea64e6a45b6 .marquee-wrap:hover {
  background: ;
}
#a667ea64e6a45b6 .marquee-wrap .content {
  position: absolute;
}
#a667ea64e6a45b6 .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a667ea64e6a45b6 .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a667ea64e6a45b6 .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#a2460a6eb1ae529 {
  overflow: hidden;
  pointer-events: none;
}
#a2460a6eb1ae529 > .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;
}
#a2460a6eb1ae529 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a2460a6eb1ae529 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a2460a6eb1ae529 > .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;
}
#a2460a6eb1ae529 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a2460a6eb1ae529 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a2460a6eb1ae529 > .tab-wrap > div > .tab-nav,
#a2460a6eb1ae529 > .tab-nav,
#a2460a6eb1ae529 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a2460a6eb1ae529 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a2460a6eb1ae529 > .tab-wrap > div > .tab-nav-horizontal,
#a2460a6eb1ae529 > .tab-nav-horizontal,
#a2460a6eb1ae529 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a2460a6eb1ae529 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a2460a6eb1ae529 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a2460a6eb1ae529 > .tab-nav-horizontal::-webkit-scrollbar,
#a2460a6eb1ae529 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a2460a6eb1ae529 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a2460a6eb1ae529 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a2460a6eb1ae529 > .tab-nav-horizontal.tagScroll,
#a2460a6eb1ae529 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a2460a6eb1ae529 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a2460a6eb1ae529 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a2460a6eb1ae529 > .tab-nav-horizontal.tagScroll li a,
#a2460a6eb1ae529 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a2460a6eb1ae529 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a2460a6eb1ae529 > .tab-wrap > div > .tab-nav a,
#a2460a6eb1ae529 > .tab-nav a,
#a2460a6eb1ae529 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a2460a6eb1ae529 > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#a2460a6eb1ae529 > .tab-wrap > div > .tab-nav li a,
#a2460a6eb1ae529 > .tab-nav li a,
#a2460a6eb1ae529 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a2460a6eb1ae529 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#a2460a6eb1ae529 > .tab-wrap > div > .tab-nav li a svg,
#a2460a6eb1ae529 > .tab-nav li a svg,
#a2460a6eb1ae529 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a2460a6eb1ae529 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a2460a6eb1ae529 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a2460a6eb1ae529 > .tab-nav li a .ap_icon,
#a2460a6eb1ae529 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a2460a6eb1ae529 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a2460a6eb1ae529 > .tab-wrap > div > .tab-nav li a:hover,
#a2460a6eb1ae529 > .tab-nav li a:hover,
#a2460a6eb1ae529 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a2460a6eb1ae529 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a2460a6eb1ae529 > .tab-wrap > div > .tab-nav li.uk-active a,
#a2460a6eb1ae529 > .tab-nav li.uk-active a,
#a2460a6eb1ae529 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a2460a6eb1ae529 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a2460a6eb1ae529 .layout-left li,
#a2460a6eb1ae529 .layout-center li,
#a2460a6eb1ae529 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a2460a6eb1ae529 .layout-left li a,
#a2460a6eb1ae529 .layout-center li a,
#a2460a6eb1ae529 .layout-right li a {
  height: 100%;
}
#a2460a6eb1ae529 > .tab-tabs .layout-left {
  text-align: left;
}
#a2460a6eb1ae529 > .tab-tabs .layout-center {
  text-align: center;
}
#a2460a6eb1ae529 > .tab-tabs .layout-right {
  text-align: right;
}
#a2460a6eb1ae529 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a2460a6eb1ae529 .tab-content-wrap {
  background-color: #ffffff;
}
#a2460a6eb1ae529 .tab-contents,
#a2460a6eb1ae529 .tab-contents-wrap {
  pointer-events: none;
}
#a2460a6eb1ae529 .tab-content,
#a2460a6eb1ae529 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a2460a6eb1ae529 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a2460a6eb1ae529 .tab-wrap .tab-contents {
  height: 100%;
}
#a2460a6eb1ae529 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a2460a6eb1ae529 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a2460a6eb1ae529 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a9cd2afcbfa5486 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9248ad617affae > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2bb4aca93ae512 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a2bb4aca93ae512 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a2bb4aca93ae512 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a2bb4aca93ae512 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a2bb4aca93ae512 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a2bb4aca93ae512 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a2bb4aca93ae512 .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;
}
#a2bb4aca93ae512 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a2bb4aca93ae512 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a2bb4aca93ae512 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a2bb4aca93ae512 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a2bb4aca93ae512 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a2bb4aca93ae512 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a2bb4aca93ae512 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a2bb4aca93ae512 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a2bb4aca93ae512 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a2bb4aca93ae512 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a2bb4aca93ae512 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a2bb4aca93ae512 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a2bb4aca93ae512 .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;
  }
}
#a2bb4aca93ae512 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a2bb4aca93ae512 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a2bb4aca93ae512 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a2bb4aca93ae512 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#a2bb4aca93ae512 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a2bb4aca93ae512 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a2bb4aca93ae512 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a2bb4aca93ae512 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a2bb4aca93ae512 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a2bb4aca93ae512 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a2bb4aca93ae512 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#a2bb4aca93ae512 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a2bb4aca93ae512 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a2bb4aca93ae512 .ele-article-list .text-article:hover .time {
  color: auto;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a33aca10e0ae107 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a4660aa277a9b26 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0222a1c79ad3d3 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a0222a1c79ad3d3 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a0222a1c79ad3d3 .ap-icon {
  margin-right: 6px;
}
#a0222a1c79ad3d3 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a0222a1c79ad3d3 .menu-list > li.icon-bottom > a,
#a0222a1c79ad3d3 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a0222a1c79ad3d3 .menu-list > li.icon-bottom > a .ap-icon,
#a0222a1c79ad3d3 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a0222a1c79ad3d3 .menu-list > li.icon-bottom > a .ap-icon svg,
#a0222a1c79ad3d3 .menu-list > li.icon-top > a .ap-icon svg,
#a0222a1c79ad3d3 .menu-list > li.icon-bottom > a .ap-icon img,
#a0222a1c79ad3d3 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a0222a1c79ad3d3 .menu-list > li.icon-right > a .ap-icon,
#a0222a1c79ad3d3 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a0222a1c79ad3d3 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a0222a1c79ad3d3 .menu-list > li:hover > a,
#a0222a1c79ad3d3 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a0222a1c79ad3d3 .menu-list > li.active > a {
  background-color: #93353c;
}
#a0222a1c79ad3d3 .menu-list ul,
#a0222a1c79ad3d3 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a0222a1c79ad3d3 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a0222a1c79ad3d3 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a0222a1c79ad3d3 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a0222a1c79ad3d3 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a4c3aaa1aaa664c > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa625a6cb6a29e0 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#aa625a6cb6a29e0 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#aa625a6cb6a29e0 .ap-icon {
  margin-right: 6px;
}
#aa625a6cb6a29e0 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#aa625a6cb6a29e0 .menu-list > li.icon-bottom > a,
#aa625a6cb6a29e0 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#aa625a6cb6a29e0 .menu-list > li.icon-bottom > a .ap-icon,
#aa625a6cb6a29e0 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#aa625a6cb6a29e0 .menu-list > li.icon-bottom > a .ap-icon svg,
#aa625a6cb6a29e0 .menu-list > li.icon-top > a .ap-icon svg,
#aa625a6cb6a29e0 .menu-list > li.icon-bottom > a .ap-icon img,
#aa625a6cb6a29e0 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#aa625a6cb6a29e0 .menu-list > li.icon-right > a .ap-icon,
#aa625a6cb6a29e0 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#aa625a6cb6a29e0 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#aa625a6cb6a29e0 .menu-list > li:hover > a,
#aa625a6cb6a29e0 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#aa625a6cb6a29e0 .menu-list > li.active > a {
  background-color: #93353c;
}
#aa625a6cb6a29e0 .menu-list ul,
#aa625a6cb6a29e0 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#aa625a6cb6a29e0 .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#aa625a6cb6a29e0 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#aa625a6cb6a29e0 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#aa625a6cb6a29e0 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae14ca3b39ac93e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0352aed77a5dfd .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a0352aed77a5dfd .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a0352aed77a5dfd .ap-icon {
  margin-right: 6px;
}
#a0352aed77a5dfd .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a0352aed77a5dfd .menu-list > li.icon-bottom > a,
#a0352aed77a5dfd .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a0352aed77a5dfd .menu-list > li.icon-bottom > a .ap-icon,
#a0352aed77a5dfd .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a0352aed77a5dfd .menu-list > li.icon-bottom > a .ap-icon svg,
#a0352aed77a5dfd .menu-list > li.icon-top > a .ap-icon svg,
#a0352aed77a5dfd .menu-list > li.icon-bottom > a .ap-icon img,
#a0352aed77a5dfd .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a0352aed77a5dfd .menu-list > li.icon-right > a .ap-icon,
#a0352aed77a5dfd .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a0352aed77a5dfd .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a0352aed77a5dfd .menu-list > li:hover > a,
#a0352aed77a5dfd .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a0352aed77a5dfd .menu-list > li.active > a {
  background-color: #93353c;
}
#a0352aed77a5dfd .menu-list ul,
#a0352aed77a5dfd .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a0352aed77a5dfd .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a0352aed77a5dfd .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a0352aed77a5dfd .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a0352aed77a5dfd .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a9950a21fbac98e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a621aa35a2ae98e > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVTOtHSPtNZOEkMESOJ.jpg);}#a621aa35a2ae98e  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a9563a8e81a2030 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a8c2ba44b3a67d6 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a8c2ba44b3a67d6 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a05cba129da2c48 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a9099af484a10ae > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVTOtpUPt0ZNEkMESOJ.jpg);}#a9099af484a10ae  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a5401a7568a3d7e > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a410ea9a27a4467 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a410ea9a27a4467 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a57d7ae6e1aa041 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a6461a67ecab37a > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVTOtHSPtNZOEkMESOJ.jpg);}#a6461a67ecab37a  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ac9dfaa30aa3aaa > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a6b26a9b67a4505 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a6b26a9b67a4505 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae80ea7729ab017 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a46a0aa1cfa0e43 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ae0e1a2506a065a > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtDPNtVTNOkMESOJ.jpg);}#ae0e1a2506a065a  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a7128a3159a77cd > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a7154a1e1baa674 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a7154a1e1baa674 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a9682abf4dad844 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a551bad6bda72a5 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtpOPtDZNOkMESOJ.jpg);}#a551bad6bda72a5  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a71d1abc58ae9a4 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a199da2d7aab103 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a199da2d7aab103 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a8695ace15aad06 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#adee1a7d93af26b > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVTNDHONNNNPOkMESOJ.jpg);}#adee1a7d93af26b  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a0e7ca05e5a4f6e > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aeb4ea8070a2df0 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aeb4ea8070a2df0 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ab42da3782af2e9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a2f76a9833aa16d > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVTNjZQNtHTNOkMESOJ.jpg);}#a2f76a9833aa16d  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a2ce4ae660a3af0 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a0ba8ae717af824 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a0ba8ae717af824 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aaed9a859ea6167 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a34d0a6b9ca8de0 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVTNjZQNDpONukMESOJ.jpg);}#a34d0a6b9ca8de0  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a6257a6904a4ba2 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aa33fac968a3eb4 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aa33fac968a3eb4 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2bd5ab1dcacd47 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aa97dac06fa6d2c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a348ba537ca1edf > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtpXNjZZNkkMESOJ.jpg);}#a348ba537ca1edf  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a23c6ad58eae170 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a96d8a0c95a1e0f .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a96d8a0c95a1e0f .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aedf9abba6ae102 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a2230a9cffa90c8 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZNDxXNN0ONEkMESOJ.jpg);}#a2230a9cffa90c8  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a963ca6affacf20 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a02e4aa93fa0f49 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a02e4aa93fa0f49 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aa947a2b2cad014 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a654eabb02a13e8 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZNDtSOjjZNukMESOJ.jpg);}#a654eabb02a13e8  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a7540a3a92a2995 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a3d22af57ca5d2e .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a3d22af57ca5d2e .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aa021a21daa4908 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ad130ae386af37b > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZNNNOOtZZNEkMESOJ.jpg);}#ad130ae386af37b  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ad9f1a90c3a24c0 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a61cba619fad229 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a61cba619fad229 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a53b6a7b78a4e8f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a850aac88fad642 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZNNZQNDDONukMESOJ.jpg);}#a850aac88fad642  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a4d22aca01a961f > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#adeaeab7bdac9a3 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#adeaeab7bdac9a3 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a92fba5353a4829 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a5d94a297cab79c > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZNNZXOjVSOkkMESOJ.jpg);}#a5d94a297cab79c  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ab06fa9b73a608f > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a0526a4d4aa1f48 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a0526a4d4aa1f48 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0982aefffabe3e .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a910fa8386a88c9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a5ebfa0dd4aea8c > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZNtDTPtVROkkQJyV.jpg);}#a5ebfa0dd4aea8c  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ae0bea3571a5806 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a063fa633ba4f48 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a063fa633ba4f48 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2658ab6adac5a1 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#afacaa2fa7a1798 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#add33a0c7da5fdf > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZQDDPODpSOukMESOJ.jpg);}#add33a0c7da5fdf  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a14cca36a5a1e1c > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aeb3bae11ea2739 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aeb3bae11ea2739 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a815bac1daa73f7 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a08a9a55d5a3e33 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfPNjHPOtpOOOkMESOJ.jpg);}#a08a9a55d5a3e33  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a1961aabe9aee2c > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a11a3ae8aaa4616 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a11a3ae8aaa4616 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#acfdcaa6dea4106 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a5c21a2124a993a > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZQDHOOtVTOukMESOJ.jpg);}#a5c21a2124a993a  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a58ada189aa9474 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ada8aa461ba5474 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ada8aa461ba5474 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ab1c6af677a2612 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a94b5abac7aaecc > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfPNjtUODLSNkkMESOJ.jpg);}#a94b5abac7aaecc  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#afba1af141a0316 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aef50aebe4afe41 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aef50aebe4afe41 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a25d0a0d64a5796 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a467ea0fe6a7309 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZQDLQNtRSNEkMESOJ.jpg);}#a467ea0fe6a7309  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aca68a15ffa12d8 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a99f6a8f4ba8b07 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a99f6a8f4ba8b07 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a60c4ae986a81a2 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ada69aacfda20c8 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZQDLRNNNPOkkMESOJ.jpg);}#ada69aacfda20c8  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ac387aa15ba79f1 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a9011a5492ae1e5 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a9011a5492ae1e5 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a423ea4e56ac895 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a5c1faa74ca5614 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a46aca8db8a2b5b > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZQNpTNDHNNukMESOJ.jpg);}#a46aca8db8a2b5b  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a3ed9ad89cab976 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#abb04a55a9a04cf .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#abb04a55a9a04cf .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a3c80a8a34a137c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a0bfbaf38eabfbd > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZQNLSONVSPOkMESOJ.jpg);}#a0bfbaf38eabfbd  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a8efaa4860abc1e > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a7d87a3065a9788 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a7d87a3065a9788 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#af9dcaae7ba6a7d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#afc43a108aa680d > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZQNxRNNLPOOkMESOJ.jpg);}#afc43a108aa680d  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a6873a787da6e45 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a5ec0aaf71afc70 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a5ec0aaf71afc70 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aece0ae22aafeb4 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a5cc3af7aba5133 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZQNLSONVSPOkMESOJ.jpg);}#a5cc3af7aba5133  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a1468aafaaafa98 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a9ab0a3411a264c .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a9ab0a3411a264c .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae9cea7571a09dd > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a177faa94ca5895 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNAODRTONLROukMESOJ.jpg);}#a177faa94ca5895  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ae3b5a1c76af7ea > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a0b73a2071a2d4e .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a0b73a2071a2d4e .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a01bcacc35a37ff > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a226faf9b5ab982 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNAODNNONZQNkkMESOJ.jpg);}#a226faf9b5ab982  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#afd1aa2a07a41ad > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a4899a4d2aaad4d .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a4899a4d2aaad4d .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#adbb6a1d18a19f9 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a9ef3a957ea8173 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a9ef3a957ea8173 .uk-grid {
  margin-left: -20px;
}
#a9ef3a957ea8173 .uk-grid > * {
  padding-left: 20px;
}
#a9ef3a957ea8173 .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#a9ef3a957ea8173 .uk-card {
  background-color: #ffffff;
  transition: all .3s ease;
}
#a9ef3a957ea8173 .uk-card-media-top {
  overflow: hidden;
}
#a9ef3a957ea8173 .uk-card-media-top .img {
  transition: all .3s ease;
}
#a9ef3a957ea8173 .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#a9ef3a957ea8173 .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#a9ef3a957ea8173 .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#a9ef3a957ea8173 .uk-card-body {
  padding: 15px 10px 8px;
}
#a9ef3a957ea8173 hr {
  border-top-color: #ffffff;
  margin: 0 0 10px;
}
#a9ef3a957ea8173 .uk-button {
  border: 1px solid #ececec;
}
#a9ef3a957ea8173 .uk-card .title {
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: center;
  font-family: inherit;
  color: #333333;
}
#a9ef3a957ea8173 .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: NotoSansSC-Light;
  color: #8bbaff;
}
#a9ef3a957ea8173 .uk-card:hover {
  background-color: #93353c;
}
#a9ef3a957ea8173 .uk-card:hover .title {
  color: #fff;
}
#a9ef3a957ea8173 .uk-card:hover hr {
  border-top-color: #b8434b;
}
#a9ef3a957ea8173 .uk-card:hover .img {
  transform: scale(1.2);
}
#a9ef3a957ea8173 .uk-card:hover .abstract {
  color: #fff;
}
#a9ef3a957ea8173 .uk-card:hover .datetime {
  color: #93353c;
}
#a9ef3a957ea8173 .uk-card:hover .category {
  color: #93353c;
}
#a9ef3a957ea8173 .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#a6d9ba9a11a3f2b .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a6d9ba9a11a3f2b .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a6d9ba9a11a3f2b .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;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a6d9ba9a11a3f2b .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a6d9ba9a11a3f2b .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a6d9ba9a11a3f2b .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a6d9ba9a11a3f2b .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a6d9ba9a11a3f2b .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a6d9ba9a11a3f2b .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;
  }
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a6d9ba9a11a3f2b .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a6d9ba9a11a3f2b .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a6d9ba9a11a3f2b .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#a6d9ba9a11a3f2b .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a6d9ba9a11a3f2b .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a6d9ba9a11a3f2b .ele-article-list .text-article:hover .time {
  color: auto;
}
#a3e68a5182a4fe4 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2281a1ee3a36e2 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a974daa871a985d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(238, 238, 238, 1);border-right-style: solid;border-left-color: rgba(238, 238, 238, 1);border-bottom-color: rgba(238, 238, 238, 1);border-top-color: rgba(238, 238, 238, 1);border-left-style: solid;border-bottom-style: solid;border-top-style: solid;}#a7a57a1416a352f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(238, 238, 238, 1);border-right-style: solid;border-left-color: rgba(238, 238, 238, 1);border-bottom-color: rgba(238, 238, 238, 1);border-top-color: rgba(238, 238, 238, 1);border-left-style: solid;border-bottom-style: solid;border-top-style: solid;}#a0055a452bad1f0 .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a0055a452bad1f0 .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a0055a452bad1f0 .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a0055a452bad1f0 .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a0055a452bad1f0 .marquee-wrap .marquee-item svg,
#a0055a452bad1f0 .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a0055a452bad1f0 .marquee-wrap:hover {
  background: ;
}
#a0055a452bad1f0 .marquee-wrap .content {
  position: absolute;
}
#a0055a452bad1f0 .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a0055a452bad1f0 .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a0055a452bad1f0 .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#ae60aaacb7a31d6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(238, 238, 238, 1);border-right-style: solid;border-left-color: rgba(238, 238, 238, 1);border-bottom-color: rgba(238, 238, 238, 1);border-top-color: rgba(238, 238, 238, 1);border-left-style: solid;border-bottom-style: solid;border-top-style: solid;}#a03c1a55e6a5673 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a03c1a55e6a5673 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a03c1a55e6a5673 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a03c1a55e6a5673 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a03c1a55e6a5673 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a03c1a55e6a5673 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a03c1a55e6a5673 .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;
}
#a03c1a55e6a5673 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a03c1a55e6a5673 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a03c1a55e6a5673 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a03c1a55e6a5673 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a03c1a55e6a5673 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a03c1a55e6a5673 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a03c1a55e6a5673 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a03c1a55e6a5673 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a03c1a55e6a5673 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a03c1a55e6a5673 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a03c1a55e6a5673 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a03c1a55e6a5673 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a03c1a55e6a5673 .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;
  }
}
#a03c1a55e6a5673 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a03c1a55e6a5673 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a03c1a55e6a5673 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a03c1a55e6a5673 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#a03c1a55e6a5673 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a03c1a55e6a5673 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a03c1a55e6a5673 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a03c1a55e6a5673 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a03c1a55e6a5673 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a03c1a55e6a5673 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a03c1a55e6a5673 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#a03c1a55e6a5673 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a03c1a55e6a5673 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a03c1a55e6a5673 .ele-article-list .text-article:hover .time {
  color: auto;
}
#afd8ba3159a2a44 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9a01ab2a5ae747 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a26f2a3d2ca0982 .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a26f2a3d2ca0982 .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a26f2a3d2ca0982 .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a26f2a3d2ca0982 .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a26f2a3d2ca0982 .marquee-wrap .marquee-item svg,
#a26f2a3d2ca0982 .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a26f2a3d2ca0982 .marquee-wrap:hover {
  background: ;
}
#a26f2a3d2ca0982 .marquee-wrap .content {
  position: absolute;
}
#a26f2a3d2ca0982 .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a26f2a3d2ca0982 .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a26f2a3d2ca0982 .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#aeee9aa5b4a1d5d .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#aeee9aa5b4a1d5d .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#aeee9aa5b4a1d5d .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;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#aeee9aa5b4a1d5d .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#aeee9aa5b4a1d5d .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#aeee9aa5b4a1d5d .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#aeee9aa5b4a1d5d .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#aeee9aa5b4a1d5d .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#aeee9aa5b4a1d5d .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;
  }
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article:hover .category {
  color: auto;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#aeee9aa5b4a1d5d .ele-article-list .pic-article:hover .time {
  color: auto;
}
#aeee9aa5b4a1d5d .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#aeee9aa5b4a1d5d .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#aeee9aa5b4a1d5d .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#aeee9aa5b4a1d5d .ele-article-list .text-article:hover .time {
  color: auto;
}
#a894da3d63ae509 {
  overflow: hidden;
  pointer-events: none;
}
#a894da3d63ae509 > .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;
}
#a894da3d63ae509 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a894da3d63ae509 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a894da3d63ae509 > .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;
}
#a894da3d63ae509 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a894da3d63ae509 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a894da3d63ae509 > .tab-wrap > div > .tab-nav,
#a894da3d63ae509 > .tab-nav,
#a894da3d63ae509 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a894da3d63ae509 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a894da3d63ae509 > .tab-wrap > div > .tab-nav-horizontal,
#a894da3d63ae509 > .tab-nav-horizontal,
#a894da3d63ae509 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a894da3d63ae509 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a894da3d63ae509 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a894da3d63ae509 > .tab-nav-horizontal::-webkit-scrollbar,
#a894da3d63ae509 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a894da3d63ae509 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a894da3d63ae509 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a894da3d63ae509 > .tab-nav-horizontal.tagScroll,
#a894da3d63ae509 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a894da3d63ae509 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a894da3d63ae509 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a894da3d63ae509 > .tab-nav-horizontal.tagScroll li a,
#a894da3d63ae509 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a894da3d63ae509 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a894da3d63ae509 > .tab-wrap > div > .tab-nav a,
#a894da3d63ae509 > .tab-nav a,
#a894da3d63ae509 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a894da3d63ae509 > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#a894da3d63ae509 > .tab-wrap > div > .tab-nav li a,
#a894da3d63ae509 > .tab-nav li a,
#a894da3d63ae509 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a894da3d63ae509 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#a894da3d63ae509 > .tab-wrap > div > .tab-nav li a svg,
#a894da3d63ae509 > .tab-nav li a svg,
#a894da3d63ae509 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a894da3d63ae509 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a894da3d63ae509 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a894da3d63ae509 > .tab-nav li a .ap_icon,
#a894da3d63ae509 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a894da3d63ae509 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a894da3d63ae509 > .tab-wrap > div > .tab-nav li a:hover,
#a894da3d63ae509 > .tab-nav li a:hover,
#a894da3d63ae509 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a894da3d63ae509 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a894da3d63ae509 > .tab-wrap > div > .tab-nav li.uk-active a,
#a894da3d63ae509 > .tab-nav li.uk-active a,
#a894da3d63ae509 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a894da3d63ae509 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a894da3d63ae509 .layout-left li,
#a894da3d63ae509 .layout-center li,
#a894da3d63ae509 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a894da3d63ae509 .layout-left li a,
#a894da3d63ae509 .layout-center li a,
#a894da3d63ae509 .layout-right li a {
  height: 100%;
}
#a894da3d63ae509 > .tab-tabs .layout-left {
  text-align: left;
}
#a894da3d63ae509 > .tab-tabs .layout-center {
  text-align: center;
}
#a894da3d63ae509 > .tab-tabs .layout-right {
  text-align: right;
}
#a894da3d63ae509 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a894da3d63ae509 .tab-content-wrap {
  background-color: #ffffff;
}
#a894da3d63ae509 .tab-contents,
#a894da3d63ae509 .tab-contents-wrap {
  pointer-events: none;
}
#a894da3d63ae509 .tab-content,
#a894da3d63ae509 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a894da3d63ae509 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a894da3d63ae509 .tab-wrap .tab-contents {
  height: 100%;
}
#a894da3d63ae509 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a894da3d63ae509 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a894da3d63ae509 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acb94a6903ae573 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#affcfae83ca94ba .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#affcfae83ca94ba .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#affcfae83ca94ba .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#affcfae83ca94ba .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#affcfae83ca94ba .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#affcfae83ca94ba .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#affcfae83ca94ba .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;
}
#affcfae83ca94ba .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#affcfae83ca94ba .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#affcfae83ca94ba .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#affcfae83ca94ba .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#affcfae83ca94ba .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#affcfae83ca94ba .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#affcfae83ca94ba .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#affcfae83ca94ba .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#affcfae83ca94ba .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#affcfae83ca94ba .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#affcfae83ca94ba .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#affcfae83ca94ba .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#affcfae83ca94ba .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;
  }
}
#affcfae83ca94ba .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#affcfae83ca94ba .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#affcfae83ca94ba .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#affcfae83ca94ba .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#affcfae83ca94ba .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#affcfae83ca94ba .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#affcfae83ca94ba .ele-article-list .pic-article:hover .category {
  color: auto;
}
#affcfae83ca94ba .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#affcfae83ca94ba .ele-article-list .pic-article:hover .time {
  color: auto;
}
#affcfae83ca94ba .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#affcfae83ca94ba .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#affcfae83ca94ba .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#affcfae83ca94ba .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#affcfae83ca94ba .ele-article-list .text-article:hover .time {
  color: auto;
}
#aec4daea18ab8fa > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#accb2afe03a8e32 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a666fa20f9ab4c3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(238, 238, 238, 1);border-right-style: solid;border-left-color: rgba(238, 238, 238, 1);border-bottom-color: rgba(238, 238, 238, 1);border-top-color: rgba(238, 238, 238, 1);border-left-style: solid;border-bottom-style: solid;border-top-style: solid;}#afa53a655ea3733 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(238, 238, 238, 1);border-right-style: solid;border-left-color: rgba(238, 238, 238, 1);border-bottom-color: rgba(238, 238, 238, 1);border-top-color: rgba(238, 238, 238, 1);border-left-style: solid;border-bottom-style: solid;border-top-style: solid;}#a9cf0a348fad87e .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a9cf0a348fad87e .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a9cf0a348fad87e .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a9cf0a348fad87e .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a9cf0a348fad87e .marquee-wrap .marquee-item svg,
#a9cf0a348fad87e .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a9cf0a348fad87e .marquee-wrap:hover {
  background: ;
}
#a9cf0a348fad87e .marquee-wrap .content {
  position: absolute;
}
#a9cf0a348fad87e .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a9cf0a348fad87e .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a9cf0a348fad87e .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#a53f0afbebae402 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(238, 238, 238, 1);border-right-style: solid;border-left-color: rgba(238, 238, 238, 1);border-bottom-color: rgba(238, 238, 238, 1);border-top-color: rgba(238, 238, 238, 1);border-left-style: solid;border-bottom-style: solid;border-top-style: solid;}#a210aa6c6eabb6e .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a210aa6c6eabb6e .uk-grid {
  margin-left: -20px;
}
#a210aa6c6eabb6e .uk-grid > * {
  padding-left: 20px;
}
#a210aa6c6eabb6e .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#a210aa6c6eabb6e .uk-card {
  background-color: #ffffff;
  transition: all .3s ease;
}
#a210aa6c6eabb6e .uk-card-media-top {
  overflow: hidden;
}
#a210aa6c6eabb6e .uk-card-media-top .img {
  transition: all .3s ease;
}
#a210aa6c6eabb6e .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#a210aa6c6eabb6e .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#a210aa6c6eabb6e .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#a210aa6c6eabb6e .uk-card-body {
  padding: 15px 10px 8px;
}
#a210aa6c6eabb6e hr {
  border-top-color: #ffffff;
  margin: 0 0 10px;
}
#a210aa6c6eabb6e .uk-button {
  border: 1px solid #ececec;
}
#a210aa6c6eabb6e .uk-card .title {
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: center;
  font-family: inherit;
  color: #333333;
}
#a210aa6c6eabb6e .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: NotoSansSC-Light;
  color: #8bbaff;
}
#a210aa6c6eabb6e .uk-card:hover {
  background-color: #93353c;
}
#a210aa6c6eabb6e .uk-card:hover .title {
  color: #fff;
}
#a210aa6c6eabb6e .uk-card:hover hr {
  border-top-color: #b8434b;
}
#a210aa6c6eabb6e .uk-card:hover .img {
  transform: scale(1.2);
}
#a210aa6c6eabb6e .uk-card:hover .abstract {
  color: #fff;
}
#a210aa6c6eabb6e .uk-card:hover .datetime {
  color: #93353c;
}
#a210aa6c6eabb6e .uk-card:hover .category {
  color: #93353c;
}
#a210aa6c6eabb6e .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#aff74a8cdaad600 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#aff74a8cdaad600 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aff74a8cdaad600 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#aff74a8cdaad600 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#aff74a8cdaad600 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#aff74a8cdaad600 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#aff74a8cdaad600 .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;
}
#aff74a8cdaad600 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#aff74a8cdaad600 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#aff74a8cdaad600 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#aff74a8cdaad600 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#aff74a8cdaad600 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#aff74a8cdaad600 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#aff74a8cdaad600 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#aff74a8cdaad600 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#aff74a8cdaad600 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#aff74a8cdaad600 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#aff74a8cdaad600 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#aff74a8cdaad600 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#aff74a8cdaad600 .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;
  }
}
#aff74a8cdaad600 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#aff74a8cdaad600 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#aff74a8cdaad600 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#aff74a8cdaad600 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#aff74a8cdaad600 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#aff74a8cdaad600 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#aff74a8cdaad600 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#aff74a8cdaad600 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#aff74a8cdaad600 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#aff74a8cdaad600 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#aff74a8cdaad600 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#aff74a8cdaad600 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#aff74a8cdaad600 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#aff74a8cdaad600 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a854ba1d58a0858 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a3061a7506a7bd5 > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a3d5caa698a6461 .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a3d5caa698a6461 .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a3d5caa698a6461 .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a3d5caa698a6461 .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a3d5caa698a6461 .marquee-wrap .marquee-item svg,
#a3d5caa698a6461 .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a3d5caa698a6461 .marquee-wrap:hover {
  background: ;
}
#a3d5caa698a6461 .marquee-wrap .content {
  position: absolute;
}
#a3d5caa698a6461 .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a3d5caa698a6461 .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a3d5caa698a6461 .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#a30c4a79a3a08b6 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a30c4a79a3a08b6 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a30c4a79a3a08b6 .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;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a30c4a79a3a08b6 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a30c4a79a3a08b6 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a30c4a79a3a08b6 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a30c4a79a3a08b6 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a30c4a79a3a08b6 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a30c4a79a3a08b6 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a30c4a79a3a08b6 .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;
  }
}
#a30c4a79a3a08b6 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a30c4a79a3a08b6 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a30c4a79a3a08b6 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a30c4a79a3a08b6 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a30c4a79a3a08b6 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a30c4a79a3a08b6 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a6b6aaa7fca700a {
  overflow: hidden;
  pointer-events: none;
}
#a6b6aaa7fca700a > .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;
}
#a6b6aaa7fca700a > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a6b6aaa7fca700a > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a6b6aaa7fca700a > .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;
}
#a6b6aaa7fca700a > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a6b6aaa7fca700a > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a6b6aaa7fca700a > .tab-wrap > div > .tab-nav,
#a6b6aaa7fca700a > .tab-nav,
#a6b6aaa7fca700a > .tab-tabs > .tab-wrap > div > .tab-nav,
#a6b6aaa7fca700a > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a6b6aaa7fca700a > .tab-wrap > div > .tab-nav-horizontal,
#a6b6aaa7fca700a > .tab-nav-horizontal,
#a6b6aaa7fca700a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a6b6aaa7fca700a > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a6b6aaa7fca700a > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a6b6aaa7fca700a > .tab-nav-horizontal::-webkit-scrollbar,
#a6b6aaa7fca700a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a6b6aaa7fca700a > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a6b6aaa7fca700a > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a6b6aaa7fca700a > .tab-nav-horizontal.tagScroll,
#a6b6aaa7fca700a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a6b6aaa7fca700a > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a6b6aaa7fca700a > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a6b6aaa7fca700a > .tab-nav-horizontal.tagScroll li a,
#a6b6aaa7fca700a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a6b6aaa7fca700a > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a6b6aaa7fca700a > .tab-wrap > div > .tab-nav a,
#a6b6aaa7fca700a > .tab-nav a,
#a6b6aaa7fca700a > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a6b6aaa7fca700a > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#a6b6aaa7fca700a > .tab-wrap > div > .tab-nav li a,
#a6b6aaa7fca700a > .tab-nav li a,
#a6b6aaa7fca700a > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a6b6aaa7fca700a > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#a6b6aaa7fca700a > .tab-wrap > div > .tab-nav li a svg,
#a6b6aaa7fca700a > .tab-nav li a svg,
#a6b6aaa7fca700a > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a6b6aaa7fca700a > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a6b6aaa7fca700a > .tab-wrap > div > .tab-nav li a .ap_icon,
#a6b6aaa7fca700a > .tab-nav li a .ap_icon,
#a6b6aaa7fca700a > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a6b6aaa7fca700a > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a6b6aaa7fca700a > .tab-wrap > div > .tab-nav li a:hover,
#a6b6aaa7fca700a > .tab-nav li a:hover,
#a6b6aaa7fca700a > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a6b6aaa7fca700a > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a6b6aaa7fca700a > .tab-wrap > div > .tab-nav li.uk-active a,
#a6b6aaa7fca700a > .tab-nav li.uk-active a,
#a6b6aaa7fca700a > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a6b6aaa7fca700a > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#a6b6aaa7fca700a .layout-left li,
#a6b6aaa7fca700a .layout-center li,
#a6b6aaa7fca700a .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a6b6aaa7fca700a .layout-left li a,
#a6b6aaa7fca700a .layout-center li a,
#a6b6aaa7fca700a .layout-right li a {
  height: 100%;
}
#a6b6aaa7fca700a > .tab-tabs .layout-left {
  text-align: left;
}
#a6b6aaa7fca700a > .tab-tabs .layout-center {
  text-align: center;
}
#a6b6aaa7fca700a > .tab-tabs .layout-right {
  text-align: right;
}
#a6b6aaa7fca700a .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a6b6aaa7fca700a .tab-content-wrap {
  background-color: #ffffff;
}
#a6b6aaa7fca700a .tab-contents,
#a6b6aaa7fca700a .tab-contents-wrap {
  pointer-events: none;
}
#a6b6aaa7fca700a .tab-content,
#a6b6aaa7fca700a .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a6b6aaa7fca700a .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a6b6aaa7fca700a .tab-wrap .tab-contents {
  height: 100%;
}
#a6b6aaa7fca700a .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a6b6aaa7fca700a .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a6b6aaa7fca700a .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4ccaab256af712 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a2c5fab2f3ae551 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a5413af7f5a03b5 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZAQNLTNjjUOEkMESOJ.jpg);}#a5413af7f5a03b5  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ae2c6a3feda59b9 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#afcaaa6ae2a0e8b .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#afcaaa6ae2a0e8b .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a693ba53c9aad68 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ae658a0771a2818 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZAQNLTNDHNOkkMESOJ.jpg);}#ae658a0771a2818  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a5887a7a84a366a > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a8795a72b0a903f .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a8795a72b0a903f .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a69cba093daa20f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#abf26a5187af096 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfPNjHPOtpOOOkMESOJ.jpg);}#abf26a5187af096  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a4125a6773ae3f1 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#adca3ae2a4a7caa .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#adca3ae2a4a7caa .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#afd9fa240ea507c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a21deaeef6a5e61 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNAODNNONZQNkkMESOJ.jpg);}#a21deaeef6a5e61  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#afb18ae347a8635 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ac912afaf0a317f .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ac912afaf0a317f .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a41ada676cae3b2 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#afec4ac0e0a765a > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNAONNQONjROkkMESOJ.jpg);}#afec4ac0e0a765a  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a5f7ea9c38a9b48 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#afaa2a67d4a5b6c .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#afaa2a67d4a5b6c .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afce0a49eaa5c2e .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ad3dea2881adeb0 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a6e6dab252ac60f > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtpXNjZZNkkMESOJ.jpg);}#a6e6dab252ac60f  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a3fa1a56a0a7298 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a748aa31f1a8769 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a748aa31f1a8769 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#adbb8addafa538f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a731faf46cab5e9 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtVYONZNOEkMESOJ.jpg);}#a731faf46cab5e9  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#af0a8af8bba4b09 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a812ba538cad7f3 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a812ba538cad7f3 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a9f7ba13eaad18b > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a41b1a89e0a3f54 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROtZQONjQNukMESOJ.jpg);}#a41b1a89e0a3f54  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a0c20a7764afe76 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a0798a0a87aa52d .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a0798a0a87aa52d .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a2472aa0edad3fe > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a0145a5463a9b2e > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYOjHTOukMESOJ.jpg);}#a0145a5463a9b2e  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a03c4ad17baebd4 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a031ca3824a0703 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a031ca3824a0703 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ac8bda6050a4804 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a72cdacb0baae25 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROtZQONDZOEkMESOJ.jpg);}#a72cdacb0baae25  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a89e5a5554a171d > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a510ea98bba776b .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a510ea98bba776b .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a23b8ac7d7ac0aa > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a0ee1afe83a0ba9 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROtZQPjVSOEkMESOJ.jpg);}#a0ee1afe83a0ba9  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a46dba83b9af3df > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a83c4a187da0dd4 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a83c4a187da0dd4 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a251fa6710aeb50 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aea53a1bd0ab39e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a52a6aecd9a40fe > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOjpPONLTNOkMESOJ.jpg);}#a52a6aecd9a40fe  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#af451aac90af315 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a1cdeaf5d3a5a88 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a1cdeaf5d3a5a88 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aec81a2f0da4979 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a64f4aa5cda3899 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZNDxXNN0ONEkMESOJ.jpg);}#a64f4aa5cda3899  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a0bd5a2ac7afd2e > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a1ebda97d1ad4d0 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a1ebda97d1ad4d0 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aec6cae5fdac463 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a7889a80c7a7a09 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODxYPtLZOOkMESOJ.jpg);}#a7889a80c7a7a09  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a25beadbcaa5920 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#af644ac08ea0113 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#af644ac08ea0113 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a46abaa855a3f91 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a7a73ad5e9a683a > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZNDtSOjjZNukMESOJ.jpg);}#a7a73ad5e9a683a  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a6c80aee6fad954 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a8abca9cf8a6fb1 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a8abca9cf8a6fb1 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a1c5ca8572a2f89 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a8ee3a89b9aa68e > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNAOjVNPjpQPOkMESOJ.jpg);}#a8ee3a89b9aa68e  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aa413ab316a34f5 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a9bf4a0786a5b26 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a9bf4a0786a5b26 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a7902a096ba5bd1 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a79f1aaa17aa3fc > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZQDDPODpSOukMESOJ.jpg);}#a79f1aaa17aa3fc  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aaf7da8239a8aa3 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a965fa6437aba34 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a965fa6437aba34 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6504afc9ba8f26 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a4dfeab15ba3db7 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ac696a2f62a1105 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtDPNtVTNOkMESOJ.jpg);}#ac696a2f62a1105  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ac740a4cc9a78af > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a4843a82d5ad835 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a4843a82d5ad835 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ad2b2a4daaae691 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a51d0aa1eca79d5 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtpOPtDZNOkMESOJ.jpg);}#a51d0aa1eca79d5  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ad4caa8c37af72e > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a2821a4540aa149 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a2821a4540aa149 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#abd13a08d3a5326 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a0f4daa843a7e43 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfPNjtUODLSNkkMESOJ.jpg);}#a0f4daa843a7e43  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a01d6a1aa1a2420 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a3e81afa0ea4b8a .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a3e81afa0ea4b8a .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a9d4badda9a6ea8 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a5339a7d5fab10c > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNAOtHQOjRUNOkMESOJ.jpg);}#a5339a7d5fab10c  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a3f6caba0facf03 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a5cc4a1965a663f .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a5cc4a1965a663f .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a6176a2888ad3e3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a1ddaa938fa4e39 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZQDLRNNNPOkkMESOJ.jpg);}#a1ddaa938fa4e39  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a9c33a6d8aa71a9 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a60aca70aaa2a3d .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a60aca70aaa2a3d .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a8d04a0014adb02 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a302fa8446a6baa > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtNZQDLQNtRSNEkMESOJ.jpg);}#a302fa8446a6baa  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a0eeea3bd6ae4df > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a5377a7e00a5feb .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a5377a7e00a5feb .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a39a2a2b23aed2c .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a1559a9f9ea2dc0 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#aa59ca9525a58e8 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtDUPjDZOukMESOJ.jpg);}#aa59ca9525a58e8  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a1840afa57a47f7 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a06fba48fba003f .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a06fba48fba003f .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a51c1a67dcaa37c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a92c3aca75a050d > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtpUPjVROkkMESOJ.jpg);}#a92c3aca75a050d  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a1d1ba760da5486 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a150fa1c5fa4386 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a150fa1c5fa4386 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a4de9a5d13ac4e5 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a7511a3163af298 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfOQNVRNjDAOOkMESOJ.jpg);}#a7511a3163af298  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ade35a9ce8a4c66 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aa0b6a1443aeba9 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aa0b6a1443aeba9 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a83f6ac7faa8504 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a6a7aa374da4513 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYONVSNukMESOJ.jpg);}#a6a7aa374da4513  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a1ec1adec1a47b7 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#af9caad8fca65f0 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#af9caad8fca65f0 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a787da8292a692d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a96b1a4ee5a1dc4 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfPODpXONLQPEkMESOJ.jpg);}#a96b1a4ee5a1dc4  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a0257a229ea7c73 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aef13affc0af433 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aef13affc0af433 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a2d10a3e34a9f2e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a5781a3493a2946 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYNNZSNukQJyV.jpg);}#a5781a3493a2946  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a2161a5e0aa2f61 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a24b6affdeabe91 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a24b6affdeabe91 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac20aac552aba8e .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a8c99afacfa333e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ac6b9a8c08aa12b > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYONVSNukMESOJ.jpg);}#ac6b9a8c08aa12b  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ae80ca303fae012 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ad23da474ca1d4c .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ad23da474ca1d4c .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a7b96a5fb7abfcc > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ab527aa408ad3cf > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfPOtVUPjjZOkkMESOJ.jpg);}#ab527aa408ad3cf  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a796ba7368adbe3 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a90e5a93caa5c28 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a90e5a93caa5c28 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ad875af1b7a3033 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a337aa18c7a288d > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYNjjZNEkMESOJ.jpg);}#a337aa18c7a288d  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a9029ae41aa519b > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a2987a04dca1b9c .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a2987a04dca1b9c .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a413ba4b51a3041 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#aace3a8124a0d94 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYNNZSNukQJyV.jpg);}#aace3a8124a0d94  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a0e18a4877ae272 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a40fda79c8afcc0 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a40fda79c8afcc0 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aad96afb8aa5072 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a4715a227fa8b22 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYNDDNOOkMESOJ.jpg);}#a4715a227fa8b22  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a3941a523ea33cf > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a52ebad7dfa44e8 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a52ebad7dfa44e8 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ad151a967ea5b4c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a3b6ba92f9ad6cc > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYNNLTPEkQJyV.jpg);}#a3b6ba92f9ad6cc  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a5961a5c1aa8790 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aafe7aa266ad502 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aafe7aa266ad502 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae9e7a9b9daa6c0 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a130ba0db2a4203 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a041fa6b08a905d > .ele-wrap {background-color: rgba(147, 53, 60, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7696af7a3a6b0f .ele-wrap {border-color: #000;color: #93353c;font-size: 20px;font-weight: 500;background-color: rgba(252, 253, 253, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a7696af7a3a6b0f .ele-wrap:hover {background-color: #0483cc;background-color: rgba(129, 43, 50, 1);color: #ffffff;}#aaf01a0ba5aa4e7 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#aaf01a0ba5aa4e7 .article {
  background-color: #fff;
  margin-bottom: 10px;
  position: relative;
  padding: 20px;
  margin-top: 0;
}
#aaf01a0ba5aa4e7 .article .img_wrap {
  width: 500px;
  height: 300px;
  margin: 0 auto;
  display: inline-block;
}
#aaf01a0ba5aa4e7 .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#aaf01a0ba5aa4e7 .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 20px;
  font-family: inherit;
}
#aaf01a0ba5aa4e7 .article .datetime {
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  font-family: Arial;
  color: #9b9b9b;
}
#aaf01a0ba5aa4e7 .article .tag {
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: inherit;
  color: #999;
}
#aaf01a0ba5aa4e7 .article .uk-button {
  color: #93353c;
  background-color: #fff;
}
#aaf01a0ba5aa4e7 .article .tag {
  margin-right: 10px;
  display: inline-block;
}
#aaf01a0ba5aa4e7 .article:hover {
  background-color: #ffffff;
}
#aaf01a0ba5aa4e7 .article:hover .title {
  color: #333333;
}
#aaf01a0ba5aa4e7 .article:hover .category {
  color: #93353c;
}
#aaf01a0ba5aa4e7 .article:hover .abstract {
  color: #666666;
}
#aaf01a0ba5aa4e7 .article:hover .datetime {
  color: #93353c;
}
#aaf01a0ba5aa4e7 .article:hover .uk-button {
  color: auto;
  background-color: auto;
}
#aaf01a0ba5aa4e7 .article:last-child {
  margin-bottom: 0;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abb7ca5efca8ad5 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aff11a2b98a0862 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a647ba549ca77a1 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtVYONZNOEkMESOJ.jpg);}#a647ba549ca77a1  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a278dab0baad657 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a13a4a21cfaaba5 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a13a4a21cfaaba5 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a3f69abb22a504a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ac1d8a48e7a3d74 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtHPNjNAOukMESOJ.jpg);}#ac1d8a48e7a3d74  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ab62caf8f3a1613 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a02a9a1efaa28dd .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a02a9a1efaa28dd .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a1c45a4d84a4fc6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a1cd4a69e3a5deb > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtVYPtVUNEkMESOJ.jpg);}#a1cd4a69e3a5deb  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ac197a2dd7a201a > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ab56ea2190ab1ce .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ab56ea2190ab1ce .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aa7c1a559fa1790 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a5945a3a87a7af9 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtVYPjNQNukMESOJ.jpg);}#a5945a3a87a7af9  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aae69a4193a9220 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a68a0a772aa6c30 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a68a0a772aa6c30 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a68e2aed95adb19 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ac8c9aed0ea6c66 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtVYPtDQNEkMESOJ.jpg);}#ac8c9aed0ea6c66  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a3c79aa2faa81bf > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ab34dae47aa7126 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ab34dae47aa7126 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a4223a0853aa49c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a4fcead343abd11 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtHPNtHNPOkMESOJ.jpg);}#a4fcead343abd11  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a3938a4108a5d13 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a8c86addf5a6f07 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a8c86addf5a6f07 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abc7ea05b0a51c5 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a2118a97f1a8139 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a2118a97f1a8139 .uk-grid {
  margin-left: -4px;
}
#a2118a97f1a8139 .uk-grid > * {
  padding-left: 4px;
}
#a2118a97f1a8139 .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#a2118a97f1a8139 .uk-card {
  background-color: #ffffff;
  transition: all .3s ease;
}
#a2118a97f1a8139 .uk-card-media-top {
  overflow: hidden;
}
#a2118a97f1a8139 .uk-card-media-top .img {
  transition: all .3s ease;
}
#a2118a97f1a8139 .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#a2118a97f1a8139 .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#a2118a97f1a8139 .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#a2118a97f1a8139 .uk-card-body {
  padding: 15px 10px 8px;
}
#a2118a97f1a8139 hr {
  border-top-color: #ffffff;
  margin: 0 0 10px;
}
#a2118a97f1a8139 .uk-button {
  border: 1px solid #ececec;
}
#a2118a97f1a8139 .uk-card .title {
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: center;
  font-family: NotoSansSC-Medium;
  color: #333333;
}
#a2118a97f1a8139 .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  text-align: center;
  font-family: NotoSansSC-Light;
  color: #333333;
}
#a2118a97f1a8139 .uk-card:hover {
  background-color: #93353c;
}
#a2118a97f1a8139 .uk-card:hover .title {
  color: #fff;
}
#a2118a97f1a8139 .uk-card:hover hr {
  border-top-color: #b8434b;
}
#a2118a97f1a8139 .uk-card:hover .img {
  transform: scale(1.2);
}
#a2118a97f1a8139 .uk-card:hover .abstract {
  color: #fff;
}
#a2118a97f1a8139 .uk-card:hover .datetime {
  color: #93353c;
}
#a2118a97f1a8139 .uk-card:hover .category {
  color: #93353c;
}
#a2118a97f1a8139 .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a13b9ab520a9944 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a084fae343a3ae3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a42b0aac1ba4ce5 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOjpPONLTNOkMESOJ.jpg);}#a42b0aac1ba4ce5  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ab875a457eae835 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a5416aa232a6931 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a5416aa232a6931 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#af4c8ae9fea2d44 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#adf13a4d49a6dcb > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtDPNtVTNOkMESOJ.jpg);}#adf13a4d49a6dcb  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a39bba98f5afc18 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a835bac133af905 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a835bac133af905 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a5e15a49b4a5c03 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#af220a39a4a7832 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtpOPtDZNOkMESOJ.jpg);}#af220a39a4a7832  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a63cfa2007af795 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a6feead196ae9f3 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a6feead196ae9f3 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aeaf5ab412a97c9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a8181a6021ab17c > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtDUPjDZOukMESOJ.jpg);}#a8181a6021ab17c  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aec39ae72ca8107 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a5736a6c8baa7eb .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a5736a6c8baa7eb .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a481ea6bbda958a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a97e8ae484a9895 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtpUPjVROkkMESOJ.jpg);}#a97e8ae484a9895  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a3c38a6a67a574d > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ad26da30faa122b .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ad26da30faa122b .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a74cea271ea3844 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a95d8ac729ad8ca > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtpXNjZZNkkMESOJ.jpg);}#a95d8ac729ad8ca  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ad433ae440a9434 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ad450a27f1a4a87 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ad450a27f1a4a87 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac2dba21a3a9191 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1de7a2e62a81f6 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a1de7a2e62a81f6 .uk-grid {
  margin-left: -20px;
}
#a1de7a2e62a81f6 .uk-grid > * {
  padding-left: 20px;
}
#a1de7a2e62a81f6 .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#a1de7a2e62a81f6 .uk-card {
  background-color: #ffffff;
  transition: all .3s ease;
}
#a1de7a2e62a81f6 .uk-card-media-top {
  overflow: hidden;
}
#a1de7a2e62a81f6 .uk-card-media-top .img {
  transition: all .3s ease;
}
#a1de7a2e62a81f6 .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#a1de7a2e62a81f6 .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#a1de7a2e62a81f6 .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#a1de7a2e62a81f6 .uk-card-body {
  padding: 15px 10px 8px;
}
#a1de7a2e62a81f6 hr {
  border-top-color: #ffffff;
  margin: 0 0 10px;
}
#a1de7a2e62a81f6 .uk-button {
  border: 1px solid #ececec;
}
#a1de7a2e62a81f6 .uk-card .title {
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: center;
  font-family: inherit;
  color: #333333;
}
#a1de7a2e62a81f6 .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: NotoSansSC-Light;
  color: #8bbaff;
}
#a1de7a2e62a81f6 .uk-card:hover {
  background-color: #93353c;
}
#a1de7a2e62a81f6 .uk-card:hover .title {
  color: #fff;
}
#a1de7a2e62a81f6 .uk-card:hover hr {
  border-top-color: #b8434b;
}
#a1de7a2e62a81f6 .uk-card:hover .img {
  transform: scale(1.2);
}
#a1de7a2e62a81f6 .uk-card:hover .abstract {
  color: #fff;
}
#a1de7a2e62a81f6 .uk-card:hover .datetime {
  color: #93353c;
}
#a1de7a2e62a81f6 .uk-card:hover .category {
  color: #93353c;
}
#a1de7a2e62a81f6 .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#ad60ba9927a8195 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#ad60ba9927a8195 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ad60ba9927a8195 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#ad60ba9927a8195 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#ad60ba9927a8195 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#ad60ba9927a8195 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#ad60ba9927a8195 .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;
}
#ad60ba9927a8195 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#ad60ba9927a8195 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#ad60ba9927a8195 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#ad60ba9927a8195 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#ad60ba9927a8195 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#ad60ba9927a8195 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#ad60ba9927a8195 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#ad60ba9927a8195 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#ad60ba9927a8195 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#ad60ba9927a8195 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#ad60ba9927a8195 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#ad60ba9927a8195 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#ad60ba9927a8195 .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;
  }
}
#ad60ba9927a8195 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#ad60ba9927a8195 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#ad60ba9927a8195 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#ad60ba9927a8195 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#ad60ba9927a8195 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#ad60ba9927a8195 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#ad60ba9927a8195 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#ad60ba9927a8195 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#ad60ba9927a8195 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#ad60ba9927a8195 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#ad60ba9927a8195 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#ad60ba9927a8195 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#ad60ba9927a8195 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#ad60ba9927a8195 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a1936ab900a45ab > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae10ead129a533f > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a80a1a1fafa57b9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(238, 238, 238, 1);border-right-style: solid;border-left-color: rgba(238, 238, 238, 1);border-bottom-color: rgba(238, 238, 238, 1);border-top-color: rgba(238, 238, 238, 1);border-left-style: solid;border-bottom-style: solid;border-top-style: solid;}#a2ffaa2515ab6d0 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(238, 238, 238, 1);border-right-style: solid;border-left-color: rgba(238, 238, 238, 1);border-bottom-color: rgba(238, 238, 238, 1);border-top-color: rgba(238, 238, 238, 1);border-left-style: solid;border-bottom-style: solid;border-top-style: solid;}#a7be1a0c28a65f7 .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a7be1a0c28a65f7 .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a7be1a0c28a65f7 .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a7be1a0c28a65f7 .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a7be1a0c28a65f7 .marquee-wrap .marquee-item svg,
#a7be1a0c28a65f7 .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a7be1a0c28a65f7 .marquee-wrap:hover {
  background: ;
}
#a7be1a0c28a65f7 .marquee-wrap .content {
  position: absolute;
}
#a7be1a0c28a65f7 .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a7be1a0c28a65f7 .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a7be1a0c28a65f7 .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#a9f17a6079a918d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(238, 238, 238, 1);border-right-style: solid;border-left-color: rgba(238, 238, 238, 1);border-bottom-color: rgba(238, 238, 238, 1);border-top-color: rgba(238, 238, 238, 1);border-left-style: solid;border-bottom-style: solid;border-top-style: solid;}#a3974a5691a3313 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a3974a5691a3313 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a3974a5691a3313 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a3974a5691a3313 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a3974a5691a3313 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a3974a5691a3313 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a3974a5691a3313 .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;
}
#a3974a5691a3313 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a3974a5691a3313 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a3974a5691a3313 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a3974a5691a3313 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a3974a5691a3313 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a3974a5691a3313 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a3974a5691a3313 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a3974a5691a3313 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a3974a5691a3313 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a3974a5691a3313 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a3974a5691a3313 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a3974a5691a3313 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a3974a5691a3313 .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;
  }
}
#a3974a5691a3313 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a3974a5691a3313 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a3974a5691a3313 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a3974a5691a3313 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#a3974a5691a3313 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a3974a5691a3313 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a3974a5691a3313 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a3974a5691a3313 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a3974a5691a3313 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a3974a5691a3313 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a3974a5691a3313 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#a3974a5691a3313 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a3974a5691a3313 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a3974a5691a3313 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a51a7aaac7af26d > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aaacaab1f3a7e9c > .ele-wrap {background-color: rgba(245, 245, 245, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8d38a4b49a5026 .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a8d38a4b49a5026 .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a8d38a4b49a5026 .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a8d38a4b49a5026 .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a8d38a4b49a5026 .marquee-wrap .marquee-item svg,
#a8d38a4b49a5026 .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a8d38a4b49a5026 .marquee-wrap:hover {
  background: ;
}
#a8d38a4b49a5026 .marquee-wrap .content {
  position: absolute;
}
#a8d38a4b49a5026 .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
}
#a8d38a4b49a5026 .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 300px;
  overflow: hidden;
  line-height: 270px;
  text-align: center;
  transition: all .3s ease;
}
#a8d38a4b49a5026 .marquee-wrap.horizontal .marquee-item span {
  line-height: 270px;
}
#a8ba0af4c0aa290 .ap-category-filter ul li.active {
  border-color: #93353c;
  color: #93353c;
}
#a8ba0af4c0aa290 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a8ba0af4c0aa290 .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;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a8ba0af4c0aa290 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a8ba0af4c0aa290 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a8ba0af4c0aa290 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a8ba0af4c0aa290 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a8ba0af4c0aa290 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a8ba0af4c0aa290 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a8ba0af4c0aa290 .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;
  }
}
#a8ba0af4c0aa290 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a8ba0af4c0aa290 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a8ba0af4c0aa290 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a8ba0af4c0aa290 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a8ba0af4c0aa290 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a8ba0af4c0aa290 .ele-article-list .text-article:hover .time {
  color: auto;
}
#ac80da8cdba83d4 {
  overflow: hidden;
  pointer-events: none;
}
#ac80da8cdba83d4 > .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;
}
#ac80da8cdba83d4 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#ac80da8cdba83d4 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ac80da8cdba83d4 > .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;
}
#ac80da8cdba83d4 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpDSEGU1WTE15SUHqQIt.jpg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#ac80da8cdba83d4 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ac80da8cdba83d4 > .tab-wrap > div > .tab-nav,
#ac80da8cdba83d4 > .tab-nav,
#ac80da8cdba83d4 > .tab-tabs > .tab-wrap > div > .tab-nav,
#ac80da8cdba83d4 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#ac80da8cdba83d4 > .tab-wrap > div > .tab-nav-horizontal,
#ac80da8cdba83d4 > .tab-nav-horizontal,
#ac80da8cdba83d4 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#ac80da8cdba83d4 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#ac80da8cdba83d4 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ac80da8cdba83d4 > .tab-nav-horizontal::-webkit-scrollbar,
#ac80da8cdba83d4 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ac80da8cdba83d4 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#ac80da8cdba83d4 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ac80da8cdba83d4 > .tab-nav-horizontal.tagScroll,
#ac80da8cdba83d4 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ac80da8cdba83d4 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#ac80da8cdba83d4 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ac80da8cdba83d4 > .tab-nav-horizontal.tagScroll li a,
#ac80da8cdba83d4 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ac80da8cdba83d4 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#ac80da8cdba83d4 > .tab-wrap > div > .tab-nav a,
#ac80da8cdba83d4 > .tab-nav a,
#ac80da8cdba83d4 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#ac80da8cdba83d4 > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#ac80da8cdba83d4 > .tab-wrap > div > .tab-nav li a,
#ac80da8cdba83d4 > .tab-nav li a,
#ac80da8cdba83d4 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#ac80da8cdba83d4 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 30px;
  margin-left: 30px;
}
#ac80da8cdba83d4 > .tab-wrap > div > .tab-nav li a svg,
#ac80da8cdba83d4 > .tab-nav li a svg,
#ac80da8cdba83d4 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#ac80da8cdba83d4 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#ac80da8cdba83d4 > .tab-wrap > div > .tab-nav li a .ap_icon,
#ac80da8cdba83d4 > .tab-nav li a .ap_icon,
#ac80da8cdba83d4 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#ac80da8cdba83d4 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#ac80da8cdba83d4 > .tab-wrap > div > .tab-nav li a:hover,
#ac80da8cdba83d4 > .tab-nav li a:hover,
#ac80da8cdba83d4 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#ac80da8cdba83d4 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #4a90e2;
  border-bottom-style: solid;
}
#ac80da8cdba83d4 > .tab-wrap > div > .tab-nav li.uk-active a,
#ac80da8cdba83d4 > .tab-nav li.uk-active a,
#ac80da8cdba83d4 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#ac80da8cdba83d4 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #93353c;
  border-bottom-width: 2px;
  border-bottom-color: #93353c;
  border-bottom-style: solid;
}
#ac80da8cdba83d4 .layout-left li,
#ac80da8cdba83d4 .layout-center li,
#ac80da8cdba83d4 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#ac80da8cdba83d4 .layout-left li a,
#ac80da8cdba83d4 .layout-center li a,
#ac80da8cdba83d4 .layout-right li a {
  height: 100%;
}
#ac80da8cdba83d4 > .tab-tabs .layout-left {
  text-align: left;
}
#ac80da8cdba83d4 > .tab-tabs .layout-center {
  text-align: center;
}
#ac80da8cdba83d4 > .tab-tabs .layout-right {
  text-align: right;
}
#ac80da8cdba83d4 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#ac80da8cdba83d4 .tab-content-wrap {
  background-color: #ffffff;
}
#ac80da8cdba83d4 .tab-contents,
#ac80da8cdba83d4 .tab-contents-wrap {
  pointer-events: none;
}
#ac80da8cdba83d4 .tab-content,
#ac80da8cdba83d4 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#ac80da8cdba83d4 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#ac80da8cdba83d4 .tab-wrap .tab-contents {
  height: 100%;
}
#ac80da8cdba83d4 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ac80da8cdba83d4 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#ac80da8cdba83d4 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a92a3ae77ea7295 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a444da03b7a9e74 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a2193a0e6babe41 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZAQNLTNjjUOEkMESOJ.jpg);}#a2193a0e6babe41  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a7ab7a4383a31e0 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a9f54aef25a3600 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a9f54aef25a3600 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a0b2aa5089a37d1 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a8756a7575abb27 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZAQNLTNDHNOkkMESOJ.jpg);}#a8756a7575abb27  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a0346a35aba071d > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a7d2ca0675a393d .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a7d2ca0675a393d .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a5b79aa2e0a5ad1 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a9030aef21a4b58 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZAQNLTNtNNNukMESOJ.jpg);}#a9030aef21a4b58  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a939da32c2a00cf > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a9521abc92a2f95 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a9521abc92a2f95 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae2c2a2218a64f2 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a1a26ab087a3598 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZAQNLTNDjNPOkMESOJ.jpg);}#a1a26ab087a3598  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a4c01a8c13ac57e > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a3866a1daca44a7 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a3866a1daca44a7 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#adc62afef9a002a .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8908acecda0953 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;border-top-width: 1px;border-top-color: rgba(238, 238, 238, 1);border-right-color: rgba(238, 238, 238, 1);border-left-color: rgba(238, 238, 238, 1);border-bottom-color: rgba(238, 238, 238, 1);border-right-width: 1px;border-left-width: 1px;border-bottom-width: 1px;}#adce7a33e2ae676 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;border-top-width: 1px;border-top-color: rgba(238, 238, 238, 1);border-right-color: rgba(238, 238, 238, 1);border-left-color: rgba(238, 238, 238, 1);border-bottom-color: rgba(238, 238, 238, 1);border-right-width: 1px;border-left-width: 1px;border-bottom-width: 1px;}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a19b8a63c6affd3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aa515a3708a9dc0 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a7cdda44a4abce0 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODxYPtLZOOkMESOJ.jpg);}#a7cdda44a4abce0  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ae71da0ae4a112b > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a3028a79fbaea50 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a3028a79fbaea50 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a74f9a0508a79ba > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#aa603a26f4a7091 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODtPNt0PNEkQJyV.jpg);}#aa603a26f4a7091  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ac5fdae5b2afaeb > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a15b6aeba7aa90b .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a15b6aeba7aa90b .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a8688acf4fa4212 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a3821a77b1af8b5 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODtPNjRSOukMESOJ.jpg);}#a3821a77b1af8b5  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a56d3ae4aea54fd > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a6e33a76a4a1a90 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a6e33a76a4a1a90 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a703fa5538ac52a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ac2e0ae8d6a70f9 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODtPNtLPNEkMESOJ.jpg);}#ac2e0ae8d6a70f9  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ae5b3a490da6505 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#acfc9a0395a6c0a .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#acfc9a0395a6c0a .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a7d2ca01cda85be > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#acc6aa4a50aaaf8 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODtPNDZSNEkMESOJ.jpg);}#acc6aa4a50aaaf8  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aefb6a76e7abd0d > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a7c12a34bbabf2c .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a7c12a34bbabf2c .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a0a0aaa353abbf4 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a823fa92e6ac938 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVRODxYPt0POukQJyV.jpg);}#a823fa92e6ac938  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a9632a4d94a31f3 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a23c1a5b07afd61 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a23c1a5b07afd61 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab8bfa48f8a1325 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a4c9caed80ac06e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a21a3a62aca806f > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfOQNVRNjDAOOkMESOJ.jpg);}#a21a3a62aca806f  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ab9eba2158a5ba6 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#af0e7a15c4aab2d .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#af0e7a15c4aab2d .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a23feafa81a3860 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a925fa55e3a84be > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfPODpXONLQPEkMESOJ.jpg);}#a925fa55e3a84be  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a5602a9f79acd56 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a6290adf00ac39c .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a6290adf00ac39c .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a765fae262a74df > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a5cdaa8f7aa4c2b > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfOQNVRNjDAOOkMESOJ.jpg);}#a5cdaa8f7aa4c2b  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a2f2ca554ca28ca > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a369aad5b9a82a7 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a369aad5b9a82a7 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a00d4a29b8a27ae > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a82eaa9c47ab683 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfPOjNPOjLAOOkMESOJ.jpg);}#a82eaa9c47ab683  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a6f30acf00ac838 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a8c66a83c0a00aa .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a8c66a83c0a00aa .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac37dad399a359d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9afba14a0a4246 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#acd0bad9b2a0137 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a6943a07e6a9394 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVSOtRYOjHTOukMESOJ.jpg);}#a6943a07e6a9394  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a3acfa428ea8ecf > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a45b1af78cabed3 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a45b1af78cabed3 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a50b7ae263a61fb > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ab789a64daa4d8b > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtHPNjNAOukMESOJ.jpg);}#ab789a64daa4d8b  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a3715a881ea43d8 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#abc6baa3a7a500c .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#abc6baa3a7a500c .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a8cc7a8c9daaaf1 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ab8eba17f9a356b > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTOtRANEkQJyV.jpg);}#ab8eba17f9a356b  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a2562abc42ada94 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a9fc3a6ac9ad1a3 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a9fc3a6ac9ad1a3 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae751ae2e8a6343 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a6e92a2695a739e > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfPNjHPOtpOOOkMESOJ.jpg);}#a6e92a2695a739e  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a38f7a570daea46 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a8e7fa5201aa44b .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a8e7fa5201aa44b .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#af217a8858ab7a3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#aa7bea1954ac0df > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtZANtVYPjNQNukMESOJ.jpg);}#aa7bea1954ac0df  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a3316a95d4a4552 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a91c1af10da9880 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a91c1af10da9880 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a7318af45aa290a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a46dea663ea2916 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfPNjtUODLSNkkMESOJ.jpg);}#a46dea663ea2916  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aeeb1afcfaaba1a > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a48b6a94d1acd37 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a48b6a94d1acd37 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a132aa0c63a56ca .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a23bea9d64aaf2f .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a67ceabccaab034 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ab2c6a4534acc58 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTNNNTOkkMESOJ.jpg);}#ab2c6a4534acc58  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a88e7aecf2a703d > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a0dbea5acca7837 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a0dbea5acca7837 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aad0fafba3a2271 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#af493a56a6a8b7f > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTNDDOOEkMESOJ.jpg);}#af493a56a6a8b7f  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ae85ba8dd7ae204 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a59f9a05b0a4ad2 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a59f9a05b0a4ad2 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ad1dba6991aab43 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a578da6e9aa663d > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTOtRANEkQJyV.jpg);}#a578da6e9aa663d  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ac60aa79a4a4e46 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a2c56a0b3ca7c22 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a2c56a0b3ca7c22 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a4da8a5446a448d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#add36a15daa3814 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTOjRUNOkMESOJ.jpg);}#add36a15daa3814  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ad708a6305a3dc4 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a3c28a7b74a310d .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a3c28a7b74a310d .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#aefb9ad2a9a5e13 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a5057a798ba1860 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTNtpROEkMESOJ.jpg);}#a5057a798ba1860  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#aa989a3519abdfd > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a0ce5a0f23a11fd .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a0ce5a0f23a11fd .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a2d8baafc9a66b0 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a9d94a627ca1918 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROjHTNjZTNkkMESOJ.jpg);}#a9d94a627ca1918  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#acbf5ab40ca1ae9 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a7351acd98ae813 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a7351acd98ae813 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a23cdae9dba9db5 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae012ad8f4ad1dc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c41a3793a1091 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6c41a3793a1091 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6c41a3793a1091 .ap-icon {
  margin-right: 6px;
}
#a6c41a3793a1091 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a,
#a6c41a3793a1091 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon svg,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon img,
#a6c41a3793a1091 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon,
#a6c41a3793a1091 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6c41a3793a1091 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6c41a3793a1091 .menu-list > li:hover > a,
#a6c41a3793a1091 .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6c41a3793a1091 .menu-list > li.active > a {
  background-color: #93353c;
}
#a6c41a3793a1091 .menu-list ul,
#a6c41a3793a1091 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6c41a3793a1091 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a6c41a3793a1091 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6c41a3793a1091 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6c41a3793a1091 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae6a2aa037a3d30 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a586ca9de0aff8e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a586ca9de0aff8e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a586ca9de0aff8e .ap-icon {
  margin-right: 6px;
}
#a586ca9de0aff8e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a,
#a586ca9de0aff8e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon svg,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon img,
#a586ca9de0aff8e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon,
#a586ca9de0aff8e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a586ca9de0aff8e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a586ca9de0aff8e .menu-list > li:hover > a,
#a586ca9de0aff8e .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a586ca9de0aff8e .menu-list > li.active > a {
  background-color: #93353c;
}
#a586ca9de0aff8e .menu-list ul,
#a586ca9de0aff8e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a586ca9de0aff8e .menu-list ul {
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
}
#a586ca9de0aff8e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a586ca9de0aff8e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a586ca9de0aff8e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac6c6a097ba3dc1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8236a21d4a153d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8236a21d4a153d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8236a21d4a153d .ap-icon {
  margin-right: 6px;
}
#a8236a21d4a153d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: 10px;
  width: nullpx;
  height: 40px;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a,
#a8236a21d4a153d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon svg,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon img,
#a8236a21d4a153d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon,
#a8236a21d4a153d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8236a21d4a153d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8236a21d4a153d .menu-list > li:hover > a,
#a8236a21d4a153d .menu-list > li.active > a {
  background: #93353c;
  background-color: #93353c;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #93353c;
  border-top-style: solid;
  border-right-color: #93353c;
  border-left-color: #93353c;
  border-bottom-color: #93353c;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8236a21d4a153d .menu-list > li.active > a {
  background-color: #93353c;
}
#a8236a21d4a153d .menu-list ul,
#a8236a21d4a153d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8236a21d4a153d .menu-list ul {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
}
#a8236a21d4a153d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8236a21d4a153d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8236a21d4a153d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a5618afeb4a310f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a9816a461ea6c98 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOjpPONLTNOkMESOJ.jpg);}#a9816a461ea6c98  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#abb52abfc9a225b > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ae396a4ad6addd8 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ae396a4ad6addd8 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a8eaba5e2dae005 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ac1fba9109a15f0 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDbTOtDUPjDZOukMESOJ.jpg);}#ac1fba9109a15f0  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#adc97aa35ba1228 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aef8fa3d5fa2876 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aef8fa3d5fa2876 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ad2a0af2f5abe3e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a8cd4af919ae001 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNNDfOQNVRNjDAOOkMESOJ.jpg);}#a8cd4af919ae001  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#adffea1496ad94b > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aa74ca88d6a37a1 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aa74ca88d6a37a1 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#a8a12af445acc0e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ace8aa1cdfa3b3f > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROtZQONjQNukMESOJ.jpg);}#ace8aa1cdfa3b3f  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#ad54dace7fa8363 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a1f2da801bad16a .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a1f2da801bad16a .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae09baa9a6a317f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ae9e5a88c1a6f6a > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROtZQONDZOEkMESOJ.jpg);}#ae9e5a88c1a6f6a  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a5ac9a342ea4383 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#af043acf5cafa22 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#af043acf5cafa22 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ad0cfa705da4fff > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a60dda9425a5369 > .ele-wrap {background-color: rgba(147, 53, 60, 1);background-image: url(/D1qNJ0OQHIMUTxEPK1gHIE1FNSOFH1WIOjHUHtRZOIppODVNOtVROtZQPjVSOEkMESOJ.jpg);}#a60dda9425a5369  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a430fa7b69a9125 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aae1daece4aa0d8 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(147, 53, 60, 1);border-radius: 5px;justify-content: center;border-style: solid;}#aae1daece4aa0d8 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(122, 39, 45, 1);}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a725cabd4ba1abd .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aba8ea97c5a4bac .uk-slider {
  padding-top: 30px;
}
#aba8ea97c5a4bac .uk-slider-nav {
  position: absolute;
  right: 0;
  top: 10px;
}
#aba8ea97c5a4bac .uk-card-media-top {
  overflow: hidden;
}
#aba8ea97c5a4bac .img-wrap {
  overflow: hidden;
  transition: all 0.2s ease-in;
}
#aba8ea97c5a4bac .uk-card:hover .img-wrap {
  transform: scale(1.2);
}
#aba8ea97c5a4bac .uk-card {
  border: 1px solid #ececec;
}
#aba8ea97c5a4bac .uk-dotnav > * {
  padding-left: 6px;
}
#aba8ea97c5a4bac .uk-dotnav > * > * {
  width: 6px;
  height: 6px;
  border: none;
  transform: all .2s ease;
  background-color: #d58c91;
}
#aba8ea97c5a4bac .uk-dotnav > .uk-active > * {
  width: 10px;
  height: 10px;
  margin-top: -2px;
  background-color: #93353c;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a9e84ab369a1846 > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#a6e80abd4dadaa9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: solid;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: solid;border-bottom-style: solid;border-top-style: solid;}#a81fca1ce4ae941 > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#aba8ea97c5a4bac [data-item*=".abstract"], #aba8ea97c5a4bac [data-item*=".abstract"] a {show: true;}#aba8ea97c5a4bac [data-item*=".subTitle"], #aba8ea97c5a4bac [data-item*=".subTitle"] a {show: false;}#aba8ea97c5a4bac [data-item*=".category"], #aba8ea97c5a4bac [data-item*=".category"] a {show: false;}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9f33a93ceaa0cd .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#af5eca912aab2c2 .uk-slider {
  padding-top: 30px;
}
#af5eca912aab2c2 .uk-slider-nav {
  position: absolute;
  right: 0;
  top: 10px;
}
#af5eca912aab2c2 .uk-card-media-top {
  overflow: hidden;
}
#af5eca912aab2c2 .img-wrap {
  overflow: hidden;
  transition: all 0.2s ease-in;
}
#af5eca912aab2c2 .uk-card:hover .img-wrap {
  transform: scale(1.2);
}
#af5eca912aab2c2 .uk-card {
  border: 1px solid #ececec;
}
#af5eca912aab2c2 .uk-dotnav > * {
  padding-left: 6px;
}
#af5eca912aab2c2 .uk-dotnav > * > * {
  width: 6px;
  height: 6px;
  border: none;
  transform: all .2s ease;
  background-color: #d58c91;
}
#af5eca912aab2c2 .uk-dotnav > .uk-active > * {
  width: 10px;
  height: 10px;
  margin-top: -2px;
  background-color: #93353c;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#aecdca9331a82fd > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#a2aa0a593fa1cdd > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: solid;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: solid;border-bottom-style: solid;border-top-style: solid;}#ac093a96d7a83da > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#af5eca912aab2c2 [data-item*=".abstract"], #af5eca912aab2c2 [data-item*=".abstract"] a {show: true;}#af5eca912aab2c2 [data-item*=".subTitle"], #af5eca912aab2c2 [data-item*=".subTitle"] a {show: false;}#af5eca912aab2c2 [data-item*=".category"], #af5eca912aab2c2 [data-item*=".category"] a {show: false;}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2c4fae5d1a24ce .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a13dfadc3da7817 .uk-slider {
  padding-top: 30px;
}
#a13dfadc3da7817 .uk-slider-nav {
  position: absolute;
  right: 0;
  top: 10px;
}
#a13dfadc3da7817 .uk-card-media-top {
  overflow: hidden;
}
#a13dfadc3da7817 .img-wrap {
  overflow: hidden;
  transition: all 0.2s ease-in;
}
#a13dfadc3da7817 .uk-card:hover .img-wrap {
  transform: scale(1.2);
}
#a13dfadc3da7817 .uk-card {
  border: 1px solid #ececec;
}
#a13dfadc3da7817 .uk-dotnav > * {
  padding-left: 6px;
}
#a13dfadc3da7817 .uk-dotnav > * > * {
  width: 6px;
  height: 6px;
  border: none;
  transform: all .2s ease;
  background-color: #d58c91;
}
#a13dfadc3da7817 .uk-dotnav > .uk-active > * {
  width: 10px;
  height: 10px;
  margin-top: -2px;
  background-color: #93353c;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af158a240caa7c1 > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#aab51aa3efac925 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: solid;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: solid;border-bottom-style: solid;border-top-style: solid;}#a0291a10c0acaed > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#a13dfadc3da7817 [data-item*=".abstract"], #a13dfadc3da7817 [data-item*=".abstract"] a {show: true;}#a13dfadc3da7817 [data-item*=".subTitle"], #a13dfadc3da7817 [data-item*=".subTitle"] a {show: false;}#a13dfadc3da7817 [data-item*=".category"], #a13dfadc3da7817 [data-item*=".category"] a {show: false;}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af932addeaa90b3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ab2d8ab65ba99c4 .uk-slider {
  padding-top: 30px;
}
#ab2d8ab65ba99c4 .uk-slider-nav {
  position: absolute;
  right: 0;
  top: 10px;
}
#ab2d8ab65ba99c4 .uk-card-media-top {
  overflow: hidden;
}
#ab2d8ab65ba99c4 .img-wrap {
  overflow: hidden;
  transition: all 0.2s ease-in;
}
#ab2d8ab65ba99c4 .uk-card:hover .img-wrap {
  transform: scale(1.2);
}
#ab2d8ab65ba99c4 .uk-card {
  border: 1px solid #ececec;
}
#ab2d8ab65ba99c4 .uk-dotnav > * {
  padding-left: 6px;
}
#ab2d8ab65ba99c4 .uk-dotnav > * > * {
  width: 6px;
  height: 6px;
  border: none;
  transform: all .2s ease;
  background-color: #d58c91;
}
#ab2d8ab65ba99c4 .uk-dotnav > .uk-active > * {
  width: 10px;
  height: 10px;
  margin-top: -2px;
  background-color: #93353c;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a4155a93dbaf0f4 > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#ab14eaa3f1a062a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: solid;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: solid;border-bottom-style: solid;border-top-style: solid;}#ad235ac9dfae9a3 > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#ab2d8ab65ba99c4 [data-item*=".abstract"], #ab2d8ab65ba99c4 [data-item*=".abstract"] a {show: true;}#ab2d8ab65ba99c4 [data-item*=".subTitle"], #ab2d8ab65ba99c4 [data-item*=".subTitle"] a {show: false;}#ab2d8ab65ba99c4 [data-item*=".category"], #ab2d8ab65ba99c4 [data-item*=".category"] a {show: false;}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abc2ea797faee25 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a3221a1f9fa107c .uk-slider {
  padding-top: 30px;
}
#a3221a1f9fa107c .uk-slider-nav {
  position: absolute;
  right: 0;
  top: 10px;
}
#a3221a1f9fa107c .uk-card-media-top {
  overflow: hidden;
}
#a3221a1f9fa107c .img-wrap {
  overflow: hidden;
  transition: all 0.2s ease-in;
}
#a3221a1f9fa107c .uk-card:hover .img-wrap {
  transform: scale(1.2);
}
#a3221a1f9fa107c .uk-card {
  border: 1px solid #ececec;
}
#a3221a1f9fa107c .uk-dotnav > * {
  padding-left: 6px;
}
#a3221a1f9fa107c .uk-dotnav > * > * {
  width: 6px;
  height: 6px;
  border: none;
  transform: all .2s ease;
  background-color: #d58c91;
}
#a3221a1f9fa107c .uk-dotnav > .uk-active > * {
  width: 10px;
  height: 10px;
  margin-top: -2px;
  background-color: #93353c;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af75da6e25a92ab > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#a7789a7829a6450 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: solid;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: solid;border-bottom-style: solid;border-top-style: solid;}#a95faac102a0e84 > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#a3221a1f9fa107c [data-item*=".abstract"], #a3221a1f9fa107c [data-item*=".abstract"] a {show: true;}#a3221a1f9fa107c [data-item*=".subTitle"], #a3221a1f9fa107c [data-item*=".subTitle"] a {show: false;}#a3221a1f9fa107c [data-item*=".category"], #a3221a1f9fa107c [data-item*=".category"] a {show: false;}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac2dba21a3a9191 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a385aa3751ab024 .uk-slider {
  padding-top: 30px;
}
#a385aa3751ab024 .uk-slider-nav {
  position: absolute;
  right: 0;
  top: 10px;
}
#a385aa3751ab024 .uk-card-media-top {
  overflow: hidden;
}
#a385aa3751ab024 .img-wrap {
  overflow: hidden;
  transition: all 0.2s ease-in;
}
#a385aa3751ab024 .uk-card:hover .img-wrap {
  transform: scale(1.2);
}
#a385aa3751ab024 .uk-card {
  border: 1px solid #ececec;
}
#a385aa3751ab024 .uk-dotnav > * {
  padding-left: 6px;
}
#a385aa3751ab024 .uk-dotnav > * > * {
  width: 6px;
  height: 6px;
  border: none;
  transform: all .2s ease;
  background-color: #d58c91;
}
#a385aa3751ab024 .uk-dotnav > .uk-active > * {
  width: 10px;
  height: 10px;
  margin-top: -2px;
  background-color: #93353c;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af028af68fa0bda > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#a9fe4a9f41a9f0b > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a37aaa66d8a9a7b > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abffaa6d32af9f6 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a39c8a46eaa4947 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a35aba5e30a68e3 > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab37daf97aa4c42 > .ele-wrap {background-color: rgba(255, 255, 255, 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;}#accebae4f1a77e7 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4553aead3a9f6d > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: none;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: none;border-bottom-style: none;border-top-style: none;}#a385aa3751ab024 [data-item*=".abstract"], #a385aa3751ab024 [data-item*=".abstract"] a {show: false;}#a385aa3751ab024 [data-item*=".subTitle"], #a385aa3751ab024 [data-item*=".subTitle"] a {show: false;}#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ace9face15aaec3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ab3cbaf4e0ac013 .form-agree {
  display: flex;
  align-items: center;
}
#ab3cbaf4e0ac013 .uk-form .form-submit-btn {
  width: 340px;
}
#ab3cbaf4e0ac013 .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#ab3cbaf4e0ac013 .submit-wrap {
  text-align: center;
}
#ab3cbaf4e0ac013 .submit-wrap button {
  background-color: #f32c56;
}
#ab3cbaf4e0ac013 .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#ab3cbaf4e0ac013 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#ab3cbaf4e0ac013 .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#ab3cbaf4e0ac013 .form-item .uk-input,
#ab3cbaf4e0ac013 .form-item .uk-select,
#ab3cbaf4e0ac013 .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#ab3cbaf4e0ac013 .form-item .auto-height {
  height: auto;
}
#ab3cbaf4e0ac013 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#ab3cbaf4e0ac013 .form-item .send-code {
  bottom: 0px;
}
#ab3cbaf4e0ac013 .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#ab3cbaf4e0ac013 .uk-form-label,
#ab3cbaf4e0ac013 .form-agree,
#ab3cbaf4e0ac013 .uk-h3,
#ab3cbaf4e0ac013 p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#ab3cbaf4e0ac013 .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#ab3cbaf4e0ac013 .form-item > label {
  flex: none;
}
#ab3cbaf4e0ac013 .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#ab3cbaf4e0ac013 .form-item .uk-input,
#ab3cbaf4e0ac013 .form-item .uk-select,
#ab3cbaf4e0ac013 .form-item .uk-textarea,
#ab3cbaf4e0ac013 .form-item .address-select,
#ab3cbaf4e0ac013 .form-item .uk-grid {
  border: none;
  flex: 1;
}
#ab3cbaf4e0ac013 .form-item .address-select .uk-select {
  padding-left: 4px;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ace9face15aaec3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a83f0a349ea2c54 {
  min-height: 90vh;
  /* mobile */
}
#a83f0a349ea2c54 .search-highlight {
  background: yellow;
}
#a83f0a349ea2c54 .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a83f0a349ea2c54 .el-title {
  margin-bottom: 20px;
}
#a83f0a349ea2c54 .el-item:hover .el-title {
  color: #74262b;
}
#a83f0a349ea2c54 .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a83f0a349ea2c54 .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a83f0a349ea2c54 .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a83f0a349ea2c54 .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a83f0a349ea2c54 .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a83f0a349ea2c54 .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a83f0a349ea2c54 .el-title {
    margin-bottom: 0;
  }
  #a83f0a349ea2c54 .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a83f0a349ea2c54 .category {
    font-size: 12px;
  }
  #a83f0a349ea2c54 .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ace9face15aaec3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#af1f8aec25a5d86 {
  /* 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------------------------*/
}
#af1f8aec25a5d86 * {
  font-family: 'PT Sans Caption', sans-serif, 'arial', 'Times New Roman';
}
#af1f8aec25a5d86 .error .clip .shadow {
  height: 180px;
  /*Contrall*/
}
#af1f8aec25a5d86 .error .clip:nth-of-type(2) .shadow {
  width: 130px;
  /*Contrall play with javascript*/
}
#af1f8aec25a5d86 .error .clip:nth-of-type(1) .shadow,
#af1f8aec25a5d86 .error .clip:nth-of-type(3) .shadow {
  width: 250px;
  /*Contrall*/
}
#af1f8aec25a5d86 .error .digit {
  width: 150px;
  /*Contrall*/
  height: 150px;
  /*Contrall*/
  line-height: 150px;
  /*Contrall*/
  font-size: 120px;
  font-weight: bold;
}
#af1f8aec25a5d86 .error h2 {
  font-size: 32px;
}
#af1f8aec25a5d86 .error .msg {
  top: -190px;
  left: 30%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 32px;
}
#af1f8aec25a5d86 .error span.triangle {
  top: 70%;
  right: 0%;
  border-left: 20px solid #535353;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
#af1f8aec25a5d86 .error .container-error-404 {
  margin-top: 10%;
  position: relative;
  height: 250px;
  padding-top: 40px;
  text-align: center;
}
#af1f8aec25a5d86 .error .container-error-404 .clip {
  display: inline-block;
  transform: skew(-45deg);
}
#af1f8aec25a5d86 .error .clip .shadow {
  overflow: hidden;
}
#af1f8aec25a5d86 .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);
}
#af1f8aec25a5d86 .error .clip:nth-of-type(3) .shadow:after,
#af1f8aec25a5d86 .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%;
}
#af1f8aec25a5d86 .error .clip:nth-of-type(3) .shadow:after {
  left: -8px;
}
#af1f8aec25a5d86 .error .digit {
  position: relative;
  top: 8%;
  color: white;
  background: #07B3F9;
  border-radius: 50%;
  display: inline-block;
  transform: skew(45deg);
}
#af1f8aec25a5d86 .error .clip:nth-of-type(2) .digit {
  left: -10%;
}
#af1f8aec25a5d86 .error .clip:nth-of-type(1) .digit {
  right: -20%;
}
#af1f8aec25a5d86 .error .clip:nth-of-type(3) .digit {
  left: -20%;
}
#af1f8aec25a5d86 .error h2 {
  color: #A2A2A2;
  font-weight: bold;
  padding-bottom: 20px;
}
#af1f8aec25a5d86 .error .msg {
  position: relative;
  z-index: 9999;
  display: block;
  background: #535353;
  color: #A2A2A2;
  border-radius: 50%;
  font-style: italic;
}
#af1f8aec25a5d86 .error .triangle {
  position: absolute;
  z-index: 999;
  transform: rotate(45deg);
  content: "";
  width: 0;
  height: 0;
}
@media (max-width: 767px) {
  #af1f8aec25a5d86 {
    /* Error Page */
    /* Error Page */
  }
  #af1f8aec25a5d86 .error .clip .shadow {
    height: 100px;
    /*Contrall*/
  }
  #af1f8aec25a5d86 .error .clip:nth-of-type(2) .shadow {
    width: 80px;
    /*Contrall play with javascript*/
  }
  #af1f8aec25a5d86 .error .clip:nth-of-type(1) .shadow,
  #af1f8aec25a5d86 .error .clip:nth-of-type(3) .shadow {
    width: 100px;
    /*Contrall*/
  }
  #af1f8aec25a5d86 .error .digit {
    width: 80px;
    /*Contrall*/
    height: 80px;
    /*Contrall*/
    line-height: 80px;
    /*Contrall*/
    font-size: 52px;
  }
  #af1f8aec25a5d86 .error h2 {
    font-size: 24px;
  }
  #af1f8aec25a5d86 .error .msg {
    top: -110px;
    left: 15%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  #af1f8aec25a5d86 .error span.triangle {
    top: 70%;
    right: -3%;
    border-left: 10px solid #535353;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  #af1f8aec25a5d86 .error .container-error-404 {
    height: 150px;
  }
}
#af1f8aec25a5d86 .overlay {
  position: relative;
  z-index: 20;
}
#af1f8aec25a5d86 .ground-color {
  background: white;
}
#af1f8aec25a5d86 .item-bg-color {
  background: #EAEAEA;
}
#af1f8aec25a5d86 .padding-top {
  padding-top: 10px;
}
#af1f8aec25a5d86 .padding-bottom {
  padding-bottom: 10px;
}
#af1f8aec25a5d86 .padding-vertical {
  padding-top: 10px;
  padding-bottom: 10px;
}
#af1f8aec25a5d86 .padding-horizontal {
  padding-left: 10px;
  padding-right: 10px;
}
#af1f8aec25a5d86 .padding-all {
  padding: 10px;
}
#af1f8aec25a5d86 .no-padding-left {
  padding-left: 0px;
}
#af1f8aec25a5d86 .no-padding-right {
  padding-right: 0px;
}
#af1f8aec25a5d86 .no-vertical-padding {
  padding-top: 0px;
  padding-bottom: 0px;
}
#af1f8aec25a5d86 .no-horizontal-padding {
  padding-left: 0px;
  padding-right: 0px;
}
#af1f8aec25a5d86 .no-padding {
  padding: 0px;
}
#af1f8aec25a5d86 .margin-top {
  margin-top: 10px;
}
#af1f8aec25a5d86 .margin-bottom {
  margin-bottom: 10px;
}
#af1f8aec25a5d86 .margin-right {
  margin-right: 10px;
}
#af1f8aec25a5d86 .margin-left {
  margin-left: 10px;
}
#af1f8aec25a5d86 .margin-horizontal {
  margin-left: 10px;
  margin-right: 10px;
}
#af1f8aec25a5d86 .margin-vertical {
  margin-top: 10px;
  margin-bottom: 10px;
}
#af1f8aec25a5d86 .margin-all {
  margin: 10px;
}
#af1f8aec25a5d86 .no-margin {
  margin: 0px;
}
#af1f8aec25a5d86 .no-vertical-margin {
  margin-top: 0px;
  margin-bottom: 0px;
}
#af1f8aec25a5d86 .no-horizontal-margin {
  margin-left: 0px;
  margin-right: 0px;
}
#af1f8aec25a5d86 .inside-col-shrink {
  margin: 0px 20px;
}
#af1f8aec25a5d86 hr {
  margin: 0px;
  padding: 0px;
  border-top: 1px dashed #999;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ace9face15aaec3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#adabca8229afc61 .login-main {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(12, 1, 4, 0.05);
}
#adabca8229afc61 .switch_item {
  margin-right: 10px;
}
#adabca8229afc61 a.switch_item:hover {
  text-decoration: underline;
}
#adabca8229afc61 .slider {
  width: 420px;
  height: 600px;
}
#adabca8229afc61 .uk-slideshow-items {
  height: 100%;
}
#adabca8229afc61 .uk-slideshow-items a {
  width: 100%;
  height: 100%;
  display: block;
}
#adabca8229afc61 .login-wrap {
  width: 100%;
  height: 100%;
}
#adabca8229afc61 .uk-dotnav > * > * {
  background: #fff;
  border-color: #fff;
  opacity: .5;
}
#adabca8229afc61 .uk-dotnav > .uk-active > * {
  border-color: #0076fe;
  background: #0076fe;
}
#adabca8229afc61 .phone-login-box {
  margin: 40px auto 40px;
}
#adabca8229afc61 .login-header {
  margin-bottom: 24px;
}
#adabca8229afc61 .login-header h4 {
  font-size: 22px;
  font-weight: bolder;
  line-height: 1;
  padding-left: 20px;
  border-left: 4px solid #0076fe;
}
#adabca8229afc61 .input-item {
  width: 330px;
  height: 45px;
  background-color: #f0f2f7;
  border-radius: 22px;
  border: solid 1px #e3e8f0;
  position: relative;
  overflow: hidden;
}
#adabca8229afc61 .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;
}
#adabca8229afc61 .forget_password {
  cursor: pointer;
}
#adabca8229afc61 .forget_password:hover {
  color: #93353c;
}
#adabca8229afc61 .input-item input.error,
#adabca8229afc61 .input-item input.error::placeholder {
  color: #fc4343;
}
#adabca8229afc61 .input-item input::placeholder {
  color: #999;
}
#adabca8229afc61 .input-item .icon {
  position: absolute;
  left: 10px;
  top: 12px;
  fill: #ccc;
  width: 20px;
}
#adabca8229afc61 .form-item {
  margin: 24px 0;
}
#adabca8229afc61 .verifycode-input .input-item {
  width: 200px;
  float: left;
}
#adabca8229afc61 .send-code {
  float: left;
  margin-left: 20px;
}
#adabca8229afc61 .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;
}
#adabca8229afc61 .submit {
  width: 330px;
  height: 45px;
  background-color: #0076fe;
  border-radius: 22px;
  font-size: 18px;
  line-height: 45px;
  color: #fff;
  cursor: pointer;
}
#adabca8229afc61 .error {
  color: #fc4343;
  font-size: 12px;
  padding-left: 10px;
  display: block;
  max-width: 300px;
}
#adabca8229afc61 .login_btn_wrap {
  text-align: center;
}
#adabca8229afc61 .login_btn_wrap .submit {
  display: block;
  margin-bottom: 10px;
}
#adabca8229afc61 .input-item .pwd-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  font-size: 16px;
  color: #999;
  cursor: pointer;
}
#adabca8229afc61 .input-item .pwd-toggle:hover {
  color: currentColor;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ace9face15aaec3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4d7aad44ea7b0f .sidebar {
  width: 150px;
  max-width: 150px;
  height: 100%;
}
#a4d7aad44ea7b0f .nav-items {
  background: #fafafa;
  min-height: 200px;
}
#a4d7aad44ea7b0f .phone-info {
  background: #fafafa;
  margin-top: 10px;
  font-size: 12px;
  padding: 22px 4px 20px 16px;
  line-height: 1.5;
  color: #666;
}
#a4d7aad44ea7b0f .phone-info .phone {
  line-height: 1.5;
  color: #333;
  font-size: 18px;
  font-family: Arial;
}
#a4d7aad44ea7b0f .nav-type {
  line-height: 37px;
  padding-left: 20px;
  cursor: pointer;
}
#a4d7aad44ea7b0f .nav-type.active {
  color: #FFF;
  cursor: default;
  background: #ff658c;
}
#a4d7aad44ea7b0f .content {
  padding-bottom: 60px;
  color: #666;
  border: 1px solid #f0f0f0;
  min-height: 400px;
}
#a4d7aad44ea7b0f .nav-list {
  padding: 0 20px;
}
#a4d7aad44ea7b0f .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;
}
#a4d7aad44ea7b0f .nav-list .nav-item.active {
  background-color: #ff5c89;
  color: #fff;
  cursor: default;
}
#a4d7aad44ea7b0f .order-item {
  margin-top: 10px;
  background: #fff;
  padding: 0 20px;
}
#a4d7aad44ea7b0f .order-item:hover {
  background: #f7f7f7;
}
#a4d7aad44ea7b0f .del-order {
  cursor: pointer;
}
#a4d7aad44ea7b0f .order-item .order-title {
  line-height: 40px;
  color: #666;
  font-size: 13px;
  border-bottom: 1px solid #f7f7f7;
}
#a4d7aad44ea7b0f .goods-item {
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
}
#a4d7aad44ea7b0f .order-goods-list .goods-item:last-child {
  border-bottom: none;
}
#a4d7aad44ea7b0f .goods-item img {
  width: 100px;
  height: 100px;
  background: #f4f4f4;
}
#a4d7aad44ea7b0f .goods-item .goods-info {
  padding: 0 15px;
}
#a4d7aad44ea7b0f .appoint-time span {
  color: #e4393c;
  background-color: #f9eeee;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 2px;
  line-height: 1;
}
#a4d7aad44ea7b0f .appoint-time {
  margin-bottom: 4px;
}
#a4d7aad44ea7b0f .appoint-name {
  color: #333;
  font-size: 14px;
}
#a4d7aad44ea7b0f .appoint-info {
  padding: 0 15px;
  font-size: 12px;
  color: #888;
}
#a4d7aad44ea7b0f .goods-item .goods-name {
  color: #333;
}
#a4d7aad44ea7b0f .goods-item .sku-name {
  color: #999;
  font-size: 12px;
}
#a4d7aad44ea7b0f .order-total-info {
  padding-bottom: 10px;
  color: #999;
  font-size: 12px;
}
#a4d7aad44ea7b0f .order-total-info .total-price {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
}
#a4d7aad44ea7b0f .load-more {
  font-size: 12px;
  padding-bottom: 15px;
  color: #999;
}
#a4d7aad44ea7b0f .order-btns {
  padding: 10px 0;
  border-top: 1px solid #f7f7f7;
}
#a4d7aad44ea7b0f .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;
}
#a4d7aad44ea7b0f .order-btns .btn-warn {
  color: #fff;
  background: #eb3c3c;
  border-color: #eb3c3c;
  cursor: pointer;
}
#a4d7aad44ea7b0f .appoint-info .title {
  font-weight: bold;
  color: #333;
}
#a4d7aad44ea7b0f .coupon-item {
  margin: 10px 30px;
  display: inline-flex;
  width: 42%;
}
#a4d7aad44ea7b0f .setting-form {
  padding: 30px 20px;
}
#a4d7aad44ea7b0f .setting-item {
  margin-bottom: 20px;
  font-size: 13px;
  color: #666;
  line-height: 18px;
}
#a4d7aad44ea7b0f .setting-item .label {
  display: inline-block;
  margin-right: 6px;
  text-align: right;
  min-width: 120px;
}
#a4d7aad44ea7b0f .setting-item .input-text {
  border: 1px solid #ccc;
  line-height: 28px;
  padding: 0 10px;
  min-width: 200px;
  font-size: 13px;
}
#a4d7aad44ea7b0f .setting-form .setting-btns {
  margin-left: 130px;
}
#a4d7aad44ea7b0f .setting-form .uk-button {
  height: 30px;
  line-height: 30px;
  margin-right: 8px;
}
#a4d7aad44ea7b0f .setting-wrap {
  position: relative;
}
#a4d7aad44ea7b0f .user-info {
  border: 1px solid #ccc;
  width: 300px;
  position: absolute;
  right: 80px;
  top: 30px;
  color: #666;
  padding: 10px;
  font-size: 13px;
  background: #f9f9f9;
}
#a4d7aad44ea7b0f .user-info .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 10px;
}
#a4d7aad44ea7b0f .user-info .levels {
  color: #888;
  font-size: 12px;
}
#a4d7aad44ea7b0f .address-wrap {
  padding: 30px 20px;
}
#a4d7aad44ea7b0f .addr-header {
  font-size: 18px;
  color: #333;
  margin: 0;
}
#a4d7aad44ea7b0f .addr-detail {
  border-bottom: 1px solid #ececec;
  margin-bottom: 10px;
}
#a4d7aad44ea7b0f .addr-list {
  min-height: 200px;
}
#a4d7aad44ea7b0f .addr-detail .addr-item-name,
#a4d7aad44ea7b0f .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;
}
#a4d7aad44ea7b0f .addr-detail .addr-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
#a4d7aad44ea7b0f .addr-detail .addr-item-name {
  color: #e93b3d;
  border-color: #e93b3d;
}
#a4d7aad44ea7b0f .addr-detail {
  padding: 12px 0;
  flex: 1;
}
#a4d7aad44ea7b0f .op-btns a {
  font-size: 12px;
  color: #e93b3d;
  margin-left: 6px;
}
#a4d7aad44ea7b0f .add-addr {
  height: 32px;
  line-height: 30px;
}
#a4d7aad44ea7b0f .publish-item .status {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 50px;
  background: url(/D1qNJ0OQHIMUTxWYDOgpKSHpKIMrKRNoKS9HKOySHRSNTxIsID.jpg) center center no-repeat;
  background-size: contain;
}
#a4d7aad44ea7b0f .publish-item {
  cursor: default;
  min-height: 120px;
}
#a4d7aad44ea7b0f .publish-item .status-0 {
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpKIMrKRNoKS9HKOyNK0OJIIRsDy1G.jpg);
}
#a4d7aad44ea7b0f .publish-item .status-1 {
  background-image: url(/D1qNJ0OQHIMUTxWYDOgpKSHpKIMrKRNoKS9HKOyGHSgsTxIsID.jpg);
}
#a4d7aad44ea7b0f .publish-item .btns a {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 2px;
  color: #fff;
  background: #93353c;
}
#a4d7aad44ea7b0f .publish-item .btns .del-info {
  background: #ccc;
  color: #999;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ace9face15aaec3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9521a3585a2855 {
  min-height: 90vh;
  /* mobile */
}
#a9521a3585a2855 .search-highlight {
  background: yellow;
}
#a9521a3585a2855 .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a9521a3585a2855 .el-title {
  margin-bottom: 20px;
}
#a9521a3585a2855 .el-item:hover .el-title {
  color: #74262b;
}
#a9521a3585a2855 .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a9521a3585a2855 .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a9521a3585a2855 .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a9521a3585a2855 .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a9521a3585a2855 .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a9521a3585a2855 .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a9521a3585a2855 .el-title {
    margin-bottom: 0;
  }
  #a9521a3585a2855 .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a9521a3585a2855 .category {
    font-size: 12px;
  }
  #a9521a3585a2855 .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ace9face15aaec3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a812da9e35a27d5 .comment-detail {
  min-height: 600px;
}
#a812da9e35a27d5 table {
  background: #f9fdff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#a812da9e35a27d5 table th,
#a812da9e35a27d5 table td {
  padding: 10px 20px;
  border: #ececec 1px solid;
  line-height: 1.8em;
}
#a812da9e35a27d5 table th {
  padding-left: 0;
  text-align: right;
  background: #eff7fe;
  font-weight: normal;
  color: #333;
}
#a812da9e35a27d5 .red {
  color: #F00!important;
}
#a812da9e35a27d5 .table-title span {
  display: inline-block;
  padding: 0 40px;
  line-height: 40px;
  color: #274589;
  font-size: 16px;
  font-weight: bold;
  background: url(/D1qNJ0OQHIMUTxWYDOgpKSHpKIMrKRNoDIuTK1SdJSSpJugOKSD.jpg) 0 center no-repeat;
}
#aeebda314fa83fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#aeebda314fa83fc .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#aeebda314fa83fc .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#aeebda314fa83fc .menu-list > li.active > a:before,
#aeebda314fa83fc .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#aeebda314fa83fc .menu-list > li ul li {
  position: relative;
}
#aeebda314fa83fc .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#aeebda314fa83fc .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(2, 2, 2, 0.71);
  background: transparent;
}
#aeebda314fa83fc .menu-list li ul li:hover > a {
  background-color: #020202;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#aeebda314fa83fc .menu-list li ul,
#aeebda314fa83fc .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(2, 2, 2, 0.71);
}
#aeebda314fa83fc .menu-list li ul.menu-b > li,
#aeebda314fa83fc .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#aeebda314fa83fc .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#aeebda314fa83fc .menu-list li:hover > ul {
  display: block;
}
#aeebda314fa83fc .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae1e1a02a8a3910 > .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;}#ad1d4aa8a6a80b2 > .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;}#af25ea0866aa72d > .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;}#a2d8faf8dfaa764 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a2d8faf8dfaa764 .menu-list > li > a {
  height: 100%;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a2d8faf8dfaa764 .menu-list > li.active > a:before,
#a2d8faf8dfaa764 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a2d8faf8dfaa764 .menu-list > li ul li {
  position: relative;
}
#a2d8faf8dfaa764 .menu-list > li ul li:hover > a {
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #5e8de4;
  width: 200px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover > a {
  background-color: #79a3f3;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a2d8faf8dfaa764 .menu-list li ul li a:active,
#a2d8faf8dfaa764 .menu-list li ul li a.active,
#a2d8faf8dfaa764 .menu-list li ul li.active > a {
  background-color: #79a3f3;
}
#a2d8faf8dfaa764 .menu-list li ul,
#a2d8faf8dfaa764 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #5e8de4;
}
#a2d8faf8dfaa764 .menu-list li ul.menu-b > li,
#a2d8faf8dfaa764 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a2d8faf8dfaa764 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a2d8faf8dfaa764 .menu-list li:hover > ul {
  display: block;
}
#a2d8faf8dfaa764 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a8ae5ab944a3f09 > .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;}#a1fd6a5b29a886a > .ele-wrap {background-color: rgba(250, 250, 250, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}