.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Microsoft Yahei";
}
/* ========================================================================
   Component: Base
 ========================================================================== */
/*
 * 1. Set `font-size` to support `rem` units
 *    Not using `font` property because a leading hyphen (e.g. -apple-system) causes the font to break in IE11 and Edge
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 * 3. Style
 */
html {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 3 */
  color: #666;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
/*
   * Removes default margin.
   */
body {
  margin: 0;
  font-size: 14px;
  color: #666;
  background-color: #ffffff;
}
/* Links
   ========================================================================== */
/*
   * 1. Remove the gray background on active links in IE 10.
   * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
   */
a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects;
}
/*
   * Remove the outline on focused links when they are also active or hovered
   */
a:active,
a:hover {
  outline: none;
}
/*
   * Style
   */
a,
.uk-link {
  color: #fc8137;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.uk-link:hover {
  color: #fc8137;
}
/* 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: #fc8137;
}
/* 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: #fc8137;
  text-shadow: none;
}
::selection {
  background: #fc8137;
  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 #fc8137;
}
/* Small
   ========================================================================== */
/*
   * Reset child height, caused by `inline-block`
   */
.uk-divider-small {
  line-height: 0;
}
.uk-divider-small::after {
  border-top: 2px solid #fc8137;
}
/* ========================================================================
     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: #fc8137;
  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: #fc8137;
  outline: none;
}
/* OnClick + Active */
.uk-icon-button:active,
.uk-active > .uk-icon-button {
  background-color: #fc8137;
  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: #fc8137;
  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: #fc8137;
}
/* OnClick + Active */
.uk-button-default:active,
.uk-button-default.uk-active {
  background-color: #fc8137;
  color: #ffffff;
}
/*
   * Primary
   */
.uk-button-primary {
  background-color: #fc8137;
  color: #ffffff;
}
/* Hover + Focus */
.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: #222222;
  color: #ffffff;
}
/* OnClick + Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
  color: #ffffff;
}
/*
   * Secondary
   */
.uk-button-secondary {
  color: #666;
  border: 1px solid #222222;
}
/* OnClick + Active */
.uk-button-secondary:active,
.uk-button-secondary.uk-active {
  background-color: #fc8137;
  color: #ffffff;
  border-color: #fc8137;
}
/*
   * 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: #fc8137;
}
/* 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: #fc8137;
}
/* Hover + Focus */
.uk-button-link:hover,
.uk-button-link:focus {
  color: #fc8137;
}
/* 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: #fc8137;
}
/*
   * Secondary
   */
.uk-section-secondary,
.ap-container-secondary .uk-container {
  background: #222222;
}
.uk-section-muted,
.ap-container-muted .uk-container {
  background: #f8f8f8;
}
/* Style modifiers
   ========================================================================== */
/*
   * Default
   */
.uk-tile-default {
  background: #ffffff;
}
/*
   * Muted
   */
.uk-tile-muted {
  background: #f8f8f8;
}
/*
   * Primary
   */
.uk-tile-primary {
  background: #fc8137;
}
/*
   * Secondary
   */
.uk-tile-secondary {
  background: #222222;
}
/* ========================================================================
     Component: Card
   ========================================================================== */
/* Badge
   ========================================================================== */
.uk-card-badge {
  color: #666;
}
/*
   * Remove margin from adjacent element
   */
.uk-card-badge:first-child + * {
  margin-top: 0;
}
/* Style modifiers
   ========================================================================== */
/*
   * Default
   * Note: Header and Footer are only implemented for the default style
   */
.uk-card-default {
  background: #ffffff;
  color: #666;
}
.uk-card-default.uk-card-hover:hover {
  background-color: #ffffff;
}
/*
   * Primary
   */
.uk-card-primary {
  background: #fc8137;
  color: #ffffff;
}
.uk-card-primary .uk-card-title {
  color: #ffffff;
}
/*
   * Secondary
   */
.uk-card-secondary {
  background: #222222;
  color: #ffffff;
}
.uk-card-secondary .uk-card-title {
  color: #ffffff;
}
/* ========================================================================
     Component: Close
   ========================================================================== */
/* Hover + Focus */
/* Hover + Focus */
.uk-totop:hover,
.uk-totop:focus {
  outline: none;
  background-color: transparent;
}
/* OnClick */
.uk-totop:active {
  color: #fc8137;
  background-color: transparent;
}
/* ========================================================================
     Component: Marker
   ========================================================================== */
/*
   * Addopts `uk-icon`
   */
.uk-marker {
  padding: 5px;
  background: #222222;
  color: #ffffff;
}
/* Hover + Focus */
.uk-marker:hover,
.uk-marker:focus {
  color: #ffffff;
  outline: none;
}
/* ========================================================================
     Component: Alert
   ========================================================================== */
.uk-alert {
  position: relative;
  background: #ffffff;
  color: #333;
}
/* Style modifiers
   ========================================================================== */
/*
   * Primary
   */
.uk-alert-primary {
  background: #ffffff;
  color: #fc8137;
}
/*
   * 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: #fc8137;
  color: #ffffff;
}
/*
   * Required for `a`
   */
.uk-badge:hover,
.uk-badge:focus {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
/* ========================================================================
     Component: Label
   ========================================================================== */
.uk-label {
  background: #fc8137;
  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: #fc8137;
  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: #fc8137;
}
/* 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: #fc8137;
  outline: none;
}
.uk-navbar-nav > li > a:hover::before {
  background-color: currentColor;
}
/* OnClick */
.uk-navbar-nav > li.uk-active > a::before {
  background-color: #fc8137;
}
/* Item
   ========================================================================== */
.uk-navbar-item {
  color: #666;
}
/* Toggle
   ========================================================================== */
.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus,
.uk-navbar-toggle.uk-open {
  color: #fc8137;
}
/* 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: #fc8137;
  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: #fc8137;
  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: #fc8137;
  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: #fc8137;
}
/* 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: #fc8137;
  border-color: transparent;
}
/* Active */
.uk-dotnav > .uk-active > * {
  background-color: #fc8137;
  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: #fc8137;
}
/*
   * 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: #fc8137;
}
/* 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: #fc8137;
}
/*
   * 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: #fc8137;
  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: #fc8137;
}
.uk-progress::-moz-progress-bar {
  background-color: #fc8137;
}
.uk-progress::-ms-fill {
  background-color: #fc8137;
}
/* ========================================================================
     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: #fc8137 !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: #fc8137 !important;
}
@supports (-webkit-background-clip: text) {
  .uk-text-background {
    background-color: #fc8137;
  }
}
/* ========================================================================
     Component: Background
   ========================================================================== */
/* Color
   ========================================================================== */
.uk-background-default {
  background-color: #ffffff;
}
.uk-background-muted {
  background-color: #f8f8f8;
}
.uk-background-primary {
  background-color: #fc8137;
}
.uk-background-secondary {
  background-color: #222222;
}
/* ========================================================================
     Component: Inverse
   ========================================================================== */
.uk-light a,
.uk-light .uk-link,
.uk-section-primary:not(.uk-preserve-color) a,
.uk-section-primary:not(.uk-preserve-color) .uk-link,
.uk-section-secondary:not(.uk-preserve-color) a,
.uk-section-secondary:not(.uk-preserve-color) .uk-link,
.uk-tile-primary:not(.uk-preserve-color) a,
.uk-tile-primary:not(.uk-preserve-color) .uk-link,
.uk-tile-secondary:not(.uk-preserve-color) a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link,
.uk-card-primary.uk-card-body a,
.uk-card-primary.uk-card-body .uk-link,
.uk-card-primary > :not([class*='uk-card-media']) a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link,
.uk-card-secondary.uk-card-body a,
.uk-card-secondary.uk-card-body .uk-link,
.uk-card-secondary > :not([class*='uk-card-media']) a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link,
.uk-overlay-primary a,
.uk-overlay-primary .uk-link,
.ap-toolbar a,
.ap-toolbar .uk-link {
  color: #ffffff;
}
.uk-light a:hover,
.uk-light .uk-link:hover,
.uk-section-primary:not(.uk-preserve-color) a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-link:hover,
.uk-section-secondary:not(.uk-preserve-color) a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-link:hover,
.uk-tile-primary:not(.uk-preserve-color) a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link:hover,
.uk-tile-secondary:not(.uk-preserve-color) a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link:hover,
.uk-card-primary.uk-card-body a:hover,
.uk-card-primary.uk-card-body .uk-link:hover,
.uk-card-primary > :not([class*='uk-card-media']) a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link:hover,
.uk-card-secondary.uk-card-body a:hover,
.uk-card-secondary.uk-card-body .uk-link:hover,
.uk-card-secondary > :not([class*='uk-card-media']) a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link:hover,
.uk-overlay-primary a:hover,
.uk-overlay-primary .uk-link:hover,
.ap-toolbar a:hover,
.ap-toolbar .uk-link:hover {
  color: #ffffff;
}
.uk-light em,
.uk-section-primary:not(.uk-preserve-color) em,
.uk-section-secondary:not(.uk-preserve-color) em,
.uk-tile-primary:not(.uk-preserve-color) em,
.uk-tile-secondary:not(.uk-preserve-color) em,
.uk-card-primary.uk-card-body em,
.uk-card-primary > :not([class*='uk-card-media']) em,
.uk-card-secondary.uk-card-body em,
.uk-card-secondary > :not([class*='uk-card-media']) em,
.uk-overlay-primary em,
.ap-toolbar em {
  color: #ffffff;
}
.uk-light h1,
.uk-light .uk-h1,
.uk-light h2,
.uk-light .uk-h2,
.uk-light h3,
.uk-light .uk-h3,
.uk-light h4,
.uk-light .uk-h4,
.uk-light h5,
.uk-light .uk-h5,
.uk-light h6,
.uk-light .uk-h6,
.uk-section-primary:not(.uk-preserve-color) h1,
.uk-section-primary:not(.uk-preserve-color) .uk-h1,
.uk-section-primary:not(.uk-preserve-color) h2,
.uk-section-primary:not(.uk-preserve-color) .uk-h2,
.uk-section-primary:not(.uk-preserve-color) h3,
.uk-section-primary:not(.uk-preserve-color) .uk-h3,
.uk-section-primary:not(.uk-preserve-color) h4,
.uk-section-primary:not(.uk-preserve-color) .uk-h4,
.uk-section-primary:not(.uk-preserve-color) h5,
.uk-section-primary:not(.uk-preserve-color) .uk-h5,
.uk-section-primary:not(.uk-preserve-color) h6,
.uk-section-primary:not(.uk-preserve-color) .uk-h6,
.uk-section-secondary:not(.uk-preserve-color) h1,
.uk-section-secondary:not(.uk-preserve-color) .uk-h1,
.uk-section-secondary:not(.uk-preserve-color) h2,
.uk-section-secondary:not(.uk-preserve-color) .uk-h2,
.uk-section-secondary:not(.uk-preserve-color) h3,
.uk-section-secondary:not(.uk-preserve-color) .uk-h3,
.uk-section-secondary:not(.uk-preserve-color) h4,
.uk-section-secondary:not(.uk-preserve-color) .uk-h4,
.uk-section-secondary:not(.uk-preserve-color) h5,
.uk-section-secondary:not(.uk-preserve-color) .uk-h5,
.uk-section-secondary:not(.uk-preserve-color) h6,
.uk-section-secondary:not(.uk-preserve-color) .uk-h6,
.uk-tile-primary:not(.uk-preserve-color) h1,
.uk-tile-primary:not(.uk-preserve-color) .uk-h1,
.uk-tile-primary:not(.uk-preserve-color) h2,
.uk-tile-primary:not(.uk-preserve-color) .uk-h2,
.uk-tile-primary:not(.uk-preserve-color) h3,
.uk-tile-primary:not(.uk-preserve-color) .uk-h3,
.uk-tile-primary:not(.uk-preserve-color) h4,
.uk-tile-primary:not(.uk-preserve-color) .uk-h4,
.uk-tile-primary:not(.uk-preserve-color) h5,
.uk-tile-primary:not(.uk-preserve-color) .uk-h5,
.uk-tile-primary:not(.uk-preserve-color) h6,
.uk-tile-primary:not(.uk-preserve-color) .uk-h6,
.uk-tile-secondary:not(.uk-preserve-color) h1,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h1,
.uk-tile-secondary:not(.uk-preserve-color) h2,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h2,
.uk-tile-secondary:not(.uk-preserve-color) h3,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h3,
.uk-tile-secondary:not(.uk-preserve-color) h4,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h4,
.uk-tile-secondary:not(.uk-preserve-color) h5,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h5,
.uk-tile-secondary:not(.uk-preserve-color) h6,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h6,
.uk-card-primary.uk-card-body h1,
.uk-card-primary.uk-card-body .uk-h1,
.uk-card-primary.uk-card-body h2,
.uk-card-primary.uk-card-body .uk-h2,
.uk-card-primary.uk-card-body h3,
.uk-card-primary.uk-card-body .uk-h3,
.uk-card-primary.uk-card-body h4,
.uk-card-primary.uk-card-body .uk-h4,
.uk-card-primary.uk-card-body h5,
.uk-card-primary.uk-card-body .uk-h5,
.uk-card-primary.uk-card-body h6,
.uk-card-primary.uk-card-body .uk-h6,
.uk-card-primary > :not([class*='uk-card-media']) h1,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h1,
.uk-card-primary > :not([class*='uk-card-media']) h2,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h2,
.uk-card-primary > :not([class*='uk-card-media']) h3,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h3,
.uk-card-primary > :not([class*='uk-card-media']) h4,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h4,
.uk-card-primary > :not([class*='uk-card-media']) h5,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h5,
.uk-card-primary > :not([class*='uk-card-media']) h6,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h6,
.uk-card-secondary.uk-card-body h1,
.uk-card-secondary.uk-card-body .uk-h1,
.uk-card-secondary.uk-card-body h2,
.uk-card-secondary.uk-card-body .uk-h2,
.uk-card-secondary.uk-card-body h3,
.uk-card-secondary.uk-card-body .uk-h3,
.uk-card-secondary.uk-card-body h4,
.uk-card-secondary.uk-card-body .uk-h4,
.uk-card-secondary.uk-card-body h5,
.uk-card-secondary.uk-card-body .uk-h5,
.uk-card-secondary.uk-card-body h6,
.uk-card-secondary.uk-card-body .uk-h6,
.uk-card-secondary > :not([class*='uk-card-media']) h1,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h1,
.uk-card-secondary > :not([class*='uk-card-media']) h2,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h2,
.uk-card-secondary > :not([class*='uk-card-media']) h3,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h3,
.uk-card-secondary > :not([class*='uk-card-media']) h4,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h4,
.uk-card-secondary > :not([class*='uk-card-media']) h5,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h5,
.uk-card-secondary > :not([class*='uk-card-media']) h6,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h6,
.uk-overlay-primary h1,
.uk-overlay-primary .uk-h1,
.uk-overlay-primary h2,
.uk-overlay-primary .uk-h2,
.uk-overlay-primary h3,
.uk-overlay-primary .uk-h3,
.uk-overlay-primary h4,
.uk-overlay-primary .uk-h4,
.uk-overlay-primary h5,
.uk-overlay-primary .uk-h5,
.uk-overlay-primary h6,
.uk-overlay-primary .uk-h6,
.ap-toolbar h1,
.ap-toolbar .uk-h1,
.ap-toolbar h2,
.ap-toolbar .uk-h2,
.ap-toolbar h3,
.ap-toolbar .uk-h3,
.ap-toolbar h4,
.ap-toolbar .uk-h4,
.ap-toolbar h5,
.ap-toolbar .uk-h5,
.ap-toolbar h6,
.ap-toolbar .uk-h6 {
  color: #ffffff;
}
.uk-light blockquote,
.uk-section-primary:not(.uk-preserve-color) blockquote,
.uk-section-secondary:not(.uk-preserve-color) blockquote,
.uk-tile-primary:not(.uk-preserve-color) blockquote,
.uk-tile-secondary:not(.uk-preserve-color) blockquote,
.uk-card-primary.uk-card-body blockquote,
.uk-card-primary > :not([class*='uk-card-media']) blockquote,
.uk-card-secondary.uk-card-body blockquote,
.uk-card-secondary > :not([class*='uk-card-media']) blockquote,
.uk-overlay-primary blockquote,
.ap-toolbar blockquote {
  color: #ffffff;
}
.uk-light .uk-heading-primary,
.uk-section-primary:not(.uk-preserve-color) .uk-heading-primary,
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-primary,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-primary,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-primary,
.uk-card-primary.uk-card-body .uk-heading-primary,
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-primary,
.uk-card-secondary.uk-card-body .uk-heading-primary,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-primary,
.uk-overlay-primary .uk-heading-primary,
.ap-toolbar .uk-heading-primary {
  color: #ffffff;
}
.uk-light .uk-heading-hero,
.uk-section-primary:not(.uk-preserve-color) .uk-heading-hero,
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-hero,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-hero,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-hero,
.uk-card-primary.uk-card-body .uk-heading-hero,
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-hero,
.uk-card-secondary.uk-card-body .uk-heading-hero,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-hero,
.uk-overlay-primary .uk-heading-hero,
.ap-toolbar .uk-heading-hero {
  color: #ffffff;
}
.uk-light .uk-icon-button,
.uk-section-primary:not(.uk-preserve-color) .uk-icon-button,
.uk-section-secondary:not(.uk-preserve-color) .uk-icon-button,
.uk-tile-primary:not(.uk-preserve-color) .uk-icon-button,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-button,
.uk-card-primary.uk-card-body .uk-icon-button,
.uk-card-primary > :not([class*='uk-card-media']) .uk-icon-button,
.uk-card-secondary.uk-card-body .uk-icon-button,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-icon-button,
.uk-overlay-primary .uk-icon-button,
.ap-toolbar .uk-icon-button {
  background-color: #ffffff;
  background-image: none;
}
.uk-light .uk-radio:checked,
.uk-light .uk-checkbox:checked,
.uk-light .uk-checkbox:indeterminate,
.uk-section-primary:not(.uk-preserve-color) .uk-radio:checked,
.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-section-secondary:not(.uk-preserve-color) .uk-radio:checked,
.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-tile-primary:not(.uk-preserve-color) .uk-radio:checked,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-tile-secondary:not(.uk-preserve-color) .uk-radio:checked,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-card-primary.uk-card-body .uk-radio:checked,
.uk-card-primary.uk-card-body .uk-checkbox:checked,
.uk-card-primary.uk-card-body .uk-checkbox:indeterminate,
.uk-card-primary > :not([class*='uk-card-media']) .uk-radio:checked,
.uk-card-primary > :not([class*='uk-card-media']) .uk-checkbox:checked,
.uk-card-primary > :not([class*='uk-card-media']) .uk-checkbox:indeterminate,
.uk-card-secondary.uk-card-body .uk-radio:checked,
.uk-card-secondary.uk-card-body .uk-checkbox:checked,
.uk-card-secondary.uk-card-body .uk-checkbox:indeterminate,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-radio:checked,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-checkbox:checked,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-checkbox:indeterminate,
.uk-overlay-primary .uk-radio:checked,
.uk-overlay-primary .uk-checkbox:checked,
.uk-overlay-primary .uk-checkbox:indeterminate,
.ap-toolbar .uk-radio:checked,
.ap-toolbar .uk-checkbox:checked,
.ap-toolbar .uk-checkbox:indeterminate {
  background-color: #ffffff;
  border-color: transparent;
}
.uk-light .uk-form-label,
.uk-section-primary:not(.uk-preserve-color) .uk-form-label,
.uk-section-secondary:not(.uk-preserve-color) .uk-form-label,
.uk-tile-primary:not(.uk-preserve-color) .uk-form-label,
.uk-tile-secondary:not(.uk-preserve-color) .uk-form-label,
.uk-card-primary.uk-card-body .uk-form-label,
.uk-card-primary > :not([class*='uk-card-media']) .uk-form-label,
.uk-card-secondary.uk-card-body .uk-form-label,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-form-label,
.uk-overlay-primary .uk-form-label,
.ap-toolbar .uk-form-label {
  color: #ffffff;
}
.uk-light .uk-button-default,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default,
.uk-card-primary.uk-card-body .uk-button-default,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default,
.uk-card-secondary.uk-card-body .uk-button-default,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default,
.uk-overlay-primary .uk-button-default,
.ap-toolbar .uk-button-default {
  background-color: #ffffff;
  color: #333;
  border-color: transparent;
  background-image: none;
  box-shadow: none;
}
.uk-light .uk-button-default:hover,
.uk-light .uk-button-default:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:focus,
.uk-card-primary.uk-card-body .uk-button-default:hover,
.uk-card-primary.uk-card-body .uk-button-default:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default:focus,
.uk-card-secondary.uk-card-body .uk-button-default:hover,
.uk-card-secondary.uk-card-body .uk-button-default:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default:focus,
.uk-overlay-primary .uk-button-default:hover,
.uk-overlay-primary .uk-button-default:focus,
.ap-toolbar .uk-button-default:hover,
.ap-toolbar .uk-button-default:focus {
  background-color: #ffffff;
  color: #fc8137;
  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: #fc8137;
  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: #fc8137;
  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: #fc8137;
}
.uk-light .uk-navbar-toggle,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-card-primary.uk-card-body .uk-navbar-toggle,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-toggle,
.uk-card-secondary.uk-card-body .uk-navbar-toggle,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-toggle,
.uk-overlay-primary .uk-navbar-toggle,
.ap-toolbar .uk-navbar-toggle {
  color: #ffffff;
}
.uk-light .uk-subnav > .uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-card-primary.uk-card-body .uk-subnav > .uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-subnav > .uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav > .uk-active > a,
.uk-overlay-primary .uk-subnav > .uk-active > a,
.ap-toolbar .uk-subnav > .uk-active > a {
  color: #ffffff;
}
.uk-light .uk-subnav-pill > .uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-card-primary.uk-card-body .uk-subnav-pill > .uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav-pill > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-subnav-pill > .uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav-pill > .uk-active > a,
.uk-overlay-primary .uk-subnav-pill > .uk-active > a,
.ap-toolbar .uk-subnav-pill > .uk-active > a {
  background-color: #ffffff;
  box-shadow: none;
}
.uk-light .uk-tab > .uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-card-primary.uk-card-body .uk-tab > .uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-tab > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-tab > .uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-tab > .uk-active > a,
.uk-overlay-primary .uk-tab > .uk-active > a,
.ap-toolbar .uk-tab > .uk-active > a {
  color: #ffffff;
  border-color: #ffffff;
}
.uk-light .uk-dotnav > .uk-active > *,
.uk-section-primary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-section-secondary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-card-primary.uk-card-body .uk-dotnav > .uk-active > *,
.uk-card-primary > :not([class*='uk-card-media']) .uk-dotnav > .uk-active > *,
.uk-card-secondary.uk-card-body .uk-dotnav > .uk-active > *,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-dotnav > .uk-active > *,
.uk-overlay-primary .uk-dotnav > .uk-active > *,
.ap-toolbar .uk-dotnav > .uk-active > * {
  background-color: #ffffff;
  border-color: transparent;
}
.uk-light .uk-countdown-number,
.uk-light .uk-countdown-separator,
.uk-section-primary:not(.uk-preserve-color) .uk-countdown-number,
.uk-section-primary:not(.uk-preserve-color) .uk-countdown-separator,
.uk-section-secondary:not(.uk-preserve-color) .uk-countdown-number,
.uk-section-secondary:not(.uk-preserve-color) .uk-countdown-separator,
.uk-tile-primary:not(.uk-preserve-color) .uk-countdown-number,
.uk-tile-primary:not(.uk-preserve-color) .uk-countdown-separator,
.uk-tile-secondary:not(.uk-preserve-color) .uk-countdown-number,
.uk-tile-secondary:not(.uk-preserve-color) .uk-countdown-separator,
.uk-card-primary.uk-card-body .uk-countdown-number,
.uk-card-primary.uk-card-body .uk-countdown-separator,
.uk-card-primary > :not([class*='uk-card-media']) .uk-countdown-number,
.uk-card-primary > :not([class*='uk-card-media']) .uk-countdown-separator,
.uk-card-secondary.uk-card-body .uk-countdown-number,
.uk-card-secondary.uk-card-body .uk-countdown-separator,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-countdown-number,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-countdown-separator,
.uk-overlay-primary .uk-countdown-number,
.uk-overlay-primary .uk-countdown-separator,
.ap-toolbar .uk-countdown-number,
.ap-toolbar .uk-countdown-separator {
  color: #ffffff;
}
.uk-light .uk-countdown-label,
.uk-section-primary:not(.uk-preserve-color) .uk-countdown-label,
.uk-section-secondary:not(.uk-preserve-color) .uk-countdown-label,
.uk-tile-primary:not(.uk-preserve-color) .uk-countdown-label,
.uk-tile-secondary:not(.uk-preserve-color) .uk-countdown-label,
.uk-card-primary.uk-card-body .uk-countdown-label,
.uk-card-primary > :not([class*='uk-card-media']) .uk-countdown-label,
.uk-card-secondary.uk-card-body .uk-countdown-label,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-countdown-label,
.uk-overlay-primary .uk-countdown-label,
.ap-toolbar .uk-countdown-label {
  color: #ffffff;
}
.uk-light .uk-text-lead,
.uk-section-primary:not(.uk-preserve-color) .uk-text-lead,
.uk-section-secondary:not(.uk-preserve-color) .uk-text-lead,
.uk-tile-primary:not(.uk-preserve-color) .uk-text-lead,
.uk-tile-secondary:not(.uk-preserve-color) .uk-text-lead,
.uk-card-primary.uk-card-body .uk-text-lead,
.uk-card-primary > :not([class*='uk-card-media']) .uk-text-lead,
.uk-card-secondary.uk-card-body .uk-text-lead,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-text-lead,
.uk-overlay-primary .uk-text-lead,
.ap-toolbar .uk-text-lead {
  color: #ffffff;
}
/* Header
   ========================================================================== */
/*
   * Header
   */
/*
   * Headerbars
   */
.ap-headerbar-top {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #ffffff;
}
.ap-headerbar-bottom {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #ffffff;
}
.ap-header .uk-navbar-nav .menu-item a {
  position: relative;
}
.ap-header .uk-navbar-nav .menu-item a:hover,
.ap-header .uk-navbar-nav .uk-active a {
  font-weight: bolder;
}
.ap-header .uk-navbar-nav .menu-item a:hover::before,
.ap-header .uk-navbar-nav .uk-active a::before {
  right: 15px;
  display: block;
}
.ap-header-transparent {
  position: absolute;
  z-index: 980;
  left: 0;
  right: 0;
}
.ap-header-transparent .uk-navbar-nav .menu-item a {
  position: relative;
  color: #fff;
}
.ap-header-transparent .uk-navbar-nav .menu-item a:hover::before,
.ap-header-transparent .uk-navbar-nav .uk-active a::before {
  background-color: #fff;
}
.uk-navbar-transparent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 80px;
  z-index: 100;
  transition: background-color 0.3s ease-in;
}
.uk-navbar-transparent.uk-sticky-below {
  z-index: 1000;
}
.uk-navbar-transparent.uk-sticky-below .uk-navbar-nav > li.uk-active > a,
.uk-navbar-transparent.uk-sticky-below .uk-navbar-nav > li > a:hover {
  color: #292929;
}
.uk-navbar-transparent.uk-sticky-below .uk-navbar-nav > li > a {
  color: #4f5260;
}
.uk-section-secondary .uk-navbar-transparent.uk-sticky-below,
.uk-section-secondary .uk-navbar-container:not(.uk-navbar-transparent) {
  background: rgba(34, 34, 34, 0.94);
}
.uk-section-secondary .uk-navbar-transparent.uk-sticky-below .uk-navbar-nav > li > a,
.uk-section-secondary .uk-navbar-transparent.uk-sticky-below .uk-navbar-nav > li > a:hover {
  color: #fff;
}
.uk-section-primary .uk-navbar-container.uk-navbar-sticky {
  background-color: #fc8137;
}
.uk-section-muted .uk-navbar-container.uk-navbar-sticky {
  background-color: #f8f8f8;
}
.uk-section-primary .uk-navbar-container.uk-navbar-sticky {
  background-color: #fc8137;
}
.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: #fc8137;
  border-color: #fc8137;
}
.category .uk-pagination li:hover,
.ap-pagination li:hover,
.dynamic-pagination li:hover {
  border-color: #fc8137;
}
/* ========================================================================
   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: #fb6105;
}
.ap-list-filter dd a.active {
  background-color: #fc8137;
  color: #fff;
  border-radius: 2px;
}
.ap-filter-dropdown .filter-item-wrap.open,
.ap-filter-dropdown .filter-item.active {
  color: #fc8137;
}
.category li a.active {
  color: #fc8137;
}
.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: #fc8137;
}
.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: #fc8137;
  border: 1px solid rgba(252, 129, 55, 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: #fc8137;
}
form .step .ui-step.active .ui-step-title {
  color: #fc8137;
}
/**************** 自定义版块样式 ********************/
.btn-effect-1 {
  border-color: #fc8137;
  background-color: #fc8137;
  color: #fff;
}
.header-effect-6 [data-item='title']::before {
  background-color: #fc8137;
}
.header-effect-7 [data-item='subTitle'] {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  background-color: #fc8137;
  color: #fff !important;
}
.btn-effect-2 {
  background-color: transparent;
  border: 1px solid #fc8137;
  color: #fc8137;
}
.btn-effect-2:hover {
  background-color: #fc8137;
}
.uk-button.btn-effect-5 {
  background-color: #fc8137;
  box-shadow: 0 0 15px rgba(252, 129, 55, 0.8);
}
.header-effect-3 [data-item='title']::after {
  background: #fc8137;
}
.header-effect-6 [data-item='title']::before {
  background-color: #fc8137;
}
#af584a87ddaec21 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acaaaa2101ab282 .acc5ea505ca9f13 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acaaaa2101ab282 .a7f38a7946a0414 {
  overflow: hidden;
}
#acaaaa2101ab282 .a7f38a7946a0414 , #acaaaa2101ab282 .a7f38a7946a0414 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 26px;font-family: inherit;color: rgba(0, 0, 0, 1);}#acaaaa2101ab282 .a7f38a7946a0414:hover , #acaaaa2101ab282 .a7f38a7946a0414 *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#acaaaa2101ab282 .a6994aef22aca5c {
  overflow: hidden;
}
#acaaaa2101ab282 .a7ac7a3cc2a65f8 , #acaaaa2101ab282 .a7ac7a3cc2a65f8 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 26px;text-align: center;font-family: inherit;color: rgba(252, 129, 55, 1);}#acaaaa2101ab282 .a1a53a45f4a9129 .ele-wrap {border-color: rgba(252, 129, 55, 1);border-width: 1px;border-style: solid;color: #fc8137;background-color: transparent;border-radius: 0px;font-size: 18px;justify-content: center;font-weight: 500;}#acaaaa2101ab282 .a1a53a45f4a9129 .ele-wrap:hover {border-color: rgba(252, 129, 55, 1);background-color: #fff;color: #fc8137;background-color: rgba(255, 255, 255, 0);}#acaaaa2101ab282 .a09a8a3d5ba9c92 > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acaaaa2101ab282 .aa496a33a5a5031 , #acaaaa2101ab282 .aa496a33a5a5031 a{color: rgba(252, 129, 55, 1);}#acaaaa2101ab282 .a367ea06e6a2958 , #acaaaa2101ab282 .a367ea06e6a2958 .param-tag {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(252, 129, 55, 1);}#acaaaa2101ab282 .ab175aa0fea7c72 > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 6px;border-top-right-radius: 6px;border-bottom-left-radius: 6px;border-top-left-radius: 6px;}#acaaaa2101ab282 .a98e9abdb7a5d65 , #acaaaa2101ab282 .a98e9abdb7a5d65 a{color: rgba(252, 129, 55, 1);}#acaaaa2101ab282 .a1be6ad764ab074 > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acaaaa2101ab282 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #acaaaa2101ab282 .uk-position-center-left-out {
    left: -30px;
  }
  #acaaaa2101ab282 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a36c0ac814a5a92 form {
  width: 100%;
  height: 100%;
}
#a36c0ac814a5a92 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#a36c0ac814a5a92 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#a36c0ac814a5a92 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#a36c0ac814a5a92 .search-box .search-type.show {
  display: block;
}
#a36c0ac814a5a92 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#a36c0ac814a5a92 .search-box .search-type li:hover {
  color: #fc8137;
}
#a36c0ac814a5a92 .search-box .search-type li.active {
  color: #fc8137;
}
#a36c0ac814a5a92 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 1px;
  border-right-color: #cccccc;
  border-left-color: #cccccc;
  border-bottom-color: #cccccc;
  border-top-color: #cccccc;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a36c0ac814a5a92 .inner-form .input-field {
  height: 100%;
}
#a36c0ac814a5a92 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#a36c0ac814a5a92 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#a36c0ac814a5a92 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#a36c0ac814a5a92 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#a36c0ac814a5a92 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#a36c0ac814a5a92 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#a36c0ac814a5a92 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#a36c0ac814a5a92 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#a36c0ac814a5a92 .inner-form .input-field.second-wrap {
  min-width: 200px;
}
#a36c0ac814a5a92 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#a36c0ac814a5a92 .btn-search:hover {
  background: #fc8137;
}
#a36c0ac814a5a92 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac56ca981ba5682 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ad75ba2009a10d3 .phone-info {
  font-size: 28px;
  color: #296fb7;
  font-family: 'helvetica';
  padding-top: 5px;
  font-weight: bold;
  line-height: 1;
}
#ad75ba2009a10d3 .phone-info span {
  font-size: 13px;
  font-weight: 400;
  display: block;
}
#ad75ba2009a10d3 .abstract {
  white-space: pre-wrap;
}
#ad75ba2009a10d3 .product-main {
  margin: 15px 0;
}
#ad75ba2009a10d3 .disable-imglink .rich-img-wrap {
  cursor: default;
}
#ad75ba2009a10d3 .video-box,
#ad75ba2009a10d3 .preview-box {
  margin-bottom: 20px;
  border: 1px solid #eee;
  text-align: center;
}
#ad75ba2009a10d3 .video-box video {
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
#ad75ba2009a10d3 .goods-slider {
  width: 430px;
  max-width: 100%;
}
#ad75ba2009a10d3 .preview-box img {
  width: 100%;
}
#ad75ba2009a10d3 .preview-box .zoom-hover {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 180px;
  height: 180px;
  border: 1px solid #aaa;
  background: #0099ff;
  background-color: rgba(133, 111, 41, 0.3);
  opacity: .5;
  cursor: move;
}
#ad75ba2009a10d3 .zoom-indicator {
  background-color: #fff;
  opacity: .3;
  position: absolute;
  right: 0;
  bottom: 0;
}
#ad75ba2009a10d3 .zoom-indicator i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#ad75ba2009a10d3 .thumb-box {
  width: 100%;
  position: relative;
}
#ad75ba2009a10d3 .thumb-box .btn {
  width: 22px;
  height: 32px;
}
#ad75ba2009a10d3 .thumb-box .btn-next {
  background: url(/resources/sys/img/section/btn_next.png) no-repeat center center;
}
#ad75ba2009a10d3 .thumb-box .btn-prev {
  background: url(/resources/sys/img/section/btn_prev.png) no-repeat center center;
}
#ad75ba2009a10d3 .thumb-list {
  overflow: hidden;
}
#ad75ba2009a10d3 .thumb-list ul {
  width: 100000px;
}
#ad75ba2009a10d3 .thumb-list ul li {
  list-style: none;
  float: left;
  margin: 0 4px;
  cursor: pointer;
  position: relative;
}
#ad75ba2009a10d3 .thumb-list ul li img {
  width: 68px;
  height: 68px;
  border: 2px solid #fff;
}
#ad75ba2009a10d3 .thumb-list ul li.thumb-video::after {
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  background: url(/resources/sys/img/play-light.svg) center center no-repeat;
  background-size: 30px;
  position: absolute;
  opacity: .8;
  transition: all .2s ease;
}
#ad75ba2009a10d3 .thumb-list ul li.thumb-video:hover::after {
  opacity: 1;
  background-size: 35px;
}
#ad75ba2009a10d3 .thumb-list ul li.active img {
  border-color: #fc8137;
}
#ad75ba2009a10d3 .zoom-box {
  display: none;
  overflow: hidden;
  position: absolute;
  left: 440px;
  top: 0;
  width: 500px;
  height: 500px;
  border: 1px solid #e4e4e4;
  z-index: 400;
  background: #fff;
}
#ad75ba2009a10d3 .zoom-box img {
  max-width: initial;
}
#ad75ba2009a10d3 .uk-button-primary {
  font-size: 16px;
}
#ad75ba2009a10d3 .questions .question {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}
#ad75ba2009a10d3 .questions .answer {
  font-size: 13px;
  color: #999;
}
#ad75ba2009a10d3 .questions .fa {
  line-height: 24px;
}
@media (max-width: 640px) {
  #ad75ba2009a10d3 .content-wrap {
    padding: 0;
  }
  #ad75ba2009a10d3 .title {
    font-size: 18px;
    font-weight: bolder;
  }
  #ad75ba2009a10d3 .content-wrap .rich-img-wrap {
    margin-left: -15px;
    margin-right: -15px;
  }
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8216a6759afa0d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a95b1ad6c6a50f3 , #a95b1ad6c6a50f3 a{color: rgba(252, 129, 55, 1);}#a2970a553cabc67 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a03b3aa00ea0b76 {
  overflow: hidden;
}
#a75aea4f58afe69 .a03b3aa00ea0b76 , #a75aea4f58afe69 .a03b3aa00ea0b76 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a75aea4f58afe69 .a7b88a6e83a076c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75aea4f58afe69 .a7e3da37eaacf45 {
  overflow: hidden;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a75aea4f58afe69 .a7e3da37eaacf45 .img-wrap:hover {
  transform: scale(1.1);
}
#a75aea4f58afe69 .a8e79a4a2ea149e {
  overflow: hidden;
}
#a75aea4f58afe69 .a8e79a4a2ea149e , #a75aea4f58afe69 .a8e79a4a2ea149e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a75aea4f58afe69 .a8e79a4a2ea149e:hover , #a75aea4f58afe69 .a8e79a4a2ea149e *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .af167ad2e5abb66 , #a75aea4f58afe69 .af167ad2e5abb66 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a75aea4f58afe69 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a75aea4f58afe69 .uk-position-center-left-out {
    left: -30px;
  }
  #a75aea4f58afe69 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab172a59baac464 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a623aac191a4158 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a623aac191a4158 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a623aac191a4158 .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;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a623aac191a4158 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a623aac191a4158 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a623aac191a4158 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a623aac191a4158 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a623aac191a4158 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a623aac191a4158 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a623aac191a4158 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a623aac191a4158 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a623aac191a4158 .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;
  }
}
#a623aac191a4158 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a623aac191a4158 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a623aac191a4158 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a623aac191a4158 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a623aac191a4158 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a623aac191a4158 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a623aac191a4158 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a623aac191a4158 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af584a87ddaec21 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ad716a9de4a6c3b .sidebar {
  width: 280px;
}
@media (max-width: 640px) {
  #ad716a9de4a6c3b .sidebar {
    width: 100%;
  }
}
#ad716a9de4a6c3b .accordion-menu,
#ad716a9de4a6c3b .accordion-menu ul ul.submenu,
#ad716a9de4a6c3b .accordion-menu ul ul.submenu li ul.submenu {
  background: transparent;
}
#ad716a9de4a6c3b .accordion-menu-header h4 {
  color: #fff;
  font-weight: 500;
  line-height: 50px;
}
#ad716a9de4a6c3b .accordion-menu ul li a {
  margin-bottom: 1px;
  color: #555;
  background-color: #ECECEC;
  display: block;
  width: 100%;
  padding: 0 40px;
  line-height: 50px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color .2s linear,background .2s linear;
  font-size: 14px;
  border: none;
  text-overflow: ellipsis;
}
#ad716a9de4a6c3b .accordion-menu > ul > li > a {
  background: #ddd;
  font-size: 16px;
}
#ad716a9de4a6c3b .accordion-menu li a:hover {
  background-color: #fc8137;
  color: #fff;
  border: none;
}
#ad716a9de4a6c3b .accordion-menu .submenu-indicator {
  cursor: pointer;
  position: absolute;
  font-size: 20px;
  line-height: 50px;
  padding: 0 20px;
  right: 0;
}
#ad716a9de4a6c3b .contact {
  color: #fff;
}
#ad716a9de4a6c3b .phone {
  display: block;
  font-size: 28px;
  font-weight: bold;
}
#ad716a9de4a6c3b .hot-list {
  background: #f7f8f9;
  padding: 15px;
}
#ad716a9de4a6c3b .hot-list a {
  color: #777;
}
#ad716a9de4a6c3b .hot-list a:hover {
  color: #fc8137;
}
#ad716a9de4a6c3b .hot-item .thumb {
  display: block;
  overflow: hidden;
}
#ad716a9de4a6c3b .hot-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s ease-out 0s;
}
#ad716a9de4a6c3b .hot-item:hover a {
  color: #fc8137;
}
#ad716a9de4a6c3b .hot-title {
  position: relative;
  padding-left: 10px;
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
#ad716a9de4a6c3b .hot-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #fc8137;
  content: "";
}
#ad716a9de4a6c3b .content-header {
  padding-bottom: 10px;
}
#a6af9af538a586b .sidebar {
  width: 280px;
}
@media (max-width: 640px) {
  #a6af9af538a586b .sidebar {
    width: 100%;
  }
}
#a6af9af538a586b .accordion-menu,
#a6af9af538a586b .accordion-menu ul ul.submenu,
#a6af9af538a586b .accordion-menu ul ul.submenu li ul.submenu {
  background: transparent;
}
#a6af9af538a586b .accordion-menu-header h4 {
  color: #fff;
  font-weight: 500;
  line-height: 50px;
}
#a6af9af538a586b .accordion-menu ul li a {
  margin-bottom: 1px;
  color: #555;
  background-color: #ECECEC;
  display: block;
  width: 100%;
  padding: 0 40px;
  line-height: 50px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color .2s linear,background .2s linear;
  font-size: 14px;
  border: none;
  text-overflow: ellipsis;
}
#a6af9af538a586b .accordion-menu > ul > li > a {
  background: #ddd;
  font-size: 16px;
}
#a6af9af538a586b .accordion-menu li a:hover {
  background-color: #fc8137;
  color: #fff;
  border: none;
}
#a6af9af538a586b .accordion-menu .submenu-indicator {
  cursor: pointer;
  position: absolute;
  font-size: 20px;
  line-height: 50px;
  padding: 0 20px;
  right: 0;
}
#a6af9af538a586b .contact {
  color: #fff;
}
#a6af9af538a586b .phone {
  display: block;
  font-size: 28px;
  font-weight: bold;
}
#a6af9af538a586b .hot-list {
  background: #f7f8f9;
  padding: 15px;
}
#a6af9af538a586b .hot-list a {
  color: #777;
}
#a6af9af538a586b .hot-list a:hover {
  color: #fc8137;
}
#a6af9af538a586b .hot-item .thumb {
  display: block;
  overflow: hidden;
}
#a6af9af538a586b .hot-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s ease-out 0s;
}
#a6af9af538a586b .hot-item:hover a {
  color: #fc8137;
}
#a6af9af538a586b .hot-title {
  position: relative;
  padding-left: 10px;
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
#a6af9af538a586b .hot-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #fc8137;
  content: "";
}
#a6af9af538a586b .content-header {
  padding-bottom: 10px;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a52f5aaf33a3c92 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#acae4a51f2acf87 .detail-content .goods-params div {
  margin: 4px 0;
}
#acae4a51f2acf87 .desc {
  white-space: pre-wrap;
}
#acae4a51f2acf87 .video-box,
#acae4a51f2acf87 .preview-box {
  margin-bottom: 20px;
  border: 1px solid #eee;
}
#acae4a51f2acf87 .video-box video {
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
#acae4a51f2acf87 .goods-slider {
  width: 430px;
  max-width: 100%;
}
#acae4a51f2acf87 .preview-box img {
  width: 100%;
}
#acae4a51f2acf87 .preview-box .zoom-hover {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 180px;
  height: 180px;
  border: 1px solid #aaa;
  background: #0099ff;
  background-color: rgba(133, 111, 41, 0.3);
  opacity: .5;
  cursor: move;
}
#acae4a51f2acf87 .zoom-indicator {
  background-color: #fff;
  opacity: .3;
  position: absolute;
  right: 0;
  bottom: 0;
}
#acae4a51f2acf87 .zoom-indicator i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#acae4a51f2acf87 .thumb-box {
  width: 100%;
  position: relative;
}
#acae4a51f2acf87 .thumb-box .btn {
  width: 22px;
  height: 32px;
}
#acae4a51f2acf87 .thumb-box .btn-next {
  background: url(/resources/sys/img/section/btn_next.png) no-repeat center center;
}
#acae4a51f2acf87 .thumb-box .btn-prev {
  background: url(/resources/sys/img/section/btn_prev.png) no-repeat center center;
}
#acae4a51f2acf87 .thumb-list {
  overflow: hidden;
}
#acae4a51f2acf87 .thumb-list ul {
  width: 100000px;
}
#acae4a51f2acf87 .thumb-list ul li {
  list-style: none;
  float: left;
  margin: 0 4px;
  cursor: pointer;
  position: relative;
}
#acae4a51f2acf87 .thumb-list ul li img {
  width: 68px;
  height: 68px;
  border: 2px solid #fff;
}
#acae4a51f2acf87 .thumb-list ul li.thumb-video::after {
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  background: url(/resources/sys/img/play-light.svg) center center no-repeat;
  background-size: 30px;
  position: absolute;
  opacity: .8;
  transition: all .2s ease;
}
#acae4a51f2acf87 .thumb-list ul li.thumb-video:hover::after {
  opacity: 1;
  background-size: 35px;
}
#acae4a51f2acf87 .thumb-list ul li.active img {
  border-color: #fc8137;
}
#acae4a51f2acf87 .zoom-box {
  display: none;
  overflow: hidden;
  position: absolute;
  left: 440px;
  top: 0;
  width: 500px;
  height: 500px;
  border: 1px solid #e4e4e4;
  z-index: 400;
  background: #fff;
}
#acae4a51f2acf87 .zoom-box img {
  max-width: initial;
}
#acae4a51f2acf87 .goods-intro .title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
#acae4a51f2acf87 .goods-intro .desc {
  font-size: 14px;
  line-height: 20px;
  color: #999;
}
#acae4a51f2acf87 .goods-intro .price {
  margin-top: 20px;
  background-color: #f5f3ef;
  border-top: 1px dotted #dedede;
  border-bottom: 1px dotted #dedede;
  padding: 16px 10px 13px;
  line-height: 24px;
  font-size: 13px;
  position: relative;
}
#acae4a51f2acf87 .goods-intro .price span {
  line-height: 30px;
}
#acae4a51f2acf87 .goods-intro .price .label {
  min-width: 55px;
  font-size: 13px;
  float: left;
  color: #666;
}
#acae4a51f2acf87 .price .present-price {
  display: inline-block;
  font-weight: 700;
  margin-right: 1px;
  height: 30px;
  font-size: 28px;
  line-height: 30px;
  margin-left: 2px;
  color: #fc8137;
  font-family: "Heiti SC", "Lucida Grande", "Hiragino Sans GB", "Hiragino Sans GB W3", verdana;
}
#acae4a51f2acf87 .price .present-price .rmb {
  margin-left: 0;
  line-height: 30px;
  color: #fc8137;
  font-size: 18px;
}
#acae4a51f2acf87 .price .origin-price {
  display: inline-block;
  font-size: 13px;
  color: #999;
  line-height: 24px;
}
#acae4a51f2acf87 .line-through {
  text-decoration: line-through;
}
#acae4a51f2acf87 .price hr {
  margin: 10px 20px 10px 0;
  overflow: hidden;
  border: none;
  height: 1px;
  border-bottom: 1px dashed #d2d2d2;
}
#acae4a51f2acf87 .price .policy-info {
  margin-left: 65px;
  padding-top: 2px;
  line-height: 20px;
  color: #666;
  display: block;
}
#acae4a51f2acf87 .price .policy-info li {
  display: inline-block;
  position: relative;
  margin-right: 30px;
  line-height: 24px;
}
#acae4a51f2acf87 .price .policy-info li::before {
  content: '･ ';
  position: absolute;
  left: -10px;
  top: 0;
}
#acae4a51f2acf87 .number {
  margin-top: 20px;
  margin-left: 10px;
}
#acae4a51f2acf87 .number .name {
  line-height: 30px;
  width: 54px;
}
#acae4a51f2acf87 .number .select-num {
  display: inline-block;
  border: 1px solid #ddd;
  overflow: hidden;
  line-height: 30px;
}
#acae4a51f2acf87 .select-num .btn {
  position: relative;
  width: 36px;
  height: 30px;
  line-height: 28px;
  background: #fff;
  text-align: center;
  color: #888;
  cursor: pointer;
}
#acae4a51f2acf87 .select-num .btn.disable {
  cursor: not-allowed;
  color: #ececec;
}
#acae4a51f2acf87 .select-num i {
  line-height: 30px;
}
#acae4a51f2acf87 .select-num .less {
  float: left;
  border-right: 1px solid #ddd;
}
#acae4a51f2acf87 .select-num .more {
  float: right;
  border-left: 1px solid #ddd;
}
#acae4a51f2acf87 .select-num input {
  border: none;
  text-align: center;
  font-size: 12px;
  color: #333;
  width: 60px;
  height: 28px;
}
#acae4a51f2acf87 .buttons {
  margin: 30px 0 0 12px;
}
#acae4a51f2acf87 .buttons .button {
  display: inline-block;
  margin-right: 8px;
  width: 168px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  color: #fff;
  background-color: #fc8137;
  text-align: center;
  border-radius: 2px;
}
#acae4a51f2acf87 .promote-goods {
  margin-top: 40px;
  border: 1px solid #e8e8e8;
}
#acae4a51f2acf87 .promote-goods .price {
  color: #d62525;
  line-height: 22px;
}
#acae4a51f2acf87 .promote-goods .promote-title {
  height: 44px;
  line-height: 44px;
  padding-left: 15px;
  font-size: 17px;
  position: relative;
  background-color: #f5f5f5;
}
#acae4a51f2acf87 .promote-goods .uk-slider {
  padding: 10px 50px;
}
#acae4a51f2acf87 .hot-list .img-wrap {
  display: block;
}
#acae4a51f2acf87 .right {
  width: 298px;
  border: 1px solid #e8e8e8;
}
#acae4a51f2acf87 .right .title {
  line-height: 40px;
  background-color: #f5f5f5;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid #e8e8e8;
}
#acae4a51f2acf87 .left .nav-wrap {
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  height: 44px;
}
#acae4a51f2acf87 .left .detail-nav-tab .item {
  min-width: 120px;
  height: 44px;
  line-height: 44px;
  font-size: 14px;
  border-right: 1px solid #e8e8e8;
  padding: 0 30px;
  text-align: center;
  float: left;
}
#acae4a51f2acf87 .detail-nav-tab ul {
  display: flex;
  overflow: scroll;
  scrollbar-width: 0;
}
#acae4a51f2acf87 ::-webkit-scrollbar {
  display: none;
}
#acae4a51f2acf87 .left .detail-nav-tab .item a {
  color: #555;
  font-weight: 500;
  display: block;
}
#acae4a51f2acf87 .left .detail-nav-tab .item.uk-active,
#acae4a51f2acf87 .left .detail-nav-tab .item:hover {
  background: #fff;
  border-top: 3px solid #fc8137;
  background-color: #fff;
  border-bottom: 1px solid #fff;
  line-height: 40px;
}
#acae4a51f2acf87 .left .detail-nav-tab .item.uk-active a {
  color: #fc8137;
  cursor: default;
}
#acae4a51f2acf87 .hot-list .item {
  margin: 24px 24px 0;
  border-bottom: 1px solid #e8e8e8;
}
#acae4a51f2acf87 .hot-list .item:last-child {
  border-bottom: none;
}
#acae4a51f2acf87 .hot-list .item .goods-title {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  max-width: 156px;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #333;
  margin: 8px auto 6px;
}
#acae4a51f2acf87 .hot-list .item .goods-title:hover {
  color: #fc8137;
}
#acae4a51f2acf87 .hot-list .item .price {
  font-size: 14px;
  line-height: 1;
  color: #fc8137;
  text-align: center;
  font-weight: bolder;
  font-family: "Heiti SC", "Lucida Grande", "Hiragino Sans GB", "Hiragino Sans GB W3", verdana;
}
#acae4a51f2acf87 .hot-list .item .origin-price {
  text-decoration: line-through;
  color: #666;
}
#acae4a51f2acf87 .hot-list .item .goods-info {
  padding: 0 5px 18px;
}
#acae4a51f2acf87 .goods-params span {
  display: inline-block;
  width: 100px;
  color: #999;
}
@media (max-width: 640px) {
  #acae4a51f2acf87 .right {
    width: 100%;
  }
  #acae4a51f2acf87 .preview-box img {
    height: 340px;
  }
  #acae4a51f2acf87 .goods-intro .buttons {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 0;
    z-index: 900;
    margin: 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e8e8e8;
  }
  #acae4a51f2acf87 .goods-intro .buttons .button {
    margin: 0;
    width: 50%;
    font-size: 14px;
    border-radius: 0;
  }
  #acae4a51f2acf87 .goods-intro .buttons .button-buy {
    border: 0;
    background: #fff;
  }
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af584a87ddaec21 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aae7caa392af763 > .ele-wrap {border-left-width: 4px;border-bottom-width: 1px;border-right-style: none;border-left-style: solid;border-bottom-style: solid;border-top-style: none;border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(204, 204, 204, 1);}#af88ba32b6a14ea .ad885abd7fa8d21 {
  overflow: hidden;
}
#af88ba32b6a14ea .ad885abd7fa8d21 , #af88ba32b6a14ea .ad885abd7fa8d21 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#af88ba32b6a14ea .ad885abd7fa8d21:hover , #af88ba32b6a14ea .ad885abd7fa8d21 *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#af88ba32b6a14ea .ace65a7279a0d6a {
  overflow: hidden;
}
#af88ba32b6a14ea .a1146ac743af62e  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#af88ba32b6a14ea .dynamic-list-item {
  border-bottom-width: 1px;
  border-bottom-color: #cccccc;
}
#af88ba32b6a14ea .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #af88ba32b6a14ea .uk-position-center-left-out {
    left: -30px;
  }
  #af88ba32b6a14ea .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a6e8cabb34a1c90 > .ele-wrap {border-left-width: 4px;border-bottom-width: 1px;border-right-style: none;border-left-style: solid;border-bottom-style: solid;border-top-style: none;border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(204, 204, 204, 1);}#a83c9a447ba6298 .ele-wrap {border-width: 0px;border-style: solid;color: #777;background-color: transparent;border-radius: 0px;font-size: 15px;justify-content: center;}#a83c9a447ba6298 .ele-wrap:hover {background-color: #fff;color: #444;}#a8477aa71daeda3 .uk-grid {
  margin-left: -15px;
}
#a8477aa71daeda3 .uk-grid > * {
  padding-left: 15px;
}
#a8477aa71daeda3 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a8477aa71daeda3 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a8477aa71daeda3 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a8477aa71daeda3 .article .info {
  padding: 20px 10px;
  position: relative;
}
#a8477aa71daeda3 .article .info p {
  margin: 10px 0 10px;
}
#a8477aa71daeda3 .article svg {
  fill: currentColor;
}
#a8477aa71daeda3 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#a8477aa71daeda3 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#a8477aa71daeda3 .article.list-icon .info {
  padding-left: 25px;
}
#a8477aa71daeda3 .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#a8477aa71daeda3 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
}
#a8477aa71daeda3 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a8477aa71daeda3 .article:hover .title {
  color: #fc8137;
}
#a8477aa71daeda3 .article:hover .datetime {
  color: #fc8137;
}
#a8477aa71daeda3 .article:hover .category {
  color: #b6b6b6;
}
#a8477aa71daeda3 .article:hover .abstract {
  color: #b6b6b6;
}
#a8477aa71daeda3 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a8477aa71daeda3 .article:hover .list_icon {
  color: #b6b6b6;
}
#a90c7a9657ada6d > .ele-wrap {border-left-width: 4px;border-bottom-width: 1px;border-right-style: none;border-left-style: solid;border-bottom-style: solid;border-top-style: none;border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(204, 204, 204, 1);}#a9e71a754ba60f0 .ele-wrap {border-width: 0px;border-style: solid;color: #777;background-color: transparent;border-radius: 0px;font-size: 15px;justify-content: center;}#a9e71a754ba60f0 .ele-wrap:hover {background-color: #fff;color: #444;}#ae1a2a3d19a6c9a .uk-grid {
  margin-left: -15px;
}
#ae1a2a3d19a6c9a .uk-grid > * {
  padding-left: 15px;
}
#ae1a2a3d19a6c9a .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ae1a2a3d19a6c9a .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#ae1a2a3d19a6c9a .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#ae1a2a3d19a6c9a .article .info {
  padding: 20px 10px;
  position: relative;
}
#ae1a2a3d19a6c9a .article .info p {
  margin: 10px 0 10px;
}
#ae1a2a3d19a6c9a .article svg {
  fill: currentColor;
}
#ae1a2a3d19a6c9a .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#ae1a2a3d19a6c9a .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#ae1a2a3d19a6c9a .article.list-icon .info {
  padding-left: 25px;
}
#ae1a2a3d19a6c9a .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#ae1a2a3d19a6c9a .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
}
#ae1a2a3d19a6c9a .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#ae1a2a3d19a6c9a .article:hover .title {
  color: #fc8137;
}
#ae1a2a3d19a6c9a .article:hover .datetime {
  color: #fc8137;
}
#ae1a2a3d19a6c9a .article:hover .category {
  color: #b6b6b6;
}
#ae1a2a3d19a6c9a .article:hover .abstract {
  color: #b6b6b6;
}
#ae1a2a3d19a6c9a .article:hover .btn_icon {
  color: #b6b6b6;
}
#ae1a2a3d19a6c9a .article:hover .list_icon {
  color: #b6b6b6;
}
#a3f92a2767a9763 > .ele-wrap {border-left-width: 4px;border-bottom-width: 1px;border-right-style: none;border-left-style: solid;border-bottom-style: solid;border-top-style: none;border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(204, 204, 204, 1);}#a73b8ab4c0afc54 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a73b8ab4c0afc54 .uk-grid {
  margin-left: -4px;
}
#a73b8ab4c0afc54 .uk-grid > * {
  padding-left: 4px;
}
#a73b8ab4c0afc54 .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#a73b8ab4c0afc54 .uk-card {
  background-color: #2265ff;
  transition: all .3s ease;
  background-color: #888888;
}
#a73b8ab4c0afc54 .uk-card-media-top {
  overflow: hidden;
}
#a73b8ab4c0afc54 .uk-card-media-top .img {
  transition: all .3s ease;
}
#a73b8ab4c0afc54 .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#a73b8ab4c0afc54 .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#a73b8ab4c0afc54 .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#a73b8ab4c0afc54 .uk-card-body {
  padding: 15px 10px 8px;
}
#a73b8ab4c0afc54 hr {
  border-top-color: #5589ff;
  margin: 0 0 10px;
}
#a73b8ab4c0afc54 .uk-button {
  border: 1px solid #ececec;
}
#a73b8ab4c0afc54 .uk-card .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: NotoSansSC-Medium;
  color: #ffffff;
}
#a73b8ab4c0afc54 .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: NotoSansSC-Light;
  color: #8bbaff;
}
#a73b8ab4c0afc54 .uk-card:hover {
  background-color: #fc8137;
}
#a73b8ab4c0afc54 .uk-card:hover .title {
  color: #fff;
}
#a73b8ab4c0afc54 .uk-card:hover hr {
  border-top-color: #fda169;
}
#a73b8ab4c0afc54 .uk-card:hover .img {
  transform: scale(1.2);
}
#a73b8ab4c0afc54 .uk-card:hover .abstract {
  color: #fff;
}
#a73b8ab4c0afc54 .uk-card:hover .datetime {
  color: #d3b267;
}
#a73b8ab4c0afc54 .uk-card:hover .category {
  color: #d3b267;
}
#a73b8ab4c0afc54 .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a0929a137fa09ac .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#afdb1a45e5aed5d .sidebar {
  width: 300px;
  margin-left: 20px;
}
#afdb1a45e5aed5d .sidebar.left {
  margin-left: 0;
  margin-right: 20px;
}
#afdb1a45e5aed5d .abstract {
  white-space: pre-wrap;
}
@media (max-width: 640px) {
  #afdb1a45e5aed5d .sidebar {
    width: 100%;
    margin: 0 0 15px;
  }
  #afdb1a45e5aed5d .uk-container {
    padding: 0;
  }
  #afdb1a45e5aed5d .sidebar {
    padding: 10px;
  }
}
#afdb1a45e5aed5d .search-form {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: block;
}
#afdb1a45e5aed5d .search-form .search-input {
  width: 100%;
  height: 34px;
  padding: 5px 52px 5px 10px;
  font-size: 14px;
  color: #333;
  border: 1px solid #efefef;
}
#afdb1a45e5aed5d .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: #fc8137;
  cursor: pointer;
}
#afdb1a45e5aed5d .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;
}
#afdb1a45e5aed5d .content-tags a:hover {
  background: #fc8137;
  color: #fff;
  border-color: #fc8137;
}
#afdb1a45e5aed5d .abstract,
#afdb1a45e5aed5d .copyright {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #999;
  border: 1px solid #efefef;
  background: #fbfbfb;
  border-radius: 3px;
}
#afdb1a45e5aed5d .copyright a {
  color: #999;
  word-break: break-all;
}
#afdb1a45e5aed5d .detail-content {
  font-size: 16px;
  color: #444;
}
#afdb1a45e5aed5d .detail-content img {
  margin-bottom: 10px;
}
#afdb1a45e5aed5d .detail-content table {
  font-size: 13px;
}
#afdb1a45e5aed5d .phone {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
#afdb1a45e5aed5d .hot-list,
#afdb1a45e5aed5d .new-list {
  padding: 12px;
}
#afdb1a45e5aed5d .new-list a:hover,
#afdb1a45e5aed5d .hot-list a:hover {
  color: #fc8137;
}
#afdb1a45e5aed5d .hot-item .thumb {
  display: inline-block;
  width: 100px;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
#afdb1a45e5aed5d .hot-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s ease-out 0s;
}
#afdb1a45e5aed5d .hot-item:hover a {
  color: #fc8137;
}
#afdb1a45e5aed5d .panel-title {
  position: relative;
  padding-left: 10px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
#afdb1a45e5aed5d .panel-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #fc8137;
  content: "";
}
#afdb1a45e5aed5d .content-header {
  padding-bottom: 10px;
}
#afdb1a45e5aed5d .item-title {
  color: #333;
}
#afdb1a45e5aed5d input::placeholder {
  color: #999;
}
#afdb1a45e5aed5d .datetime {
  color: #999;
}
#afdb1a45e5aed5d .new-item a {
  padding-left: 25px;
}
#afdb1a45e5aed5d .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;
}
#afdb1a45e5aed5d .siblings a {
  color: #444;
  line-height: 2;
}
#afdb1a45e5aed5d .siblings a:hover {
  color: #fc8137;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ab8c0acbe7a1f7d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad58ea7898ade3d > .ele-wrap {border-left-width: 4px;border-bottom-width: 1px;border-right-style: none;border-left-style: solid;border-bottom-style: solid;border-top-style: none;border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(204, 204, 204, 1);}#aba1ea4ee1a0a54 .ae1e5aee1bafa96 {
  overflow: hidden;
}
#aba1ea4ee1a0a54 .ae1e5aee1bafa96 , #aba1ea4ee1a0a54 .ae1e5aee1bafa96 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#aba1ea4ee1a0a54 .ae1e5aee1bafa96:hover , #aba1ea4ee1a0a54 .ae1e5aee1bafa96 *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#aba1ea4ee1a0a54 .a9f32a5693acaef {
  overflow: hidden;
}
#aba1ea4ee1a0a54 .a0a32af47fa6122  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#aba1ea4ee1a0a54 .dynamic-list-item {
  border-bottom-width: 1px;
  border-bottom-color: #cccccc;
}
#aba1ea4ee1a0a54 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aba1ea4ee1a0a54 .uk-position-center-left-out {
    left: -30px;
  }
  #aba1ea4ee1a0a54 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a10adacbe5afa71 > .ele-wrap {border-left-width: 4px;border-bottom-width: 1px;border-right-style: none;border-left-style: solid;border-bottom-style: solid;border-top-style: none;border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(204, 204, 204, 1);}#af0d3a7e0caf0cf .ele-wrap {border-width: 0px;border-style: solid;color: #777;background-color: transparent;border-radius: 0px;font-size: 15px;justify-content: center;}#af0d3a7e0caf0cf .ele-wrap:hover {background-color: #fff;color: #444;}#a566ba4163aba8e .uk-grid {
  margin-left: -15px;
}
#a566ba4163aba8e .uk-grid > * {
  padding-left: 15px;
}
#a566ba4163aba8e .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a566ba4163aba8e .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a566ba4163aba8e .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a566ba4163aba8e .article .info {
  padding: 20px 10px;
  position: relative;
}
#a566ba4163aba8e .article .info p {
  margin: 10px 0 10px;
}
#a566ba4163aba8e .article svg {
  fill: currentColor;
}
#a566ba4163aba8e .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#a566ba4163aba8e .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#a566ba4163aba8e .article.list-icon .info {
  padding-left: 25px;
}
#a566ba4163aba8e .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#a566ba4163aba8e .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
}
#a566ba4163aba8e .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a566ba4163aba8e .article:hover .title {
  color: #fc8137;
}
#a566ba4163aba8e .article:hover .datetime {
  color: #fc8137;
}
#a566ba4163aba8e .article:hover .category {
  color: #b6b6b6;
}
#a566ba4163aba8e .article:hover .abstract {
  color: #b6b6b6;
}
#a566ba4163aba8e .article:hover .btn_icon {
  color: #b6b6b6;
}
#a566ba4163aba8e .article:hover .list_icon {
  color: #b6b6b6;
}
#a20e2a43b8ae423 > .ele-wrap {border-left-width: 4px;border-bottom-width: 1px;border-right-style: none;border-left-style: solid;border-bottom-style: solid;border-top-style: none;border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(204, 204, 204, 1);}#ac5c9a42b0a118b .ele-wrap {border-width: 0px;border-style: solid;color: #777;background-color: transparent;border-radius: 0px;font-size: 15px;justify-content: center;}#ac5c9a42b0a118b .ele-wrap:hover {background-color: #fff;color: #444;}#aec3ba9000aecac .uk-grid {
  margin-left: -15px;
}
#aec3ba9000aecac .uk-grid > * {
  padding-left: 15px;
}
#aec3ba9000aecac .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aec3ba9000aecac .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#aec3ba9000aecac .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#aec3ba9000aecac .article .info {
  padding: 20px 10px;
  position: relative;
}
#aec3ba9000aecac .article .info p {
  margin: 10px 0 10px;
}
#aec3ba9000aecac .article svg {
  fill: currentColor;
}
#aec3ba9000aecac .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#aec3ba9000aecac .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#aec3ba9000aecac .article.list-icon .info {
  padding-left: 25px;
}
#aec3ba9000aecac .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#aec3ba9000aecac .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
}
#aec3ba9000aecac .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#aec3ba9000aecac .article:hover .title {
  color: #fc8137;
}
#aec3ba9000aecac .article:hover .datetime {
  color: #fc8137;
}
#aec3ba9000aecac .article:hover .category {
  color: #b6b6b6;
}
#aec3ba9000aecac .article:hover .abstract {
  color: #b6b6b6;
}
#aec3ba9000aecac .article:hover .btn_icon {
  color: #b6b6b6;
}
#aec3ba9000aecac .article:hover .list_icon {
  color: #b6b6b6;
}
#a2218a93b4a1e71 > .ele-wrap {border-left-width: 4px;border-bottom-width: 1px;border-right-style: none;border-left-style: solid;border-bottom-style: solid;border-top-style: none;border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(204, 204, 204, 1);}#ad523a1555ac38f .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#ad523a1555ac38f .uk-grid {
  margin-left: -4px;
}
#ad523a1555ac38f .uk-grid > * {
  padding-left: 4px;
}
#ad523a1555ac38f .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#ad523a1555ac38f .uk-card {
  background-color: #2265ff;
  transition: all .3s ease;
  background-color: #888888;
}
#ad523a1555ac38f .uk-card-media-top {
  overflow: hidden;
}
#ad523a1555ac38f .uk-card-media-top .img {
  transition: all .3s ease;
}
#ad523a1555ac38f .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#ad523a1555ac38f .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#ad523a1555ac38f .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#ad523a1555ac38f .uk-card-body {
  padding: 15px 10px 8px;
}
#ad523a1555ac38f hr {
  border-top-color: #5589ff;
  margin: 0 0 10px;
}
#ad523a1555ac38f .uk-button {
  border: 1px solid #ececec;
}
#ad523a1555ac38f .uk-card .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: NotoSansSC-Medium;
  color: #ffffff;
}
#ad523a1555ac38f .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: NotoSansSC-Light;
  color: #8bbaff;
}
#ad523a1555ac38f .uk-card:hover {
  background-color: #fc8137;
}
#ad523a1555ac38f .uk-card:hover .title {
  color: #fff;
}
#ad523a1555ac38f .uk-card:hover hr {
  border-top-color: #fda169;
}
#ad523a1555ac38f .uk-card:hover .img {
  transform: scale(1.2);
}
#ad523a1555ac38f .uk-card:hover .abstract {
  color: #fff;
}
#ad523a1555ac38f .uk-card:hover .datetime {
  color: #d3b267;
}
#ad523a1555ac38f .uk-card:hover .category {
  color: #d3b267;
}
#ad523a1555ac38f .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a50e1a0573a9335 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a464aae8bfaecac > .ele-wrap {border-left-width: 4px;border-bottom-width: 1px;border-right-style: none;border-left-style: solid;border-bottom-style: solid;border-top-style: none;border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(204, 204, 204, 1);}#aae40a4e83a1e2d .a954fa3b2eacc89 {
  overflow: hidden;
}
#aae40a4e83a1e2d .a954fa3b2eacc89 , #aae40a4e83a1e2d .a954fa3b2eacc89 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#aae40a4e83a1e2d .a954fa3b2eacc89:hover , #aae40a4e83a1e2d .a954fa3b2eacc89 *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#aae40a4e83a1e2d .a3817ac912a302a {
  overflow: hidden;
}
#aae40a4e83a1e2d .aa0e9a7d3fa2a3e  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#aae40a4e83a1e2d .dynamic-list-item {
  border-bottom-width: 1px;
  border-bottom-color: #cccccc;
}
#aae40a4e83a1e2d .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aae40a4e83a1e2d .uk-position-center-left-out {
    left: -30px;
  }
  #aae40a4e83a1e2d .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#abb96a4218a0cd6 > .ele-wrap {border-left-width: 4px;border-bottom-width: 1px;border-right-style: none;border-left-style: solid;border-bottom-style: solid;border-top-style: none;border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(204, 204, 204, 1);}#a6ca6adb95a40c3 .ele-wrap {border-width: 0px;border-style: solid;color: #777;background-color: transparent;border-radius: 0px;font-size: 15px;justify-content: center;}#a6ca6adb95a40c3 .ele-wrap:hover {background-color: #fff;color: #444;}#a1811a0421a1626 .uk-grid {
  margin-left: -15px;
}
#a1811a0421a1626 .uk-grid > * {
  padding-left: 15px;
}
#a1811a0421a1626 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a1811a0421a1626 .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#a1811a0421a1626 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a1811a0421a1626 .article .info {
  padding: 20px 10px;
  position: relative;
}
#a1811a0421a1626 .article .info p {
  margin: 10px 0 10px;
}
#a1811a0421a1626 .article svg {
  fill: currentColor;
}
#a1811a0421a1626 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#a1811a0421a1626 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#a1811a0421a1626 .article.list-icon .info {
  padding-left: 25px;
}
#a1811a0421a1626 .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#a1811a0421a1626 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
}
#a1811a0421a1626 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a1811a0421a1626 .article:hover .title {
  color: #fc8137;
}
#a1811a0421a1626 .article:hover .datetime {
  color: #fc8137;
}
#a1811a0421a1626 .article:hover .category {
  color: #b6b6b6;
}
#a1811a0421a1626 .article:hover .abstract {
  color: #b6b6b6;
}
#a1811a0421a1626 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a1811a0421a1626 .article:hover .list_icon {
  color: #b6b6b6;
}
#a3d8ba7259a0478 > .ele-wrap {border-left-width: 4px;border-bottom-width: 1px;border-right-style: none;border-left-style: solid;border-bottom-style: solid;border-top-style: none;border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(204, 204, 204, 1);}#a11c5ab0ffa8483 .ele-wrap {border-width: 0px;border-style: solid;color: #777;background-color: transparent;border-radius: 0px;font-size: 15px;justify-content: center;}#a11c5ab0ffa8483 .ele-wrap:hover {background-color: #fff;color: #444;}#ac338afec1aafde .uk-grid {
  margin-left: -15px;
}
#ac338afec1aafde .uk-grid > * {
  padding-left: 15px;
}
#ac338afec1aafde .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ac338afec1aafde .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#ac338afec1aafde .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#ac338afec1aafde .article .info {
  padding: 20px 10px;
  position: relative;
}
#ac338afec1aafde .article .info p {
  margin: 10px 0 10px;
}
#ac338afec1aafde .article svg {
  fill: currentColor;
}
#ac338afec1aafde .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#ac338afec1aafde .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#ac338afec1aafde .article.list-icon .info {
  padding-left: 25px;
}
#ac338afec1aafde .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#ac338afec1aafde .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
}
#ac338afec1aafde .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#ac338afec1aafde .article:hover .title {
  color: #fc8137;
}
#ac338afec1aafde .article:hover .datetime {
  color: #fc8137;
}
#ac338afec1aafde .article:hover .category {
  color: #b6b6b6;
}
#ac338afec1aafde .article:hover .abstract {
  color: #b6b6b6;
}
#ac338afec1aafde .article:hover .btn_icon {
  color: #b6b6b6;
}
#ac338afec1aafde .article:hover .list_icon {
  color: #b6b6b6;
}
#a6e89a6f9ea2171 > .ele-wrap {border-left-width: 4px;border-bottom-width: 1px;border-right-style: none;border-left-style: solid;border-bottom-style: solid;border-top-style: none;border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(204, 204, 204, 1);}#aff12af062aa99b .ap-category-filter ul li.active {
  border-color: #fc8137;
  color: #fc8137;
}
#aff12af062aa99b .uk-grid {
  margin-left: -4px;
}
#aff12af062aa99b .uk-grid > * {
  padding-left: 4px;
}
#aff12af062aa99b .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#aff12af062aa99b .uk-card {
  background-color: #2265ff;
  transition: all .3s ease;
  background-color: #888888;
}
#aff12af062aa99b .uk-card-media-top {
  overflow: hidden;
}
#aff12af062aa99b .uk-card-media-top .img {
  transition: all .3s ease;
}
#aff12af062aa99b .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#aff12af062aa99b .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#aff12af062aa99b .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#aff12af062aa99b .uk-card-body {
  padding: 15px 10px 8px;
}
#aff12af062aa99b hr {
  border-top-color: #5589ff;
  margin: 0 0 10px;
}
#aff12af062aa99b .uk-button {
  border: 1px solid #ececec;
}
#aff12af062aa99b .uk-card .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: NotoSansSC-Medium;
  color: #ffffff;
}
#aff12af062aa99b .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: NotoSansSC-Light;
  color: #8bbaff;
}
#aff12af062aa99b .uk-card:hover {
  background-color: #fc8137;
}
#aff12af062aa99b .uk-card:hover .title {
  color: #fff;
}
#aff12af062aa99b .uk-card:hover hr {
  border-top-color: #fda169;
}
#aff12af062aa99b .uk-card:hover .img {
  transform: scale(1.2);
}
#aff12af062aa99b .uk-card:hover .abstract {
  color: #fff;
}
#aff12af062aa99b .uk-card:hover .datetime {
  color: #d3b267;
}
#aff12af062aa99b .uk-card:hover .category {
  color: #d3b267;
}
#aff12af062aa99b .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af584a87ddaec21 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a44cdac63aa9788 .sidebar {
  width: 300px;
  margin-left: 20px;
}
#a44cdac63aa9788 .sidebar.left {
  margin-left: 0;
  margin-right: 20px;
}
@media (max-width: 640px) {
  #a44cdac63aa9788 .sidebar {
    width: 100%;
    margin: 0 0 15px;
  }
}
#a44cdac63aa9788 .data-list .uk-card {
  cursor: pointer !important;
}
#a44cdac63aa9788 .data-list .uk-card img {
  max-height: 300px;
}
#a44cdac63aa9788 .data-list .uk-card:hover {
  background: #fafafa;
}
#a44cdac63aa9788 .data-list .uk-card:hover .uk-h4 {
  color: #fc8137;
}
#a44cdac63aa9788 .data-list .uk-card .uk-card-media-left img {
  transition: all .3s ease;
}
#a44cdac63aa9788 .data-list .uk-card .uk-card-media-left:hover img {
  transform: scale(1.05);
}
#a44cdac63aa9788 .data-list .uk-card-media-left {
  border-radius: 4px;
  overflow: hidden;
}
#a44cdac63aa9788 .search-form {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: block;
}
#a44cdac63aa9788 .search-form input.search-input {
  width: 100%;
  height: 34px;
  padding: 5px 52px 5px 10px;
  font-size: 14px;
  color: #333;
  border: 1px solid #efefef;
}
#a44cdac63aa9788 .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: #fc8137;
  cursor: pointer;
}
#a44cdac63aa9788 .uk-card .category {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 6px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  background-color: #000;
  filter: alpha(opacity=60);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 2px;
  transition: all .3s ease;
}
#a44cdac63aa9788 .uk-card .category:hover {
  background: #fc8137;
}
#a44cdac63aa9788 .accordion-menu {
  width: 100%;
}
#a44cdac63aa9788 .accordion-menu ul ul.submenu,
#a44cdac63aa9788 .accordion-menu ul ul.submenu li ul.submenu {
  background: transparent;
}
#a44cdac63aa9788 .accordion-menu-header {
  padding: 10px 10px 0;
  border-bottom: 1px solid #ececec;
}
#a44cdac63aa9788 .accordion-menu ul li a {
  margin-bottom: 1px;
  color: #555;
  display: block;
  width: 100%;
  padding: 0 40px;
  line-height: 40px;
  background: #ececec;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color .2s linear,background .2s linear;
  font-size: 13px;
  border: none;
}
#a44cdac63aa9788 .accordion-menu > ul > li > a {
  background: #fff;
  font-size: 14px;
  border-bottom: 1px solid #ececec;
}
#a44cdac63aa9788 .accordion-menu .menu-item.active > a {
  background: #fc8137;
  color: #fff;
}
#a44cdac63aa9788 .accordion-menu li a:hover {
  background-color: #fc8137;
  color: #fff;
  border: none;
}
#a44cdac63aa9788 .accordion-menu .submenu-indicator {
  cursor: pointer;
  position: absolute;
  font-size: 20px;
  line-height: 40px;
  padding: 0 20px;
  right: 0;
}
#a44cdac63aa9788 .phone {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
#a44cdac63aa9788 .hot-list,
#a44cdac63aa9788 .new-list {
  padding: 12px;
}
#a44cdac63aa9788 .new-list a:hover,
#a44cdac63aa9788 .hot-list a:hover {
  color: #fc8137;
}
#a44cdac63aa9788 .hot-item .thumb {
  display: inline-block;
  width: 100px;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
#a44cdac63aa9788 .hot-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s ease-out 0s;
}
#a44cdac63aa9788 .hot-item:hover a {
  color: #fc8137;
}
#a44cdac63aa9788 .panel-title {
  position: relative;
  padding-left: 10px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
#a44cdac63aa9788 .panel-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #fc8137;
  content: "";
}
#a44cdac63aa9788 .content-header {
  padding-bottom: 10px;
}
#a44cdac63aa9788 .item-title {
  color: #333;
}
#a44cdac63aa9788 input::placeholder {
  color: #999;
}
#a44cdac63aa9788 .datetime {
  color: #999;
}
#a44cdac63aa9788 .new-item a {
  padding-left: 25px;
}
#a44cdac63aa9788 .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;
}
#af853a8775a1771 .sidebar {
  width: 300px;
  margin-left: 20px;
}
#af853a8775a1771 .sidebar.left {
  margin-left: 0;
  margin-right: 20px;
}
@media (max-width: 640px) {
  #af853a8775a1771 .sidebar {
    width: 100%;
    margin: 0 0 15px;
  }
}
#af853a8775a1771 .data-list .uk-card {
  cursor: pointer !important;
}
#af853a8775a1771 .data-list .uk-card img {
  max-height: 300px;
}
#af853a8775a1771 .data-list .uk-card:hover {
  background: #fafafa;
}
#af853a8775a1771 .data-list .uk-card:hover .uk-h4 {
  color: #fc8137;
}
#af853a8775a1771 .data-list .uk-card .uk-card-media-left img {
  transition: all .3s ease;
}
#af853a8775a1771 .data-list .uk-card .uk-card-media-left:hover img {
  transform: scale(1.05);
}
#af853a8775a1771 .data-list .uk-card-media-left {
  border-radius: 4px;
  overflow: hidden;
}
#af853a8775a1771 .search-form {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: block;
}
#af853a8775a1771 .search-form input.search-input {
  width: 100%;
  height: 34px;
  padding: 5px 52px 5px 10px;
  font-size: 14px;
  color: #333;
  border: 1px solid #efefef;
}
#af853a8775a1771 .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: #fc8137;
  cursor: pointer;
}
#af853a8775a1771 .uk-card .category {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 6px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  background-color: #000;
  filter: alpha(opacity=60);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 2px;
  transition: all .3s ease;
}
#af853a8775a1771 .uk-card .category:hover {
  background: #fc8137;
}
#af853a8775a1771 .accordion-menu {
  width: 100%;
}
#af853a8775a1771 .accordion-menu ul ul.submenu,
#af853a8775a1771 .accordion-menu ul ul.submenu li ul.submenu {
  background: transparent;
}
#af853a8775a1771 .accordion-menu-header {
  padding: 10px 10px 0;
  border-bottom: 1px solid #ececec;
}
#af853a8775a1771 .accordion-menu ul li a {
  margin-bottom: 1px;
  color: #555;
  display: block;
  width: 100%;
  padding: 0 40px;
  line-height: 40px;
  background: #ececec;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color .2s linear,background .2s linear;
  font-size: 13px;
  border: none;
}
#af853a8775a1771 .accordion-menu > ul > li > a {
  background: #fff;
  font-size: 14px;
  border-bottom: 1px solid #ececec;
}
#af853a8775a1771 .accordion-menu .menu-item.active > a {
  background: #fc8137;
  color: #fff;
}
#af853a8775a1771 .accordion-menu li a:hover {
  background-color: #fc8137;
  color: #fff;
  border: none;
}
#af853a8775a1771 .accordion-menu .submenu-indicator {
  cursor: pointer;
  position: absolute;
  font-size: 20px;
  line-height: 40px;
  padding: 0 20px;
  right: 0;
}
#af853a8775a1771 .phone {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
#af853a8775a1771 .hot-list,
#af853a8775a1771 .new-list {
  padding: 12px;
}
#af853a8775a1771 .new-list a:hover,
#af853a8775a1771 .hot-list a:hover {
  color: #fc8137;
}
#af853a8775a1771 .hot-item .thumb {
  display: inline-block;
  width: 100px;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
#af853a8775a1771 .hot-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s ease-out 0s;
}
#af853a8775a1771 .hot-item:hover a {
  color: #fc8137;
}
#af853a8775a1771 .panel-title {
  position: relative;
  padding-left: 10px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
#af853a8775a1771 .panel-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #fc8137;
  content: "";
}
#af853a8775a1771 .content-header {
  padding-bottom: 10px;
}
#af853a8775a1771 .item-title {
  color: #333;
}
#af853a8775a1771 input::placeholder {
  color: #999;
}
#af853a8775a1771 .datetime {
  color: #999;
}
#af853a8775a1771 .new-item a {
  padding-left: 25px;
}
#af853a8775a1771 .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;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a52f5aaf33a3c92 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a872badbe8afca8 .sidebar {
  width: 300px;
  margin-left: 20px;
}
#a872badbe8afca8 .sidebar.left {
  margin-left: 0;
  margin-right: 20px;
}
#a872badbe8afca8 .abstract {
  white-space: pre-wrap;
}
@media (max-width: 640px) {
  #a872badbe8afca8 .sidebar {
    width: 100%;
    margin: 0 0 15px;
  }
  #a872badbe8afca8 .uk-container {
    padding: 0;
  }
  #a872badbe8afca8 .sidebar {
    padding: 10px;
  }
}
#a872badbe8afca8 .search-form {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: block;
}
#a872badbe8afca8 .search-form .search-input {
  width: 100%;
  height: 34px;
  padding: 5px 52px 5px 10px;
  font-size: 14px;
  color: #333;
  border: 1px solid #efefef;
}
#a872badbe8afca8 .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: #fc8137;
  cursor: pointer;
}
#a872badbe8afca8 .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;
}
#a872badbe8afca8 .content-tags a:hover {
  background: #fc8137;
  color: #fff;
  border-color: #fc8137;
}
#a872badbe8afca8 .abstract,
#a872badbe8afca8 .copyright {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #999;
  border: 1px solid #efefef;
  background: #fbfbfb;
  border-radius: 3px;
}
#a872badbe8afca8 .copyright a {
  color: #999;
  word-break: break-all;
}
#a872badbe8afca8 .detail-content {
  font-size: 16px;
  color: #444;
}
#a872badbe8afca8 .detail-content img {
  margin-bottom: 10px;
}
#a872badbe8afca8 .detail-content table {
  font-size: 13px;
}
#a872badbe8afca8 .phone {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
#a872badbe8afca8 .hot-list,
#a872badbe8afca8 .new-list {
  padding: 12px;
}
#a872badbe8afca8 .new-list a:hover,
#a872badbe8afca8 .hot-list a:hover {
  color: #fc8137;
}
#a872badbe8afca8 .hot-item .thumb {
  display: inline-block;
  width: 100px;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
#a872badbe8afca8 .hot-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s ease-out 0s;
}
#a872badbe8afca8 .hot-item:hover a {
  color: #fc8137;
}
#a872badbe8afca8 .panel-title {
  position: relative;
  padding-left: 10px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
#a872badbe8afca8 .panel-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #fc8137;
  content: "";
}
#a872badbe8afca8 .content-header {
  padding-bottom: 10px;
}
#a872badbe8afca8 .item-title {
  color: #333;
}
#a872badbe8afca8 input::placeholder {
  color: #999;
}
#a872badbe8afca8 .datetime {
  color: #999;
}
#a872badbe8afca8 .new-item a {
  padding-left: 25px;
}
#a872badbe8afca8 .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;
}
#a872badbe8afca8 .siblings a {
  color: #444;
  line-height: 2;
}
#a872badbe8afca8 .siblings a:hover {
  color: #fc8137;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a52f5aaf33a3c92 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a945ea8dfda79e6 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235893916.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aefeca4c6da4d02 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235895659.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a96bfab99fa42c5 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235896255.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0e49a5246af551 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235896881.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2549a89dfab58e > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 5px;border-bottom-right-radius: 5px;border-bottom-left-radius: 5px;border-top-left-radius: 5px;}#a0872a3fa3a894e , #a0872a3fa3a894e a{color: rgba(248, 231, 28, 1);}#a6851a6147a696f > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a969ba8d4aac000 , #a969ba8d4aac000 a{color: rgba(248, 231, 28, 1);}#aa793a35f6a981f > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a63a5a5035a24a9 , #a63a5a5035a24a9 a{color: rgba(248, 231, 28, 1);}#a6382a02d7a19fc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6e6ea16fea985d > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2876a4ca0a465f .a23cca6ed4ae3a9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#a2876a4ca0a465f .ac412a0a53afc6d > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2876a4ca0a465f .ad005a3c3ba8afb , #a2876a4ca0a465f .ad005a3c3ba8afb a{color: rgba(252, 129, 55, 1);}#a2876a4ca0a465f .a13dca1d97a4be5 , #a2876a4ca0a465f .a13dca1d97a4be5 .param-tag {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a2876a4ca0a465f .a3515a22f8acf65 .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a2876a4ca0a465f .a1377a63cea841b {
  overflow: hidden;
}
#a2876a4ca0a465f .a1377a63cea841b , #a2876a4ca0a465f .a1377a63cea841b > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a2876a4ca0a465f .a1377a63cea841b:hover , #a2876a4ca0a465f .a1377a63cea841b *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a2876a4ca0a465f .ae52fa64beaab22 {
  overflow: hidden;
}
#a2876a4ca0a465f .ae52fa64beaab22 , #a2876a4ca0a465f .ae52fa64beaab22 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(102, 102, 102, 1);}#a2876a4ca0a465f .a5078ac58bafee8 , #a2876a4ca0a465f .a5078ac58bafee8 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 26px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a2876a4ca0a465f .a639aa3a6fa812e > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#a2876a4ca0a465f .a6d27ae08aad205 , #a2876a4ca0a465f .a6d27ae08aad205 a{color: rgba(252, 129, 55, 1);}#a2876a4ca0a465f .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a2876a4ca0a465f .uk-position-center-left-out {
    left: -30px;
  }
  #a2876a4ca0a465f .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a14bea5a5dac263 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8f34ace4aa163d > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afc5ea50caaa7a8 .a7a14a1d75ab849 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#afc5ea50caaa7a8 .a9655a5781a2df4 > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afc5ea50caaa7a8 .a34bca5000a6a30 , #afc5ea50caaa7a8 .a34bca5000a6a30 a{color: rgba(252, 129, 55, 1);}#afc5ea50caaa7a8 .addfca2c4ca49f8 , #afc5ea50caaa7a8 .addfca2c4ca49f8 .param-tag {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(252, 129, 55, 1);}#afc5ea50caaa7a8 .a4971a5a54a6903 .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#afc5ea50caaa7a8 .a0ea9a2865ace56 {
  overflow: hidden;
}
#afc5ea50caaa7a8 .a0ea9a2865ace56 , #afc5ea50caaa7a8 .a0ea9a2865ace56 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#afc5ea50caaa7a8 .a0ea9a2865ace56:hover , #afc5ea50caaa7a8 .a0ea9a2865ace56 *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#afc5ea50caaa7a8 .a57b5a08faa5fa5 {
  overflow: hidden;
}
#afc5ea50caaa7a8 .a57b5a08faa5fa5 , #afc5ea50caaa7a8 .a57b5a08faa5fa5 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(102, 102, 102, 1);}#afc5ea50caaa7a8 .ac6f2a6780a1570 , #afc5ea50caaa7a8 .ac6f2a6780a1570 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 26px;font-family: inherit;color: rgba(252, 129, 55, 1);}#afc5ea50caaa7a8 .aaaffa189eae342 > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-bottom-right-radius: 10px;}#afc5ea50caaa7a8 .acd8aa5ef2a2b90 , #afc5ea50caaa7a8 .acd8aa5ef2a2b90 a{color: rgba(252, 129, 55, 1);}#afc5ea50caaa7a8 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #afc5ea50caaa7a8 .uk-position-center-left-out {
    left: -30px;
  }
  #afc5ea50caaa7a8 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#adf68acb89ad184 , #adf68acb89ad184 .param-tag {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a22d8a8223a1e08 .ele-wrap {border-color: #000;color: #fff;font-size: 28px;font-weight: 600;background-image: url(/resources/upload/a5b06a9281ad8ef/1710311064503.png);border-radius: 5px;justify-content: center;border-style: solid;}#a22d8a8223a1e08 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(255, 255, 255, 0);color: #f8e71c;}#a9ffea6841aef6f .ele-wrap {border-color: #000;color: #fff;font-size: 28px;font-weight: 600;background-image: url(/resources/upload/a5b06a9281ad8ef/1710311064503.png);border-radius: 5px;justify-content: center;border-style: solid;}#a9ffea6841aef6f .ele-wrap:hover {background-color: #0483cc;background-color: rgba(255, 255, 255, 0);color: #f8e71c;}#a2d85aa5c8a6890 .ele-wrap {border-color: #000;color: #fff;font-size: 28px;font-weight: 600;background-image: url(/resources/upload/a5b06a9281ad8ef/1710311064503.png);border-radius: 5px;justify-content: center;border-style: solid;}#a2d85aa5c8a6890 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(255, 255, 255, 0);color: #f8e71c;}#a25b4ac3aaaddfa > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6643a84f9a6919 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afa21a8e09a737f > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#a561baae1da723a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a754ca5526ab3a6 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#a1fb5a44e0ae2b6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1191a230aa69d2 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#a6218a82e0ab2fa > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aeffba21abab1e6 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a07b7a4f0fa4aa2 .a0419a035aaa3cf {
  overflow: hidden;
}
#a07b7a4f0fa4aa2 .a0419a035aaa3cf , #a07b7a4f0fa4aa2 .a0419a035aaa3cf > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a07b7a4f0fa4aa2 .af2dba5deead5a5 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#a07b7a4f0fa4aa2 .a80b0a3ac0a56ca {
  overflow: hidden;
}
#a07b7a4f0fa4aa2 .a80b0a3ac0a56ca .img-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  transition: all 0.3s ease-in;
}
#a07b7a4f0fa4aa2 .a80b0a3ac0a56ca .img-wrap:hover {
  transform: scale(1.1);
}
#a07b7a4f0fa4aa2 .ad5eea204aa3047 {
  overflow: hidden;
}
#a07b7a4f0fa4aa2 .ad5eea204aa3047 , #a07b7a4f0fa4aa2 .ad5eea204aa3047 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a07b7a4f0fa4aa2 .ad5eea204aa3047:hover , #a07b7a4f0fa4aa2 .ad5eea204aa3047 *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a07b7a4f0fa4aa2 .ac5eba88a3a87a6 a, #a07b7a4f0fa4aa2 .ac5eba88a3a87a6 {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a07b7a4f0fa4aa2 .ac5eba88a3a87a6 a:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a07b7a4f0fa4aa2 .a16f9a8cbcadf23 , #a07b7a4f0fa4aa2 .a16f9a8cbcadf23 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 24px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a07b7a4f0fa4aa2 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a07b7a4f0fa4aa2 .uk-position-center-left-out {
    left: -30px;
  }
  #a07b7a4f0fa4aa2 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a831faecd6a4804 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae030a892eabc76 > .ele-wrap {background-color: rgba(252, 129, 55, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710746887291.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#a1498a3f1da9b0d > .ele-wrap {background-color: rgba(252, 129, 55, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710746887291.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#a61d2a173da69fa > .ele-wrap {background-color: rgba(252, 129, 55, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710746887291.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#a427bacae0adcc6 > .ele-wrap {background-color: rgba(252, 129, 55, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710746887291.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-right-radius: 10px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-left-radius: 10px;}#a8372a1ba9af523 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9b46a6ecfa9044 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8701a52e4ab68c .form-agree {
  display: flex;
  align-items: center;
}
#a8701a52e4ab68c .uk-form .form-submit-btn {
  width: 540px;
}
#a8701a52e4ab68c .uk-form .form-submit-btn {
  height: 60px;
  line-height: 60px;
  padding-top: 0;
  padding-bottom: 0;
}
#a8701a52e4ab68c .submit-wrap {
  text-align: center;
}
#a8701a52e4ab68c .submit-wrap button {
  background-color: #fc8137;
}
#a8701a52e4ab68c .submit-wrap button {
  font-size: 16px;
}
#a8701a52e4ab68c .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#a8701a52e4ab68c form {
  padding-top: nullpx;
  padding-bottom: nullpx;
}
#a8701a52e4ab68c form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a8701a52e4ab68c .form-item {
  margin-top: 20px !important;
  margin-bottom: 15px !important;
}
#a8701a52e4ab68c .form-item .uk-input,
#a8701a52e4ab68c .form-item .uk-select,
#a8701a52e4ab68c .form-item .uk-textarea {
  width: autopx;
  height: 60px;
  line-height: 60px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  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;
}
#a8701a52e4ab68c .form-item .auto-height {
  height: auto;
}
#a8701a52e4ab68c .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
}
#a8701a52e4ab68c .form-item .send-code {
  bottom: 10px;
}
#a8701a52e4ab68c .form-item .uk-textarea {
  height: 120px;
  line-height: 1.5;
}
#a8701a52e4ab68c .uk-form-label,
#a8701a52e4ab68c .form-agree,
#a8701a52e4ab68c .uk-h3,
#a8701a52e4ab68c p {
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  font-family: inherit;
  color: #000000;
}
#a90a7a60bba77dc > .ele-wrap {border-left-width: 4px;border-bottom-width: 1px;border-right-style: none;border-left-style: solid;border-bottom-style: solid;border-top-style: none;border-left-color: rgba(205, 0, 0, 1);border-bottom-color: rgba(205, 0, 0, 1);}#a6585a6a37a1e1f .marquee-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: ;
  overflow: hidden;
  transition: all .3s ease;
}
#a6585a6a37a1e1f .marquee-wrap .marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a6585a6a37a1e1f .marquee-wrap .marquee-item .datetime {
  flex-shrink: 0;
  margin-left: 10px;
}
#a6585a6a37a1e1f .marquee-wrap .marquee-item .title {
  text-align: left;
  flex: 1;
}
#a6585a6a37a1e1f .marquee-wrap .marquee-item svg,
#a6585a6a37a1e1f .marquee-wrap .marquee-item .list-icon {
  width: 14px;
  fill: currentColor;
  display: inline-block;
  margin-right: 6px;
}
#a6585a6a37a1e1f .marquee-wrap:hover {
  background: ;
}
#a6585a6a37a1e1f .marquee-wrap .content {
  position: absolute;
}
#a6585a6a37a1e1f .marquee-wrap.vertical .marquee-item {
  display: flex;
  text-align: left;
  color: #666;
  font-size: 14px;
  padding: 2px 10px;
  line-height: 1.5;
  font-weight: normal;
  font-style: normal;
  font-size: 19px;
  font-family: inherit;
  color: #333333;
}
#a6585a6a37a1e1f .marquee-wrap.vertical .marquee-item:hover {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
}
#a6585a6a37a1e1f .marquee-wrap.horizontal .marquee-item {
  display: inline-flex;
  font-size: 14px;
  color: #666;
  height: 100%;
  width: 570px;
  overflow: hidden;
  line-height: 216px;
  text-align: center;
  transition: all .3s ease;
  font-weight: normal;
  font-style: normal;
  font-size: 19px;
  font-family: inherit;
  color: #333333;
}
#a6585a6a37a1e1f .marquee-wrap.horizontal .marquee-item span {
  line-height: 216px;
}
#a6585a6a37a1e1f .marquee-wrap.horizontal .marquee-item:hover {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
}
#a1405a278fafdc0 > .ele-wrap {border-left-width: 4px;border-bottom-width: 1px;border-right-style: none;border-left-style: solid;border-bottom-style: solid;border-top-style: none;border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);}#a1809a0a32ac402 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0ffea7477a899f > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(230, 230, 230, 1);border-left-color: rgba(230, 230, 230, 1);border-bottom-color: rgba(230, 230, 230, 1);border-top-color: rgba(230, 230, 230, 1);}#a0ffea7477a899f  > .ele-wrap:hover {border-right-width: 1px;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-left-width: 1px;border-bottom-width: 1px;border-top-width: 1px;box-shadow: 0px 1px 8px 0px rgba(252, 129, 55, 1);}#a6af9adbfaa92c0 > .ele-wrap {background-color: rgba(252, 129, 55, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acc05a0e05ae950 {
  overflow: hidden;
  pointer-events: none;
}
#acc05a0e05ae950 > .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;
}
#acc05a0e05ae950 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#acc05a0e05ae950 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#acc05a0e05ae950 > .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;
}
#acc05a0e05ae950 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#acc05a0e05ae950 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#acc05a0e05ae950 > .tab-wrap > div > .tab-nav,
#acc05a0e05ae950 > .tab-nav,
#acc05a0e05ae950 > .tab-tabs > .tab-wrap > div > .tab-nav,
#acc05a0e05ae950 > .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;
}
#acc05a0e05ae950 > .tab-wrap > div > .tab-nav-horizontal,
#acc05a0e05ae950 > .tab-nav-horizontal,
#acc05a0e05ae950 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#acc05a0e05ae950 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#acc05a0e05ae950 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#acc05a0e05ae950 > .tab-nav-horizontal::-webkit-scrollbar,
#acc05a0e05ae950 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#acc05a0e05ae950 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#acc05a0e05ae950 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#acc05a0e05ae950 > .tab-nav-horizontal.tagScroll,
#acc05a0e05ae950 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#acc05a0e05ae950 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#acc05a0e05ae950 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#acc05a0e05ae950 > .tab-nav-horizontal.tagScroll li a,
#acc05a0e05ae950 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#acc05a0e05ae950 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#acc05a0e05ae950 > .tab-wrap > div > .tab-nav a,
#acc05a0e05ae950 > .tab-nav a,
#acc05a0e05ae950 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#acc05a0e05ae950 > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#acc05a0e05ae950 > .tab-wrap > div > .tab-nav li a,
#acc05a0e05ae950 > .tab-nav li a,
#acc05a0e05ae950 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#acc05a0e05ae950 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #f9f9f9;
  border-right-style: none;
  margin-right: 20px;
  margin-left: 20px;
}
#acc05a0e05ae950 > .tab-wrap > div > .tab-nav li a svg,
#acc05a0e05ae950 > .tab-nav li a svg,
#acc05a0e05ae950 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#acc05a0e05ae950 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#acc05a0e05ae950 > .tab-wrap > div > .tab-nav li a .ap_icon,
#acc05a0e05ae950 > .tab-nav li a .ap_icon,
#acc05a0e05ae950 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#acc05a0e05ae950 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#acc05a0e05ae950 > .tab-wrap > div > .tab-nav li a:hover,
#acc05a0e05ae950 > .tab-nav li a:hover,
#acc05a0e05ae950 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#acc05a0e05ae950 > .tab-tabs > .tab-nav li a:hover {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #ffffff;
  border-bottom-style: solid;
}
#acc05a0e05ae950 > .tab-wrap > div > .tab-nav li.uk-active a,
#acc05a0e05ae950 > .tab-nav li.uk-active a,
#acc05a0e05ae950 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#acc05a0e05ae950 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #ffffff;
  border-bottom-style: solid;
}
#acc05a0e05ae950 .layout-left li,
#acc05a0e05ae950 .layout-center li,
#acc05a0e05ae950 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#acc05a0e05ae950 .layout-left li a,
#acc05a0e05ae950 .layout-center li a,
#acc05a0e05ae950 .layout-right li a {
  height: 100%;
}
#acc05a0e05ae950 > .tab-tabs .layout-left {
  text-align: left;
}
#acc05a0e05ae950 > .tab-tabs .layout-center {
  text-align: center;
}
#acc05a0e05ae950 > .tab-tabs .layout-right {
  text-align: right;
}
#acc05a0e05ae950 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#acc05a0e05ae950 .tab-content-wrap {
  background-color: transparent;
}
#acc05a0e05ae950 .tab-contents,
#acc05a0e05ae950 .tab-contents-wrap {
  pointer-events: none;
}
#acc05a0e05ae950 .tab-content,
#acc05a0e05ae950 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#acc05a0e05ae950 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#acc05a0e05ae950 .tab-wrap .tab-contents {
  height: 100%;
}
#acc05a0e05ae950 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#acc05a0e05ae950 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#acc05a0e05ae950 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ae4dea19d4ae39e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(230, 230, 230, 1);border-left-color: rgba(230, 230, 230, 1);border-bottom-color: rgba(230, 230, 230, 1);border-top-color: rgba(230, 230, 230, 1);}#ae4dea19d4ae39e  > .ele-wrap:hover {border-right-width: 1px;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-left-width: 1px;border-bottom-width: 1px;border-top-width: 1px;box-shadow: 0px 1px 8px 0px rgba(252, 129, 55, 1);}#a2abfa29e0ae0f4 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(230, 230, 230, 1);border-left-color: rgba(230, 230, 230, 1);border-bottom-color: rgba(230, 230, 230, 1);border-top-color: rgba(230, 230, 230, 1);}#a2abfa29e0ae0f4  > .ele-wrap:hover {border-right-width: 1px;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-left-width: 1px;border-bottom-width: 1px;border-top-width: 1px;box-shadow: 0px 1px 8px 0px rgba(252, 129, 55, 1);}#a354fade91ad20f > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(230, 230, 230, 1);border-left-color: rgba(230, 230, 230, 1);border-bottom-color: rgba(230, 230, 230, 1);border-top-color: rgba(230, 230, 230, 1);}#a354fade91ad20f  > .ele-wrap:hover {border-right-width: 1px;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-left-width: 1px;border-bottom-width: 1px;border-top-width: 1px;box-shadow: 0px 1px 8px 0px rgba(252, 129, 55, 1);}#a48aea522caa5e0 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a89fba6adaaab74 .a32fbaaf78a29b1 {
  overflow: hidden;
}
#a89fba6adaaab74 .a32fbaaf78a29b1 , #a89fba6adaaab74 .a32fbaaf78a29b1 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#a89fba6adaaab74 .a32fbaaf78a29b1:hover , #a89fba6adaaab74 .a32fbaaf78a29b1 *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a89fba6adaaab74 .ac9a0a3519ac838 {
  overflow: hidden;
}
#a89fba6adaaab74 .a4069ab9fca9fba  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#a89fba6adaaab74 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a89fba6adaaab74 .uk-position-center-left-out {
    left: -30px;
  }
  #a89fba6adaaab74 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a7e63a3816a9727 .ele-wrap {color: #fc8137;font-size: 16px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;border-color: rgba(252, 129, 55, 1);border-width: 1px;}#a7e63a3816a9727 .ele-wrap:hover {background-color: #509c49;background-color: rgba(252, 129, 55, 1);color: #ffffff;border-color: rgba(252, 129, 55, 1);}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af584a87ddaec21 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae6d4a90eea99f6 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235893916.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad218a4051ae69d > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235895659.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acb89a44aaa7324 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235896255.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1f12acba1a7c3f > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235896881.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac3b9aefc3a638f > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad082a337dacbe3 {
  overflow: hidden;
}
#ad082a337dacbe3 .img-wrap {
  transition: all 0.3s ease-in;
}
#ad082a337dacbe3 .img-wrap:hover {
  transform: scale(1.1);
}
#a8b79aa73aadd56 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0455ab67ba91ea > .ele-wrap {background-color: rgba(244, 244, 244, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac7e8aa200a3459 > .ele-wrap {background-color: rgba(244, 244, 244, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afc4ba0dc4ae651 > .ele-wrap {background-color: rgba(244, 244, 244, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a16b6a227daf4d8 > .ele-wrap {background-color: rgba(244, 244, 244, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a3407a237fa31e0 > .ele-wrap {background-color: rgba(244, 244, 244, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a3c46ab106a7467 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a147ba4182acccf > .ele-wrap {background-color: rgba(252, 129, 55, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5540a16c9ac7ca {
  overflow: hidden;
}
#a5540a16c9ac7ca .img-wrap {
  transition: all 0.3s ease-in;
}
#a5540a16c9ac7ca .img-wrap:hover {
  transform: scale(1.1);
}
#af6cda5b2fa4536 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a33e0ab53bad9e1 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6581aa9e7a6f17 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a464fa2482ab0d6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a62a6a7ad9aec9a .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a052ba5103af368 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235893916.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a928ca0e1aa0064 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235895659.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a22c9a6076a784c > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235896255.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5288aae2ca6241 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235896881.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aedf0ad7cfaa835 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aae5eabbdaafb6e > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a581aabfd9a448d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a581aabfd9a448d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a581aabfd9a448d .ap-icon {
  margin-right: 6px;
}
#a581aabfd9a448d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 nullpx;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #d4d4d4;
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-right: 18px;
  margin-left: 18px;
  width: 260px;
  height: 70px;
  background-color: #d4d4d4;
}
#a581aabfd9a448d .menu-list > li.icon-bottom > a,
#a581aabfd9a448d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a581aabfd9a448d .menu-list > li.icon-bottom > a .ap-icon,
#a581aabfd9a448d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a581aabfd9a448d .menu-list > li.icon-bottom > a .ap-icon svg,
#a581aabfd9a448d .menu-list > li.icon-top > a .ap-icon svg,
#a581aabfd9a448d .menu-list > li.icon-bottom > a .ap-icon img,
#a581aabfd9a448d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a581aabfd9a448d .menu-list > li.icon-right > a .ap-icon,
#a581aabfd9a448d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a581aabfd9a448d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a581aabfd9a448d .menu-list > li:hover > a,
#a581aabfd9a448d .menu-list > li.active > a {
  background: #fc8137;
  background-color: #fc8137;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-style: none;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#a581aabfd9a448d .menu-list > li.active > a {
  background-color: #fc8137;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a581aabfd9a448d .menu-list ul,
#a581aabfd9a448d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a581aabfd9a448d .menu-list ul {
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
}
#a581aabfd9a448d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a581aabfd9a448d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a581aabfd9a448d .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;
}
#aefd4a09f8abb76 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a3b6ba276da69ba .a8beda5aaaae7bb > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3b6ba276da69ba .a4567a0309ab63e {
  overflow: hidden;
}
#a3b6ba276da69ba .a4567a0309ab63e .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a3b6ba276da69ba .a4567a0309ab63e .img-wrap:hover {
  transform: scale(1.1);
}
#a3b6ba276da69ba .a809da8626ab5f2 {
  overflow: hidden;
}
#a3b6ba276da69ba .a809da8626ab5f2 , #a3b6ba276da69ba .a809da8626ab5f2 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a3b6ba276da69ba .a809da8626ab5f2:hover , #a3b6ba276da69ba .a809da8626ab5f2 *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a3b6ba276da69ba .a3808a6990ac83d , #a3b6ba276da69ba .a3808a6990ac83d .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a3b6ba276da69ba .a07f7a27eea6316 {
  overflow: hidden;
}
#a3b6ba276da69ba .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a3b6ba276da69ba .uk-position-center-left-out {
    left: -30px;
  }
  #a3b6ba276da69ba .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a04f5a180da7d5e .ele-wrap {color: #fc8137;font-size: 16px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;border-color: rgba(252, 129, 55, 1);border-width: 1px;}#a04f5a180da7d5e .ele-wrap:hover {background-color: #509c49;background-color: rgba(252, 129, 55, 1);color: #ffffff;border-color: rgba(252, 129, 55, 1);}#a9afea258ba60fa [data-item="undefined"] {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a0c3da9fd1aa57f > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aae35a3d84a2013 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0978a2f7ba572b > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#ac70bad77da6a99 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a62fba82a5ae378 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#ab37aa6254add25 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae226a0b14a4679 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#aba8da12bba3df4 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac4e0aadb1a5eea > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#a392aac2b5a4ff3 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#adb3bad788a2418 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#acba1a3af9a46b1 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0f5da7b90a5f25 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8dc8ae538a6c8d > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0f85a0038a7883 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a76a5ae252afe15 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0d5cabfeaad67d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0d90ac12cafe12 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af1b4a3f7aab094 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a598bafc77aacfd > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9121a9e84a9319 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac9ffaac0aa4357 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad09ba80efa756b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7bfda0a3ea9aeb > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9456a264fa2efb > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa2e8ad721a5211 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a687ca949fa3a25 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a397da15b6aa66c > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#adef8a9e8daf491 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4fa7a32f3a8b60 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9171a3f36afaca > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad7b2a3574afe52 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7ab3ac50ca667d > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2062a8a7ca80f0 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5f04a4634ac969 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9cbba7489a253c > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5701aeb2ea0e56 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0d5cacf66a923f > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a459dadfdcaae67 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6274a28d3a66d4 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa583a88a3a7b89 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae54ca25e9a2080 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad818a8214aa355 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a220ba784baa467 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#afe4aa7396ac5bb > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#accc5ab7a1ab5dd > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2e1ba6988a721d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6c77ac6dda6baa > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a44e6a7f9da8c1b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#adfaca3953ac062 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a278aa8928a0eff > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aff1ba2a19ac049 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad7d8a8f08addb8 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a683aa1e7da65a0 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af7e0a84dbab342 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a00fca11bfab133 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a73c6abf3fa072c > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad13ba7587ac79b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#abd18ab6cdaf4e0 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aaeabaae8aa8d42 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab47dab856a206b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4e63a0329a2099 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3a91a34e3ab278 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad8cbab044ae2dd > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2277acffda499e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae2cca699eafac5 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4bc0ad239acadf > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#afd9ca33d3a159f > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a98b7a2e56aa637 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae9b2a0d98a9c5b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9b0fa6480a6559 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6daeae3efa2a20 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0135aebceaf457 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a822aacdd7ac7c7 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8748afddda0be9 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8e7fae222a0a0b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a66caa68dba67f6 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aff2cad461aac4b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3565ad2b4aa4a0 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8635a615ca9901 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aaac2adc6da1fff > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af22aa3e56ad9f6 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aaf7fa9b87ad599 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad8cca4ff5a4ad7 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa662afc52acab1 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac9b8adf63a0402 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac574a9bcea77e8 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae5d7a43b7a2eb7 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5ac3a92e2a006e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a055bafe90ad976 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae41aad42aa2789 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a79b5afee8aa8d2 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2183ab65da3cad > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0c4ba2f71a57e1 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa8bea96c8a894f > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4515a6a78af85c > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aab14a847ea2e04 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4a35ac8caa8fb1 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab6d2a015aaa7c5 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#add47a7991af78a > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa52bae423a19ec {
  overflow: hidden;
  pointer-events: none;
}
#aa52bae423a19ec > .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;
}
#aa52bae423a19ec > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#aa52bae423a19ec > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#aa52bae423a19ec > .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;
}
#aa52bae423a19ec > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#aa52bae423a19ec > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#aa52bae423a19ec > .tab-wrap > div > .tab-nav,
#aa52bae423a19ec > .tab-nav,
#aa52bae423a19ec > .tab-tabs > .tab-wrap > div > .tab-nav,
#aa52bae423a19ec > .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;
}
#aa52bae423a19ec > .tab-wrap > div > .tab-nav-horizontal,
#aa52bae423a19ec > .tab-nav-horizontal,
#aa52bae423a19ec > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#aa52bae423a19ec > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#aa52bae423a19ec > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#aa52bae423a19ec > .tab-nav-horizontal::-webkit-scrollbar,
#aa52bae423a19ec > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#aa52bae423a19ec > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#aa52bae423a19ec > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#aa52bae423a19ec > .tab-nav-horizontal.tagScroll,
#aa52bae423a19ec > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#aa52bae423a19ec > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#aa52bae423a19ec > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#aa52bae423a19ec > .tab-nav-horizontal.tagScroll li a,
#aa52bae423a19ec > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#aa52bae423a19ec > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#aa52bae423a19ec > .tab-wrap > div > .tab-nav a,
#aa52bae423a19ec > .tab-nav a,
#aa52bae423a19ec > .tab-tabs > .tab-wrap > div > .tab-nav a,
#aa52bae423a19ec > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#aa52bae423a19ec > .tab-wrap > div > .tab-nav li a,
#aa52bae423a19ec > .tab-nav li a,
#aa52bae423a19ec > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#aa52bae423a19ec > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 15px;
  margin-left: 15px;
}
#aa52bae423a19ec > .tab-wrap > div > .tab-nav li a svg,
#aa52bae423a19ec > .tab-nav li a svg,
#aa52bae423a19ec > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#aa52bae423a19ec > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#aa52bae423a19ec > .tab-wrap > div > .tab-nav li a .ap_icon,
#aa52bae423a19ec > .tab-nav li a .ap_icon,
#aa52bae423a19ec > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#aa52bae423a19ec > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#aa52bae423a19ec > .tab-wrap > div > .tab-nav li a:hover,
#aa52bae423a19ec > .tab-nav li a:hover,
#aa52bae423a19ec > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#aa52bae423a19ec > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  border-bottom-width: 2px;
  border-bottom-color: #fc8137;
  border-bottom-style: solid;
}
#aa52bae423a19ec > .tab-wrap > div > .tab-nav li.uk-active a,
#aa52bae423a19ec > .tab-nav li.uk-active a,
#aa52bae423a19ec > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#aa52bae423a19ec > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  border-bottom-width: 2px;
  border-bottom-color: #fc8137;
  border-bottom-style: solid;
}
#aa52bae423a19ec .layout-left li,
#aa52bae423a19ec .layout-center li,
#aa52bae423a19ec .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#aa52bae423a19ec .layout-left li a,
#aa52bae423a19ec .layout-center li a,
#aa52bae423a19ec .layout-right li a {
  height: 100%;
}
#aa52bae423a19ec > .tab-tabs .layout-left {
  text-align: left;
}
#aa52bae423a19ec > .tab-tabs .layout-center {
  text-align: center;
}
#aa52bae423a19ec > .tab-tabs .layout-right {
  text-align: right;
}
#aa52bae423a19ec .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#aa52bae423a19ec .tab-content-wrap {
  background-color: transparent;
}
#aa52bae423a19ec .tab-contents,
#aa52bae423a19ec .tab-contents-wrap {
  pointer-events: none;
}
#aa52bae423a19ec .tab-content,
#aa52bae423a19ec .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#aa52bae423a19ec .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#aa52bae423a19ec .tab-wrap .tab-contents {
  height: 100%;
}
#aa52bae423a19ec .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#aa52bae423a19ec .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#aa52bae423a19ec .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#af515a355da14fa .ele-wrap {color: #ffffff;font-size: 16px;font-weight: 500;background-color: rgba(252, 129, 55, 1);border-radius: 25px;justify-content: center;border-style: solid;border-width: 1px;}#af515a355da14fa .ele-wrap:hover {background-color: #509c49;background-color: rgba(252, 129, 55, 1);color: #ffffff;border-color: rgba(252, 129, 55, 1);}#af0b3adfffa6ab0 [data-item="undefined"] {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a1d23a0573a3280 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac0ffa8cb6a8063 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a42dda5e29a4df6 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a77d2acb5fae74e > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#ae6dbad142aa717 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#ac841a5943aa890 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3510a2756adb84 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad8d8a8f70a077c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad70bac14ca0510 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a79fba5799acdca > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7d10a27e6aa528 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab3f2a84e6aa256 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac92da884caf33e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8911af5d5a252a > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af2b4adb96a7587 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a38f6a6f9ba3fe0 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae8c7a3e69a57fc > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aee42aa5b7a790d > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a651caef97a489a > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2568acbc1a5493 [data-item="undefined"] {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(252, 129, 55, 1);}#aa742aa4f0a7e2e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af00aa05f2a19dd > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a32e2ae6cba83d9 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0eedafdfca514c > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa82fab56ca6e6b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad672a2170a9b51 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a045da3c0fa2028 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a160cafcd6ae497 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab3acaeabea8844 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2ac7a9f6da5da6 .ele-wrap {border-color: #000;color: #fff;font-size: 28px;font-weight: 600;background-image: url(/resources/upload/a5b06a9281ad8ef/1710311064503.png);border-radius: 5px;justify-content: center;border-style: solid;}#a2ac7a9f6da5da6 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(255, 255, 255, 0);color: #f8e71c;}#a1056a92b2a52c9 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#afbc2a572fa4683 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae6d9a1538a64e7 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6a3da04efab43e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af59da80a1a6f2c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a06ebaf94da6774 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa97aaaa95a6f14 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a011aa002aaefa9 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2c97a4697ad9f8 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7628aa23fa48bb > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2eadaa127aab1e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5da1a57e3afa23 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#acd6fa7c92aeda0 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2c4ea97e2ab23d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a28d6a4797aa82f > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7de2a2b2da8905 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5248acfb3acdad > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5b25af764a1cec > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#abfb8a18d3aac0b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7b68a13cfa43d8 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad510aea23ab734 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a022ea34e8a2c72 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4ee9ac2a9ad293 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a081ba5a33a36d1 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a02efa17b0aa057 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#abef9a5e6ca15e0 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a08eda3a07aedd8 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab00aa0b5cac02f > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ace79a8ca7ad315 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2dbea567ba7398 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6f33acc47a69cd > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a09c5a11c4af71a > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#adca7abd45a5b8e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a42ecae673a2d41 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8b22a1baaaf2ef > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5a9fa36a6aec6b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0fa3ab5c7aa38a > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a60edaced3a56ba > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a208cafc44a4696 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae036a337aab437 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a430daa84da83e1 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2b42a3063a71e5 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a05f2ae2bfa3a70 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6dbcac4cea64c7 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0eceaaafaac0b7 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a349aa63acae08f > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a08a6a7137a5277 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2da2aaf71ad360 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3c04a00eda444a > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a17e9a7e34a541a > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5093ad147a3bfb > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac178adfeeaf91a > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1025a7ec0a4c55 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aba6faa327a315b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac2f7a0ef4ab1d9 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5b82a6c4aa127f > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af9b5ae326aa784 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae3daaa569a78dd > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5c59a3c4ea81d5 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad5f7a6b9fae468 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#abe2ea4a2cabc2d > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af13fa8498a7bd8 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af5d3aeee2a7836 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0d80a4cdda472e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa46cabd8baed3d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ada3eaa7fea2653 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5f01a0318a9e3c .ele-wrap {color: #ffffff;font-size: 16px;font-weight: 500;background-color: rgba(252, 129, 55, 1);border-radius: 25px;justify-content: center;border-style: solid;border-width: 1px;}#a5f01a0318a9e3c .ele-wrap:hover {background-color: #509c49;background-color: rgba(252, 129, 55, 1);color: #ffffff;border-color: rgba(252, 129, 55, 1);}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a3ec4aca1caefb2 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2d61a56eaa788f > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235893916.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7a84ace6daf68c > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235895659.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#add61a39f9a5723 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235896255.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4041a9107aa5a6 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235896881.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6103a92cca55de > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a20b6a5e0aa9fc5 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a15ecab452a4ad0 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a15ecab452a4ad0 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a15ecab452a4ad0 .ap-icon {
  margin-right: 6px;
}
#a15ecab452a4ad0 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 nullpx;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #d4d4d4;
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-right: 18px;
  margin-left: 18px;
  width: 260px;
  height: 70px;
  background-color: #d4d4d4;
}
#a15ecab452a4ad0 .menu-list > li.icon-bottom > a,
#a15ecab452a4ad0 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a15ecab452a4ad0 .menu-list > li.icon-bottom > a .ap-icon,
#a15ecab452a4ad0 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a15ecab452a4ad0 .menu-list > li.icon-bottom > a .ap-icon svg,
#a15ecab452a4ad0 .menu-list > li.icon-top > a .ap-icon svg,
#a15ecab452a4ad0 .menu-list > li.icon-bottom > a .ap-icon img,
#a15ecab452a4ad0 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a15ecab452a4ad0 .menu-list > li.icon-right > a .ap-icon,
#a15ecab452a4ad0 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a15ecab452a4ad0 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a15ecab452a4ad0 .menu-list > li:hover > a,
#a15ecab452a4ad0 .menu-list > li.active > a {
  background: #fc8137;
  background-color: #fc8137;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-style: none;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#a15ecab452a4ad0 .menu-list > li.active > a {
  background-color: #fc8137;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a15ecab452a4ad0 .menu-list ul,
#a15ecab452a4ad0 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a15ecab452a4ad0 .menu-list ul {
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
}
#a15ecab452a4ad0 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a15ecab452a4ad0 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a15ecab452a4ad0 .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;
}
#a114eadff8a373e > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#afaf4afd46a2412 .a5357abaebabbdb {
  overflow: hidden;
}
#afaf4afd46a2412 .a5357abaebabbdb , #afaf4afd46a2412 .a5357abaebabbdb > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#afaf4afd46a2412 .aa85da7d4ea55b6 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#afaf4afd46a2412 .a5b19ac362a6e02 {
  overflow: hidden;
}
#afaf4afd46a2412 .a5b19ac362a6e02 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#afaf4afd46a2412 .a5b19ac362a6e02 .img-wrap:hover {
  transform: scale(1.1);
}
#afaf4afd46a2412 .ab307adb28ab4ea {
  overflow: hidden;
}
#afaf4afd46a2412 .ab307adb28ab4ea , #afaf4afd46a2412 .ab307adb28ab4ea > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#afaf4afd46a2412 .ab307adb28ab4ea:hover , #afaf4afd46a2412 .ab307adb28ab4ea *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#afaf4afd46a2412 .a5ecdae1b8ab05a , #afaf4afd46a2412 .a5ecdae1b8ab05a .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(252, 129, 55, 1);}#afaf4afd46a2412 .a2b8ca10d0aa1cd {
  overflow: hidden;
}
#afaf4afd46a2412 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #afaf4afd46a2412 .uk-position-center-left-out {
    left: -30px;
  }
  #afaf4afd46a2412 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ae6e0ad057ac6cc .ele-wrap {color: #fc8137;font-size: 16px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;border-color: rgba(252, 129, 55, 1);border-width: 1px;}#ae6e0ad057ac6cc .ele-wrap:hover {background-color: #509c49;background-color: rgba(252, 129, 55, 1);color: #ffffff;border-color: rgba(252, 129, 55, 1);}#a983ca891caef89 [data-item="undefined"] {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a6bc4a0a63a4942 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae3c4ae5b0a036e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a50c9a8e31a4147 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#aee3fa7a40abbdb > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a15b6ab505a0574 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#a87fea05fca2da6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a64c2ab811aa46e > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#af84da5914a15cd > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7d6da35ddabb0e > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#ace7caee0ba5f51 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a77c8ae3b7a6b6d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1fc5a2bffa1ad2 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a34b4a5400a6b06 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7403ab3bba9291 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a11abaaa8ca1f79 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a51c8a2aeaa581f > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a50e3ac207a966c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac9f1a89a2a98d3 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab488aaa11a0cbc > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#adfe2ad432a192f > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9f48a0449ada6c > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6780ad787a8162 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac693a0e4ba9db9 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac08fac495aa450 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#adf17a78b7aaa2c > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#acb68acf4aa5391 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1515ad2e2af656 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1cdba8df0a9b26 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a51dda6734a43fd > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8436a08e2ad70f > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aaa79aaa1ea3781 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a103daf598a4183 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae658ae5e3a46a0 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af4aeaa3ccac2db > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3676af6d2a34e3 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aab08aea25a34f4 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6768a465ca00f3 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0af0ad0eda2207 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa123ae4a2a8946 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a04ecaa7a9a2956 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75a4afde7a4219 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af92aaf920ab9db > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4e0aab4d6aa6a1 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0660aa1e1a5b34 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad71ba9854a37fa > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a02e6aeca0a5583 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6031a7310a7f43 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2414abcb4ad7a0 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa61da2b37afaa6 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad1bfa7ffba5e09 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#abb15ad594a467d > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a53f0a5b87a25c1 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aeeeba8b20a88af > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#adf06ac243ab7c0 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a75a7a2751a74c1 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0705ae917a8f73 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9a8da961ba81b7 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab9b6a0ac4a9e57 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5426a5fe7a6475 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a309ea8bd9a5be1 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a48a1aa3e2a4d0d > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5259a12a2ac0f3 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac601a5038a05b2 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac2dbaa0afa8db2 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6c11a1c4fac3af > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa16fa2510ae3a6 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab41fadd1aa3eaf > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5acea32a6ab91b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa37ba1d33a4484 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7d07a5b57a6910 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a99a5a211aa80b6 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad579a364aacb21 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aaed7ac25fa4b54 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9d82af5bba5aaf > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a66b9ae6a2aaa8e > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a11e7ab0d9ac401 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8d93a4631ae8a5 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a63aeae07daad60 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9e7fa71f2ae18a > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#acffdae0d6ab40e > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae813a19b1a8d28 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2690addcaa2dee > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac404a2c8ca2be8 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5a97ab4b7aaf79 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9166aea70abf7a > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0b84a8d84ad4c3 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a07baaa9a7a805e > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a299bab464a9490 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7d94a8c17a3ac9 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a07b3a8278ab279 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8511a2103a511d > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#addf9aa05ca27d3 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a33efadf47a55c6 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac1c7af71fa4387 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac722a5dc4aa94c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5a6cac7d8ac73a > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae367aecc8ac2d2 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a47c3ab649a14c5 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#addcba189ca5f47 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9b28a6109a797a > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad516a166ea3209 {
  overflow: hidden;
  pointer-events: none;
}
#ad516a166ea3209 > .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;
}
#ad516a166ea3209 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#ad516a166ea3209 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ad516a166ea3209 > .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;
}
#ad516a166ea3209 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#ad516a166ea3209 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ad516a166ea3209 > .tab-wrap > div > .tab-nav,
#ad516a166ea3209 > .tab-nav,
#ad516a166ea3209 > .tab-tabs > .tab-wrap > div > .tab-nav,
#ad516a166ea3209 > .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;
}
#ad516a166ea3209 > .tab-wrap > div > .tab-nav-horizontal,
#ad516a166ea3209 > .tab-nav-horizontal,
#ad516a166ea3209 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#ad516a166ea3209 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#ad516a166ea3209 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ad516a166ea3209 > .tab-nav-horizontal::-webkit-scrollbar,
#ad516a166ea3209 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ad516a166ea3209 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#ad516a166ea3209 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ad516a166ea3209 > .tab-nav-horizontal.tagScroll,
#ad516a166ea3209 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ad516a166ea3209 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#ad516a166ea3209 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ad516a166ea3209 > .tab-nav-horizontal.tagScroll li a,
#ad516a166ea3209 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ad516a166ea3209 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#ad516a166ea3209 > .tab-wrap > div > .tab-nav a,
#ad516a166ea3209 > .tab-nav a,
#ad516a166ea3209 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#ad516a166ea3209 > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#ad516a166ea3209 > .tab-wrap > div > .tab-nav li a,
#ad516a166ea3209 > .tab-nav li a,
#ad516a166ea3209 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#ad516a166ea3209 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 15px;
  margin-left: 15px;
}
#ad516a166ea3209 > .tab-wrap > div > .tab-nav li a svg,
#ad516a166ea3209 > .tab-nav li a svg,
#ad516a166ea3209 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#ad516a166ea3209 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#ad516a166ea3209 > .tab-wrap > div > .tab-nav li a .ap_icon,
#ad516a166ea3209 > .tab-nav li a .ap_icon,
#ad516a166ea3209 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#ad516a166ea3209 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#ad516a166ea3209 > .tab-wrap > div > .tab-nav li a:hover,
#ad516a166ea3209 > .tab-nav li a:hover,
#ad516a166ea3209 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#ad516a166ea3209 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  border-bottom-width: 2px;
  border-bottom-color: #fc8137;
  border-bottom-style: solid;
}
#ad516a166ea3209 > .tab-wrap > div > .tab-nav li.uk-active a,
#ad516a166ea3209 > .tab-nav li.uk-active a,
#ad516a166ea3209 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#ad516a166ea3209 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  border-bottom-width: 2px;
  border-bottom-color: #fc8137;
  border-bottom-style: solid;
}
#ad516a166ea3209 .layout-left li,
#ad516a166ea3209 .layout-center li,
#ad516a166ea3209 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#ad516a166ea3209 .layout-left li a,
#ad516a166ea3209 .layout-center li a,
#ad516a166ea3209 .layout-right li a {
  height: 100%;
}
#ad516a166ea3209 > .tab-tabs .layout-left {
  text-align: left;
}
#ad516a166ea3209 > .tab-tabs .layout-center {
  text-align: center;
}
#ad516a166ea3209 > .tab-tabs .layout-right {
  text-align: right;
}
#ad516a166ea3209 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#ad516a166ea3209 .tab-content-wrap {
  background-color: transparent;
}
#ad516a166ea3209 .tab-contents,
#ad516a166ea3209 .tab-contents-wrap {
  pointer-events: none;
}
#ad516a166ea3209 .tab-content,
#ad516a166ea3209 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#ad516a166ea3209 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#ad516a166ea3209 .tab-wrap .tab-contents {
  height: 100%;
}
#ad516a166ea3209 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ad516a166ea3209 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#ad516a166ea3209 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ab757a447cad3a6 .ele-wrap {color: #ffffff;font-size: 16px;font-weight: 500;background-color: rgba(252, 129, 55, 1);border-radius: 25px;justify-content: center;border-style: solid;border-width: 1px;}#ab757a447cad3a6 .ele-wrap:hover {background-color: #509c49;background-color: rgba(252, 129, 55, 1);color: #ffffff;border-color: rgba(252, 129, 55, 1);}#a9c3faa686a2e0d [data-item="undefined"] {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(252, 129, 55, 1);}#aa1eeaf7ebae69a > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a871baa033a1fd6 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a16eda07eca2920 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a1b1faf64dafed7 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a2b93a7383a78e3 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#aa535a1d46af68e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a220ea2b56a8aa4 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae545ae02ca66ad > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#abce1ad560a6d23 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9a15af32ba8b81 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1a1da0eb5a7f53 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0b0aa3f85aafb5 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5466a36cdaea3b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2074a13fca3bac > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aba60a9caaab151 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7470a54d1a0a43 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac3e2a47f3aaa45 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1ebeaa1c8a94a8 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a78b6a0288ae856 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aee29ace87a0666 [data-item="undefined"] {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(252, 129, 55, 1);}#ae5e8adef5a01a8 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa3dcad3e8a1406 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7419a5af9aa165 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae292ab4d0a49e7 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac913ae95fa4cb7 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5caea56e5a6bdb > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1660a4f7ba32cb > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3d7aaf2bda82fd > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab117aebd8a3731 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3eadac31cae9d5 .ele-wrap {border-color: #000;color: #fff;font-size: 28px;font-weight: 600;background-image: url(/resources/upload/a5b06a9281ad8ef/1710311064503.png);border-radius: 5px;justify-content: center;border-style: solid;}#a3eadac31cae9d5 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(255, 255, 255, 0);color: #f8e71c;}#ae8b0a4679a9c32 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a33c7a5d71a88a7 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0433a393fa82d4 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af961a5a45a6ec5 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a81a9ae3bdaba97 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad93cadd23a709a > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad9dda91c6afd78 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8e91a86ebad0b0 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa2deae4f6a1338 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a48e2adcada1bbd > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a02afa6264a22e6 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab7a8ac8eea50d2 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#abcb7afb02a083e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#afdd5a8695a93e0 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a77f9a8da9a3a46 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6d0da369ca6838 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a429eace6cab79d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9fa9a4bbaa20ff > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a901da9c45a6d7a > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4730aaf13a2079 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0e8ea6e63ab35d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2f2ca6b03ae80e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad07ba0a2ca7ae8 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7e0da9f0eab97b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aabb7ab2e3a4784 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1827a04bfaecfc > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#afc9da0de3a52dc > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#acf05a2e0ba475e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa0f2a92bcab303 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a98d9a6bd2a0bb4 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4385ae70ba845d > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a15dba6d5cab6d3 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac3c1ad203af94a > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#afdffaa586aabf0 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a04d5aa32ba6142 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa79aa214fa0e44 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a089ea2e4aaef79 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#affffa5dc6a3b6d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#affc4a4c43a96bc > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#acbf8a38bba2591 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aaa6ba130badb6d > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab963a5c19a779d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3e71a8bfda2d74 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1f5ba01e7a6bbc > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a80bba1801ae38f > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab2afa929aa769c > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa7fba35f1ab4cb > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac6a1af64da2aea > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0bd3ac4aaa2e70 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad343a846fac63c > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae2e7a4a93ab57f > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a33c0a4369a170b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a06f3ae2faa2064 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9075ae793a4960 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa3baac199ab3ff > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a30bca0145a60c3 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5993af95cab164 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7acfa99f6a47a9 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af59ea3d7baac54 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0886a05a0a02e0 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3f42a6a2aae3d8 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0084a0ab2a24dd > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8450af021a1053 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab881a6810a5b56 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9792ab82eae7ee > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa39aa062caf301 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a229ea0a68ab8ee .ele-wrap {color: #ffffff;font-size: 16px;font-weight: 500;background-color: rgba(252, 129, 55, 1);border-radius: 25px;justify-content: center;border-style: solid;border-width: 1px;}#a229ea0a68ab8ee .ele-wrap:hover {background-color: #509c49;background-color: rgba(252, 129, 55, 1);color: #ffffff;border-color: rgba(252, 129, 55, 1);}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a6ecca87c7a9262 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2055aa7a1a41ff > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235893916.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7cd4a8ecaa3406 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235895659.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a38f6a1e33ad80f > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235896255.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a513ba5018ae2b8 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235896881.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2e82a0930acd0b > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af2b6ac799af1fb > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac63aaec18a5797 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ac63aaec18a5797 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ac63aaec18a5797 .ap-icon {
  margin-right: 6px;
}
#ac63aaec18a5797 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 nullpx;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #d4d4d4;
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-right: 18px;
  margin-left: 18px;
  width: 260px;
  height: 70px;
  background-color: #d4d4d4;
}
#ac63aaec18a5797 .menu-list > li.icon-bottom > a,
#ac63aaec18a5797 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ac63aaec18a5797 .menu-list > li.icon-bottom > a .ap-icon,
#ac63aaec18a5797 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ac63aaec18a5797 .menu-list > li.icon-bottom > a .ap-icon svg,
#ac63aaec18a5797 .menu-list > li.icon-top > a .ap-icon svg,
#ac63aaec18a5797 .menu-list > li.icon-bottom > a .ap-icon img,
#ac63aaec18a5797 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ac63aaec18a5797 .menu-list > li.icon-right > a .ap-icon,
#ac63aaec18a5797 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ac63aaec18a5797 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ac63aaec18a5797 .menu-list > li:hover > a,
#ac63aaec18a5797 .menu-list > li.active > a {
  background: #fc8137;
  background-color: #fc8137;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-style: none;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#ac63aaec18a5797 .menu-list > li.active > a {
  background-color: #fc8137;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#ac63aaec18a5797 .menu-list ul,
#ac63aaec18a5797 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ac63aaec18a5797 .menu-list ul {
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
}
#ac63aaec18a5797 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ac63aaec18a5797 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ac63aaec18a5797 .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;
}
#a94fba1d5da53cc > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a517da7062a931f .a637cad3adad50b {
  overflow: hidden;
}
#a517da7062a931f .a637cad3adad50b , #a517da7062a931f .a637cad3adad50b > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#a517da7062a931f .abf8faae9ca7297 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a517da7062a931f .a973faededafce0 {
  overflow: hidden;
}
#a517da7062a931f .a973faededafce0 .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#a517da7062a931f .a973faededafce0 .img-wrap:hover {
  transform: scale(1.1);
}
#a517da7062a931f .aaef1ad6c3a183b {
  overflow: hidden;
}
#a517da7062a931f .aaef1ad6c3a183b , #a517da7062a931f .aaef1ad6c3a183b > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#a517da7062a931f .aaef1ad6c3a183b:hover , #a517da7062a931f .aaef1ad6c3a183b *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#a517da7062a931f .ac2b4a07bdac994 , #a517da7062a931f .ac2b4a07bdac994 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a517da7062a931f .a6e21ae1f2a228f {
  overflow: hidden;
}
#a517da7062a931f .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a517da7062a931f .uk-position-center-left-out {
    left: -30px;
  }
  #a517da7062a931f .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ae580a964ba94b4 .ele-wrap {color: #fc8137;font-size: 16px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;border-color: rgba(252, 129, 55, 1);border-width: 1px;}#ae580a964ba94b4 .ele-wrap:hover {background-color: #509c49;background-color: rgba(252, 129, 55, 1);color: #ffffff;border-color: rgba(252, 129, 55, 1);}#ae557a6fb6a99ae [data-item="undefined"] {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a5aafa6ee9a4f3d > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1df9ad1cdaab20 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad1c8a35e4a62ef > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#abc0aace9aac175 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4c4da3a1aa7795 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#a7080ae7fda5ecd > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afec1a6147a5d57 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#a93d5a05faa175c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5968aa73eaecb9 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#a0c12aca7aae08a > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#ad89dadec1a0f78 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9c9ea381babc89 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a63ebafc89a3088 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7ccaa73baa4da3 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1da8a26a9a8646 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6580a6b52a3873 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6685a5ca1adc2d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1491af30ca1402 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aabfea7a87a5bd4 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a04a5a7589a7d14 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8232a0329af878 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab553a34dcae794 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aaa7eaefd0a2d4d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a097daad4aafd08 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad521a5e20a4935 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a81f0a0231a8a27 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8fe6aa4cfa5684 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#adbaaad7e5a5dfc > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#abfafabf15a832f > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac430a8a89a8f6e > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7e07a0425a9d3b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a778aa80b4a5f53 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac7e5acba1abbd2 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a50fba2cd4ac150 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8821a300ba9568 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a424eaf727a59f9 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac9bda96eda9ee6 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a560aa1791a890c > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a197aafa62a8138 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a81d2afe6da2ee0 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5737a4532af392 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#abc2ba73dca2c4f > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#adb2da50a6acbc2 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a89abae06aa06a6 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3cc4aa63fa272c > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a61afa6639a592c > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7bb1aa6a5a8a5d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2c85a76ffa073c > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6307af38fa4815 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aca3ca8109a78c0 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac973a2d3aa9b77 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7d5fa9967a761e > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9704a8571a5919 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9f36add28ae1e6 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad047a2ad4a4f21 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8c9dabd1ba6dde > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a02bfadb62a56d5 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a254aaa6f1a2829 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5f7aade08a2f8b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab5b5a0015aea79 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab786a759fa495b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a496ba7b7dabd61 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa118a0aadaf2f4 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0beaad8f5a46f1 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1eeba5d83aeb66 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7b7da91bfa9bac > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6e0baf193aec97 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a658ea4b2caca59 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5b7dad256a354a > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6f7ea7955a63bb > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a02c9a18e7a3b90 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2e83ae86dac3f9 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#abf53ad929a8437 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a03c3a27aeaaebe > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aae1fa7964a7055 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2b0fab3daaa4fa > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6500a3465ad8c5 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7086a8bc4acf24 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9f60ae742a3b52 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a802ea2c77aaa08 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3d86ad437ad662 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a92adaa8a5a215a > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4a67abd8ea4543 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5348a2883a9890 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a45fdaa646a7a23 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aebe8a21d3a1a8b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9a3eaa542a7cb3 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac112a451daf90a > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7a0babce4af358 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0b29ab929ae570 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a66cca7b5aa2833 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0bd0a3a36a3061 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af091af3bfa5cc6 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2b50a3478aa926 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af3faaceefaa688 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af18bad08ca51ed > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#addb5a440aac6a0 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8a67a71d2a09f0 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2115ac89da3c3e > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5cb6ac846a43ba > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1408af785aeb7f {
  overflow: hidden;
  pointer-events: none;
}
#a1408af785aeb7f > .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;
}
#a1408af785aeb7f > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a1408af785aeb7f > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a1408af785aeb7f > .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;
}
#a1408af785aeb7f > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a1408af785aeb7f > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a1408af785aeb7f > .tab-wrap > div > .tab-nav,
#a1408af785aeb7f > .tab-nav,
#a1408af785aeb7f > .tab-tabs > .tab-wrap > div > .tab-nav,
#a1408af785aeb7f > .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;
}
#a1408af785aeb7f > .tab-wrap > div > .tab-nav-horizontal,
#a1408af785aeb7f > .tab-nav-horizontal,
#a1408af785aeb7f > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a1408af785aeb7f > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a1408af785aeb7f > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a1408af785aeb7f > .tab-nav-horizontal::-webkit-scrollbar,
#a1408af785aeb7f > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a1408af785aeb7f > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a1408af785aeb7f > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a1408af785aeb7f > .tab-nav-horizontal.tagScroll,
#a1408af785aeb7f > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a1408af785aeb7f > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a1408af785aeb7f > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a1408af785aeb7f > .tab-nav-horizontal.tagScroll li a,
#a1408af785aeb7f > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a1408af785aeb7f > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a1408af785aeb7f > .tab-wrap > div > .tab-nav a,
#a1408af785aeb7f > .tab-nav a,
#a1408af785aeb7f > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a1408af785aeb7f > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#a1408af785aeb7f > .tab-wrap > div > .tab-nav li a,
#a1408af785aeb7f > .tab-nav li a,
#a1408af785aeb7f > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a1408af785aeb7f > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 15px;
  margin-left: 15px;
}
#a1408af785aeb7f > .tab-wrap > div > .tab-nav li a svg,
#a1408af785aeb7f > .tab-nav li a svg,
#a1408af785aeb7f > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a1408af785aeb7f > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a1408af785aeb7f > .tab-wrap > div > .tab-nav li a .ap_icon,
#a1408af785aeb7f > .tab-nav li a .ap_icon,
#a1408af785aeb7f > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a1408af785aeb7f > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a1408af785aeb7f > .tab-wrap > div > .tab-nav li a:hover,
#a1408af785aeb7f > .tab-nav li a:hover,
#a1408af785aeb7f > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a1408af785aeb7f > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  border-bottom-width: 2px;
  border-bottom-color: #fc8137;
  border-bottom-style: solid;
}
#a1408af785aeb7f > .tab-wrap > div > .tab-nav li.uk-active a,
#a1408af785aeb7f > .tab-nav li.uk-active a,
#a1408af785aeb7f > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a1408af785aeb7f > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  border-bottom-width: 2px;
  border-bottom-color: #fc8137;
  border-bottom-style: solid;
}
#a1408af785aeb7f .layout-left li,
#a1408af785aeb7f .layout-center li,
#a1408af785aeb7f .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a1408af785aeb7f .layout-left li a,
#a1408af785aeb7f .layout-center li a,
#a1408af785aeb7f .layout-right li a {
  height: 100%;
}
#a1408af785aeb7f > .tab-tabs .layout-left {
  text-align: left;
}
#a1408af785aeb7f > .tab-tabs .layout-center {
  text-align: center;
}
#a1408af785aeb7f > .tab-tabs .layout-right {
  text-align: right;
}
#a1408af785aeb7f .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a1408af785aeb7f .tab-content-wrap {
  background-color: transparent;
}
#a1408af785aeb7f .tab-contents,
#a1408af785aeb7f .tab-contents-wrap {
  pointer-events: none;
}
#a1408af785aeb7f .tab-content,
#a1408af785aeb7f .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a1408af785aeb7f .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a1408af785aeb7f .tab-wrap .tab-contents {
  height: 100%;
}
#a1408af785aeb7f .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a1408af785aeb7f .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a1408af785aeb7f .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ae9f3aa14da50d9 .ele-wrap {color: #ffffff;font-size: 16px;font-weight: 500;background-color: rgba(252, 129, 55, 1);border-radius: 25px;justify-content: center;border-style: solid;border-width: 1px;}#ae9f3aa14da50d9 .ele-wrap:hover {background-color: #509c49;background-color: rgba(252, 129, 55, 1);color: #ffffff;border-color: rgba(252, 129, 55, 1);}#ad29aa25e8abcb4 [data-item="undefined"] {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a9e46ac4b0af7b3 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1069a294ba4fd8 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a96c4ad638a90e6 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#ae05ca516ea0cc1 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#aa2fba2caca94f8 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a8431a1ed1a8bb6 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aff23a36eea23cd > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7106ab8ffab478 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad887a2d9cad151 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a241da6143a8ccd > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad878a88d6ab670 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0782ac985ac759 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4bfbadcdfaea00 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#afd7cafdf8a7277 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a24fea4e4da7680 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a77cbad97ea022e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a95f0a16e4a42da > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1794a0846a6532 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6fc0a6577a58c7 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a78c2abf75af6d6 [data-item="undefined"] {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(252, 129, 55, 1);}#aa418a7d92ad152 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#afa0aa7bd0a823f > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac85faefcda4f81 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aec37a87a8a6f57 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2e6dab3c9a7f1d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af330adb18ad7bd > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0e97a3861a8535 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a752baf6f3a3820 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a96f3a45eda2eb3 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af1bdaf85fa6a1c .ele-wrap {border-color: #000;color: #fff;font-size: 28px;font-weight: 600;background-image: url(/resources/upload/a5b06a9281ad8ef/1710311064503.png);border-radius: 5px;justify-content: center;border-style: solid;}#af1bdaf85fa6a1c .ele-wrap:hover {background-color: #0483cc;background-color: rgba(255, 255, 255, 0);color: #f8e71c;}#a1dfcae064a7945 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4f9ca7a63af883 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a47dfa4005a8fa6 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a26faaad49a6ae2 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4830a34e5abd54 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a73e0a9987a8a78 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6bf2a92bcad93e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1e37af3d5a263d > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a31b9a0f08a5e55 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ada9daa9c6a1ec6 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4fb2a3905a14d6 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af188ae922af259 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#acd88a5dd7a9293 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa5b4a7d36a1cb4 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af258a7e70ae7a0 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa475a4dd0a705d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a03ffae17bac3c2 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1d02a2c27a77f7 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a708fa2661a7d29 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a376da2a27a7564 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab5b8a28a6a4891 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4097a719fa0427 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7191a98b4a25ff > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7ba9ab2d2a90c0 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab2a1af9ddac879 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6245af552a28c2 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1d7ba857ea159f > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad12ca7e1ea529b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1c7ca8f18a2bb9 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6206abec3a8de1 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0552a3548ac31b > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af632a229fa0f6c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4f81ab71cacd3d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a895ea3138a422b > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a46e8a15d3a7a4c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3164a59f0a18ae > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab841a8232adc7b > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af911a401ba59bf > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a427ba31f4a641e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0c4eaa905a6e0a > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8e9da53baa47e0 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a68d0a8916a203e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6818a082ba4ed2 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af138ad858aed10 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a123aafc8aa4725 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1f08ae873a9207 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5bcea3fedacdcb > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a55e1a7b3cacc97 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad263a1c14a7d78 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a98bba260fa8feb > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#abd7fa8d21af3a6 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6102a858daf1ab > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3a37a0066a89a5 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae80ca28d2a599d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#acc45acbb0a605b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3c7da8f3fad8af > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a395da9409a2e8e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a82b5a0cf7ac703 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4cfba2bfba6f39 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a00a7af7a9a9a07 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aeea6a7c04a8897 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a29eeab25aaca6b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad535a9012af465 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6529ac550a41d6 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a161aa1651a15d5 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac579a744faa9a0 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7ca2a2f3da74e0 .ele-wrap {color: #ffffff;font-size: 16px;font-weight: 500;background-color: rgba(252, 129, 55, 1);border-radius: 25px;justify-content: center;border-style: solid;border-width: 1px;}#a7ca2a2f3da74e0 .ele-wrap:hover {background-color: #509c49;background-color: rgba(252, 129, 55, 1);color: #ffffff;border-color: rgba(252, 129, 55, 1);}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a6b5dab1e3a6884 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aaa5ba3174ac27d > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235893916.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6303a4bf9aaad6 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235895659.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5adea9779a7986 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235896255.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2ac9a81d3a03f9 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235896881.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9cf7a42fcab384 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a087faf51fad36b > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac9cea4ef7a4d2c .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ac9cea4ef7a4d2c .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ac9cea4ef7a4d2c .ap-icon {
  margin-right: 6px;
}
#ac9cea4ef7a4d2c .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 nullpx;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #d4d4d4;
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  font-family: inherit;
  color: #333333;
  line-height: 26px;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-right: 18px;
  margin-left: 18px;
  width: 260px;
  height: 70px;
  background-color: #d4d4d4;
}
#ac9cea4ef7a4d2c .menu-list > li.icon-bottom > a,
#ac9cea4ef7a4d2c .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ac9cea4ef7a4d2c .menu-list > li.icon-bottom > a .ap-icon,
#ac9cea4ef7a4d2c .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ac9cea4ef7a4d2c .menu-list > li.icon-bottom > a .ap-icon svg,
#ac9cea4ef7a4d2c .menu-list > li.icon-top > a .ap-icon svg,
#ac9cea4ef7a4d2c .menu-list > li.icon-bottom > a .ap-icon img,
#ac9cea4ef7a4d2c .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ac9cea4ef7a4d2c .menu-list > li.icon-right > a .ap-icon,
#ac9cea4ef7a4d2c .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ac9cea4ef7a4d2c .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ac9cea4ef7a4d2c .menu-list > li:hover > a,
#ac9cea4ef7a4d2c .menu-list > li.active > a {
  background: #fc8137;
  background-color: #fc8137;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-style: none;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#ac9cea4ef7a4d2c .menu-list > li.active > a {
  background-color: #fc8137;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#ac9cea4ef7a4d2c .menu-list ul,
#ac9cea4ef7a4d2c .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ac9cea4ef7a4d2c .menu-list ul {
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
}
#ac9cea4ef7a4d2c .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ac9cea4ef7a4d2c .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ac9cea4ef7a4d2c .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;
}
#acf03a3c0aa13d5 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#aedcfa354bab814 .a19afac478a694e {
  overflow: hidden;
}
#aedcfa354bab814 .a19afac478a694e , #aedcfa354bab814 .a19afac478a694e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;}#aedcfa354bab814 .a8a51a3f94aedcf > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;border-top-left-radius: 0px;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aedcfa354bab814 .a2228af7dba755c {
  overflow: hidden;
}
#aedcfa354bab814 .a2228af7dba755c .img-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s ease-in;
}
#aedcfa354bab814 .a2228af7dba755c .img-wrap:hover {
  transform: scale(1.1);
}
#aedcfa354bab814 .ad9a5a2003a322f {
  overflow: hidden;
}
#aedcfa354bab814 .ad9a5a2003a322f , #aedcfa354bab814 .ad9a5a2003a322f > * {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(0, 0, 0, 1);}#aedcfa354bab814 .ad9a5a2003a322f:hover , #aedcfa354bab814 .ad9a5a2003a322f *:hover {
        font-weight: bold;
        font-style: normal;
    font-family: inherit;color: rgba(252, 129, 55, 1);}#aedcfa354bab814 .a4c7ca5336ab406 , #aedcfa354bab814 .a4c7ca5336ab406 .param-tag {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(252, 129, 55, 1);}#aedcfa354bab814 .a4279ac8c3a203f {
  overflow: hidden;
}
#aedcfa354bab814 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aedcfa354bab814 .uk-position-center-left-out {
    left: -30px;
  }
  #aedcfa354bab814 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a11dca4828ad57d .ele-wrap {color: #fc8137;font-size: 16px;font-weight: 500;background-color: rgba(255, 255, 255, 1);border-radius: 25px;justify-content: center;border-style: solid;border-color: rgba(252, 129, 55, 1);border-width: 1px;}#a11dca4828ad57d .ele-wrap:hover {background-color: #509c49;background-color: rgba(252, 129, 55, 1);color: #ffffff;border-color: rgba(252, 129, 55, 1);}#a188bae66fa2ff3 [data-item="undefined"] {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(252, 129, 55, 1);}#ab216ada15a4e80 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a230cab088a1521 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6cc9a341fa3012 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#a2a08a0081aca5b > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5099a04fdaf3c6 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#aab8fa8950a924c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a43b4a487da58ab > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#a67fda466ba97f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acb46a9989a32d0 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);}#a5644a42d8a4d76 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#af454a4cbaa5cc8 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#acd6eae9abaf09f > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4988adb8aa8676 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a05b6a45a4ab80c > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2589a3f97a3dfe > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aba2da56cea96dd > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5e0aaf364ab0db > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9337a72f0ae9b9 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab86da8d74aa61f > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6fb1a136ba2ba0 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9ec8ad6e2aab7c > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab909af8aaa366f > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad4c4a09c8a8ace > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a46f7a7172a2c34 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad2b8ab9f9af325 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6605acb9fae829 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0a60aad74ac8c5 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad580a49aca2e57 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a48a6a0936af3f7 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae18fa2c12ac030 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac81dafedda5d97 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a20a2a2257aa47e > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#afea2a4635aab55 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aec25a597fab020 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#acf1fa8776a9db2 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4c3eab200ad239 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2f73a8cf9a5d09 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac3d4a4bb5ac7a9 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2a8bad42ca5778 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a88a6a660ba44d5 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1a4ea099fac695 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7307a29ada12f5 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4e78a1eeba00af > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2afeaf055af64b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ade04adf87a068a > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab16eada47a45ca > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae39ca125ca7f4b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0ccaa0694ad150 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#afc6aaad7ba8522 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab0beab0c8a0f71 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a364ba76e7a74b9 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5542a815baf71b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad684a9e61af29e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1b01a854ca5595 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aaff7ac357a8dc0 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aab98a8ba9a70ab > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a21d2a0055a0aea > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a645da1ccfada64 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a01a2af38ea0573 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3834a0724a3718 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4b73aab50a3171 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5a6ca9e3aaabe1 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2ad1ae19da9857 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a018ea671eaea47 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#abd54a3c3fa7e9c > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5639a1d56a029f > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6a90ace44a3255 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8cefa8d41aab67 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac956a6be6ab9b9 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2ac2abae8ab5e6 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8b87a13efa8ae9 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a420da7af9a38e8 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af520a9ee0a1f18 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5c08a7ef5a8cd3 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a90a2ae7a8a64c0 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8656a5b9ba40bc > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae73fa41f6a1b62 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af515a4da5a8316 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a380dacc7fad5c6 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a20ada4f46a4f67 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a914da62a8a506b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7571a92cea6348 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2240a1401a3870 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1819a0419a8ab4 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af39fa1025af0f1 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1d84aa8e4a948f > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#afb8fa4fcba2266 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa697a282ca57a8 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a742da3034a4431 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a45faa949eae780 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af29ca05adace61 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a68c0a97e0ab07f > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9a14a0ffda7d70 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7212a6d1ca4ba1 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4a9ca2d4bae507 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a890ba1dbca0a4f > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a50e0a1ea1a5583 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#adafaa7d58a45a1 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#abf9aabf3da264d > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a49b4a9286a5992 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac2b5ad735a6272 {
  overflow: hidden;
  pointer-events: none;
}
#ac2b5ad735a6272 > .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;
}
#ac2b5ad735a6272 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#ac2b5ad735a6272 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ac2b5ad735a6272 > .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;
}
#ac2b5ad735a6272 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#ac2b5ad735a6272 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ac2b5ad735a6272 > .tab-wrap > div > .tab-nav,
#ac2b5ad735a6272 > .tab-nav,
#ac2b5ad735a6272 > .tab-tabs > .tab-wrap > div > .tab-nav,
#ac2b5ad735a6272 > .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;
}
#ac2b5ad735a6272 > .tab-wrap > div > .tab-nav-horizontal,
#ac2b5ad735a6272 > .tab-nav-horizontal,
#ac2b5ad735a6272 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#ac2b5ad735a6272 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#ac2b5ad735a6272 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ac2b5ad735a6272 > .tab-nav-horizontal::-webkit-scrollbar,
#ac2b5ad735a6272 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ac2b5ad735a6272 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#ac2b5ad735a6272 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ac2b5ad735a6272 > .tab-nav-horizontal.tagScroll,
#ac2b5ad735a6272 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ac2b5ad735a6272 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#ac2b5ad735a6272 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ac2b5ad735a6272 > .tab-nav-horizontal.tagScroll li a,
#ac2b5ad735a6272 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ac2b5ad735a6272 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#ac2b5ad735a6272 > .tab-wrap > div > .tab-nav a,
#ac2b5ad735a6272 > .tab-nav a,
#ac2b5ad735a6272 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#ac2b5ad735a6272 > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#ac2b5ad735a6272 > .tab-wrap > div > .tab-nav li a,
#ac2b5ad735a6272 > .tab-nav li a,
#ac2b5ad735a6272 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#ac2b5ad735a6272 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 15px;
  margin-left: 15px;
}
#ac2b5ad735a6272 > .tab-wrap > div > .tab-nav li a svg,
#ac2b5ad735a6272 > .tab-nav li a svg,
#ac2b5ad735a6272 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#ac2b5ad735a6272 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#ac2b5ad735a6272 > .tab-wrap > div > .tab-nav li a .ap_icon,
#ac2b5ad735a6272 > .tab-nav li a .ap_icon,
#ac2b5ad735a6272 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#ac2b5ad735a6272 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#ac2b5ad735a6272 > .tab-wrap > div > .tab-nav li a:hover,
#ac2b5ad735a6272 > .tab-nav li a:hover,
#ac2b5ad735a6272 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#ac2b5ad735a6272 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  border-bottom-width: 2px;
  border-bottom-color: #fc8137;
  border-bottom-style: solid;
}
#ac2b5ad735a6272 > .tab-wrap > div > .tab-nav li.uk-active a,
#ac2b5ad735a6272 > .tab-nav li.uk-active a,
#ac2b5ad735a6272 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#ac2b5ad735a6272 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  border-bottom-width: 2px;
  border-bottom-color: #fc8137;
  border-bottom-style: solid;
}
#ac2b5ad735a6272 .layout-left li,
#ac2b5ad735a6272 .layout-center li,
#ac2b5ad735a6272 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#ac2b5ad735a6272 .layout-left li a,
#ac2b5ad735a6272 .layout-center li a,
#ac2b5ad735a6272 .layout-right li a {
  height: 100%;
}
#ac2b5ad735a6272 > .tab-tabs .layout-left {
  text-align: left;
}
#ac2b5ad735a6272 > .tab-tabs .layout-center {
  text-align: center;
}
#ac2b5ad735a6272 > .tab-tabs .layout-right {
  text-align: right;
}
#ac2b5ad735a6272 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#ac2b5ad735a6272 .tab-content-wrap {
  background-color: transparent;
}
#ac2b5ad735a6272 .tab-contents,
#ac2b5ad735a6272 .tab-contents-wrap {
  pointer-events: none;
}
#ac2b5ad735a6272 .tab-content,
#ac2b5ad735a6272 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#ac2b5ad735a6272 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#ac2b5ad735a6272 .tab-wrap .tab-contents {
  height: 100%;
}
#ac2b5ad735a6272 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ac2b5ad735a6272 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#ac2b5ad735a6272 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a25aba23baad488 .ele-wrap {color: #ffffff;font-size: 16px;font-weight: 500;background-color: rgba(252, 129, 55, 1);border-radius: 25px;justify-content: center;border-style: solid;border-width: 1px;}#a25aba23baad488 .ele-wrap:hover {background-color: #509c49;background-color: rgba(252, 129, 55, 1);color: #ffffff;border-color: rgba(252, 129, 55, 1);}#a0344a7ae8a951c [data-item="undefined"] {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a7bd9a0298abfa1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab70ca87adacc4d > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a7a02aa150aef5c > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#abd78ae93da2e9e > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#ae6a6a710da2c06 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(204, 204, 204, 1);}#a12caa405aae9f5 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4d53af6e4a78b3 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6b71aaa73ac0ea > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4f3ba0ee0a3110 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a43f5ac5acac170 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4df9a924ba07ac > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6d60a4459a1004 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1957a9d14adf35 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a18d6ab773a6325 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad675acdb1a1431 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a8e06a3099afef2 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#abc9aa08b9a2bfd > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a45f7a306ba8efd > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5ca2abf80a98e8 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4538a2de3a1cc1 [data-item="undefined"] {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(252, 129, 55, 1);}#a297fa3a35a1344 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4702a7311a2b89 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5528ab8d4a21db > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac499aaabca5205 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af441a3e1fa7b07 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a435ea49fea5e4d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae903afe25a0484 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac3daa7db3a8ba7 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab240aca71a74f3 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a598ba0925a83dd .ele-wrap {border-color: #000;color: #fff;font-size: 28px;font-weight: 600;background-image: url(/resources/upload/a5b06a9281ad8ef/1710311064503.png);border-radius: 5px;justify-content: center;border-style: solid;}#a598ba0925a83dd .ele-wrap:hover {background-color: #0483cc;background-color: rgba(255, 255, 255, 0);color: #f8e71c;}#a3cc9a9fb2a3ad9 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3dd0a04d0a4d47 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#acd9eab540a7335 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a53c5aa3dda83f6 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4bc2a5f4ea716f > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#adbf4aae0da902a > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae78fa03c3ab323 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a01f1aba12ae220 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4aa2a6248ac17a > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0e1ca2595a0860 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae57aa1ba2a71c9 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7a5da8e23ac4cd > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aa4bfa4ce4a9fd9 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0f26a9468ab0d8 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab321ae859a0133 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0c66a0108a9b70 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7b59aedd5afa6a > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5683a5218a4bb5 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#acafdaaf95a0bd2 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5976aab7aa948b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad593aa10faf53b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2204a13c6af810 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1aeaad62ca191d > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1bdfaf883a4fe8 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a15ffa32efa7671 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aeb86a8e4aa5f33 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9e2bae10ea1357 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab2c7a0bcfaaf7f > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac1e2a371ea3300 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5308ac123a7f75 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4212ae30cad3f1 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab2d2a1e36adbda > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a83fca60e0ac1a2 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac41ca01dfaa678 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab68ead24baf906 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0a9aae174aab54 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4709a5f8aae1f5 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3ae5a4208af52d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5770a6f30a02eb > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1c26a0b92a7da4 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aad3da696ca428c > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af686af103a1863 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2d25a9894aec65 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae9abad301a3513 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a90adacda5a5fdb > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1c10ad8cfab77e > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#afde5a8373a69d3 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aae7aa683caaf39 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a485ea4f3aa3d46 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#afda6aeb7aa1fc7 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a7502a0e01ac531 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab3f1a18ecab05d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a67a3a497daed9b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a72c8a3c75a159b > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9e98a0708a37a7 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a78f4a6b75ad9a4 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab6cfa4981a0e61 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a685ba5577aca69 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a0df0a5bc2a3329 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ad0d8afa96ae0db > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9ad5abc0dad67d > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a5bceaf76aa67ee > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab2b5a364da7108 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a1089ae32dafdae > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4ac0a9d5eadbef > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4140a3d17a1152 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a6ca0ad554a0528 .ele-wrap {color: #ffffff;font-size: 16px;font-weight: 500;background-color: rgba(252, 129, 55, 1);border-radius: 25px;justify-content: center;border-style: solid;border-width: 1px;}#a6ca0ad554a0528 .ele-wrap:hover {background-color: #509c49;background-color: rgba(252, 129, 55, 1);color: #ffffff;border-color: rgba(252, 129, 55, 1);}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#a4d15a6d79ae2ff .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5c10af3b6a9c70 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235893916.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a834ea7da7af01a > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235895659.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae75ea5361a012e > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235896255.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afadca7f9faa5ee > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235896881.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad164ae44da3d5c > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae104a7011af95d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a403ba1198a1f7e > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af293a998ea6eea > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);box-shadow: 0px 2px 8px 0px rgba(252, 129, 55, 1);}#a1c2ba667aa711f , #a1c2ba667aa711f a{color: rgba(252, 129, 55, 1);}#a5316aa7bca6b79 , #a5316aa7bca6b79 a{color: rgba(252, 129, 55, 1);}#a0709a4c7ea5231 , #a0709a4c7ea5231 a{color: rgba(252, 129, 55, 1);}#a2c4aa72b8a3006 , #a2c4aa72b8a3006 a{color: rgba(252, 129, 55, 1);}#aa876a8235a3538 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aece0a38e3a5bd2 > .ele-wrap {background-color: rgba(252, 129, 55, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a3669ad522a0908 .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 0px;font-size: 14px;justify-content: center;font-weight: 400;}#a3669ad522a0908 .ele-wrap:hover {border-color: rgba(255, 255, 255, 1);background-color: #fff;color: #ffffff;background-color: rgba(255, 255, 255, 0);}#aa7cea3089a6a97 .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 0px;font-size: 14px;justify-content: center;font-weight: 400;}#aa7cea3089a6a97 .ele-wrap:hover {border-color: rgba(255, 255, 255, 1);background-color: #fff;color: #ffffff;background-color: rgba(255, 255, 255, 0);}#a54baa4562a6167 .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 0px;font-size: 14px;justify-content: center;font-weight: 400;}#a54baa4562a6167 .ele-wrap:hover {border-color: rgba(255, 255, 255, 1);background-color: #fff;color: #ffffff;background-color: rgba(0, 0, 0, 0);}#a5d63a66c2adf05 .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 0px;font-size: 14px;justify-content: center;font-weight: 400;}#a5d63a66c2adf05 .ele-wrap:hover {border-color: rgba(255, 255, 255, 1);background-color: #fff;color: #ffffff;background-color: rgba(255, 255, 255, 0);}#a72ffa21fba8598 .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 0px;font-size: 14px;justify-content: center;font-weight: 400;}#a72ffa21fba8598 .ele-wrap:hover {border-color: rgba(255, 255, 255, 1);background-color: #fff;color: #ffffff;background-color: rgba(255, 255, 255, 0);}#a3fdda4765ab9cf {
  overflow: hidden;
}
#a3fdda4765ab9cf .img-wrap {
  transition: all 0.3s ease-in;
}
#a3fdda4765ab9cf .img-wrap:hover {
  transform: scale(1.1);
}
#a8082aaf79a054e .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 0px;font-size: 14px;justify-content: center;font-weight: 400;}#a8082aaf79a054e .ele-wrap:hover {border-color: rgba(255, 255, 255, 1);background-color: #fff;color: #ffffff;background-color: rgba(255, 255, 255, 0);}#ac922a3e9ba6cb3 .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 0px;font-size: 14px;justify-content: center;font-weight: 400;}#ac922a3e9ba6cb3 .ele-wrap:hover {border-color: rgba(255, 255, 255, 1);background-color: #fff;color: #ffffff;background-color: rgba(255, 255, 255, 0);}#a6826a422fac6d5 .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 0px;font-size: 14px;justify-content: center;font-weight: 400;}#a6826a422fac6d5 .ele-wrap:hover {border-color: rgba(255, 255, 255, 1);background-color: #fff;color: #ffffff;background-color: rgba(0, 0, 0, 0);}#ae643a0ccaa7c7f .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 0px;font-size: 14px;justify-content: center;font-weight: 400;}#ae643a0ccaa7c7f .ele-wrap:hover {border-color: rgba(255, 255, 255, 1);background-color: #fff;color: #ffffff;background-color: rgba(255, 255, 255, 0);}#ad559a2546a6227 .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 0px;font-size: 14px;justify-content: center;font-weight: 400;}#ad559a2546a6227 .ele-wrap:hover {border-color: rgba(255, 255, 255, 1);background-color: #fff;color: #ffffff;background-color: rgba(255, 255, 255, 0);}#a794cab7b5a6120 .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 0px;font-size: 14px;justify-content: center;font-weight: 400;}#a794cab7b5a6120 .ele-wrap:hover {border-color: rgba(255, 255, 255, 1);background-color: #fff;color: #ffffff;background-color: rgba(255, 255, 255, 0);}#a593ea2d9ca370c .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 0px;font-size: 14px;justify-content: center;font-weight: 400;}#a593ea2d9ca370c .ele-wrap:hover {border-color: rgba(255, 255, 255, 1);background-color: #fff;color: #ffffff;background-color: rgba(255, 255, 255, 0);}#a3c77a3511af761 .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 0px;font-size: 14px;justify-content: center;font-weight: 400;}#a3c77a3511af761 .ele-wrap:hover {border-color: rgba(255, 255, 255, 1);background-color: #fff;color: #ffffff;background-color: rgba(255, 255, 255, 1);}#a882aad31faaaf2 .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 0px;font-size: 14px;justify-content: center;font-weight: 400;}#a882aad31faaaf2 .ele-wrap:hover {border-color: rgba(255, 255, 255, 1);background-color: #fff;color: #ffffff;background-color: rgba(255, 255, 255, 0);}#a0303ab03ca3c61 .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 0px;font-size: 14px;justify-content: center;font-weight: 400;}#a0303ab03ca3c61 .ele-wrap:hover {border-color: rgba(255, 255, 255, 1);background-color: #fff;color: #ffffff;background-color: rgba(255, 255, 255, 0);}#a397eac716aa197 .ele-wrap {border-color: rgba(255, 255, 255, 1);border-width: 1px;border-style: solid;color: #ffffff;background-color: transparent;border-radius: 0px;font-size: 14px;justify-content: center;font-weight: 400;}#a397eac716aa197 .ele-wrap:hover {border-color: rgba(255, 255, 255, 1);background-color: #fff;color: #ffffff;background-color: rgba(255, 255, 255, 0);}#af775a45c0aaebb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9db8ad5daa51cc > .ele-wrap {background-color: rgba(252, 129, 55, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710746887291.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0647aa4b1ac422 {
  overflow: hidden;
}
#a0647aa4b1ac422 .img-wrap {
  transition: all 0.3s ease-in;
}
#a0647aa4b1ac422 .img-wrap:hover {
  transform: scale(1.1);
}
#ad86ca0471ae6d9 > .ele-wrap {background-color: rgba(252, 129, 55, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710746887291.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8b49af74ea1097 {
  overflow: hidden;
}
#a8b49af74ea1097 .img-wrap {
  transition: all 0.3s ease-in;
}
#a8b49af74ea1097 .img-wrap:hover {
  transform: scale(1.1);
}
#ab92aa031fad81c > .ele-wrap {background-color: rgba(252, 129, 55, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710746887291.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9431a62a9a36cd {
  overflow: hidden;
}
#a9431a62a9a36cd .img-wrap {
  transition: all 0.3s ease-in;
}
#a9431a62a9a36cd .img-wrap:hover {
  transform: scale(1.1);
}
#a4309a725fa0048 > .ele-wrap {background-color: rgba(252, 129, 55, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710746887291.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1bebad162a6ee8 {
  overflow: hidden;
}
#a1bebad162a6ee8 .img-wrap {
  transition: all 0.3s ease-in;
}
#a1bebad162a6ee8 .img-wrap:hover {
  transform: scale(1.1);
}
#adb50aaeaeaa09b > .ele-wrap {background-color: rgba(252, 129, 55, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710746887291.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a3f2caa262a74e9 {
  overflow: hidden;
}
#a3f2caa262a74e9 .img-wrap {
  transition: all 0.3s ease-in;
}
#a3f2caa262a74e9 .img-wrap:hover {
  transform: scale(1.1);
}
#a1c4ca5caca9bec > .ele-wrap {background-color: rgba(252, 129, 55, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710746887291.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab7eaa220fa7a63 {
  overflow: hidden;
}
#ab7eaa220fa7a63 .img-wrap {
  transition: all 0.3s ease-in;
}
#ab7eaa220fa7a63 .img-wrap:hover {
  transform: scale(1.1);
}
#a3fc7ad4d0aca8a > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac9c4ad6daab4cd > .ele-wrap {background-color: rgba(255, 255, 255, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710494779237.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0e3eafc59aaf47 > .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);}#a0140a47c3a42c9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710494780069.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a49bfad9d8a91e7 > .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);}#ae6e3a241aafabf > .ele-wrap {background-color: rgba(255, 255, 255, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710494780760.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6db2a4f2caf807 > .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);}#a6b38ab8e4abbce > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abc7ca8596a96bb > .ele-wrap {background-color: rgba(252, 129, 55, 0.9);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);}#a541eab3b5a3365 > .ele-wrap {background-color: rgba(252, 129, 55, 0.9);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);}#ade4daceb5a0afd > .ele-wrap {background-color: rgba(252, 129, 55, 0.9);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);}#aca43ad978a3c59 > .ele-wrap {background-color: rgba(252, 129, 55, 0.9);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);}#a7055a2bceaeadb > .ele-wrap {background-color: rgba(252, 129, 55, 0.9);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);}#ad627a5be4a500e > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);border-top-right-radius: 40px;border-bottom-right-radius: 40px;border-bottom-left-radius: 40px;border-top-left-radius: 40px;}#acb67a8183a5506 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a48c6a775cad701 > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);}#a14d0a403ea0680 , #a14d0a403ea0680 a{color: rgba(252, 129, 55, 1);}#ad8bba4a0ea5d7b .ele-wrap {border-color: rgba(252, 129, 55, 1);color: #fc8137;font-size: 16px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;border-width: 1px;}#ad8bba4a0ea5d7b .ele-wrap:hover {background-color: #0483cc;color: #fc8137;border-color: rgba(252, 129, 55, 1);background-color: rgba(252, 129, 55, 0);}#af501a0b03a9349 .ele-wrap {border-color: rgba(252, 129, 55, 1);color: #fc8137;font-size: 16px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;border-width: 1px;}#af501a0b03a9349 .ele-wrap:hover {background-color: #0483cc;color: #fc8137;border-color: rgba(252, 129, 55, 1);background-color: rgba(252, 129, 55, 0);}#aeb3cab202a5714 .ele-wrap {border-color: rgba(252, 129, 55, 1);color: #fc8137;font-size: 16px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;border-width: 1px;}#aeb3cab202a5714 .ele-wrap:hover {background-color: #0483cc;color: #fc8137;border-color: rgba(252, 129, 55, 1);background-color: rgba(252, 129, 55, 0);}#afd65a4446a7eb3 > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a65b3afbcda9021 > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);}#a1f67a7746a0b0b .ele-wrap {color: #ffffff;font-size: 14px;font-weight: 500;background-color: rgba(252, 129, 55, 1);border-radius: 0px;justify-content: center;border-style: solid;border-width: 0px;}#a1f67a7746a0b0b .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(252, 129, 55, 1);}#aba05ab586a6de9 > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);}#af0c3ad2c7a18ba .ele-wrap {color: #ffffff;font-size: 14px;font-weight: 500;background-color: rgba(252, 129, 55, 1);border-radius: 0px;justify-content: center;border-style: solid;border-width: 0px;}#af0c3ad2c7a18ba .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(252, 129, 55, 1);}#a3edea93a5ace5f > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);}#a65c0a91eaa7322 .ele-wrap {color: #ffffff;font-size: 14px;font-weight: 500;background-color: rgba(252, 129, 55, 1);border-radius: 0px;justify-content: center;border-style: solid;border-width: 0px;}#a65c0a91eaa7322 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(252, 129, 55, 1);}#ad460ae787af61b > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);}#a27eba178bae1cf , #a27eba178bae1cf a{color: rgba(252, 129, 55, 1);}#a0748a45c5aa876 .ele-wrap {border-color: rgba(252, 129, 55, 1);color: #fc8137;font-size: 16px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;border-width: 1px;}#a0748a45c5aa876 .ele-wrap:hover {background-color: #0483cc;color: #fc8137;border-color: rgba(252, 129, 55, 1);background-color: rgba(252, 129, 55, 0);}#a9e6da98f9ac726 .ele-wrap {border-color: rgba(252, 129, 55, 1);color: #fc8137;font-size: 16px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;border-width: 1px;}#a9e6da98f9ac726 .ele-wrap:hover {background-color: #0483cc;color: #fc8137;border-color: rgba(252, 129, 55, 1);background-color: rgba(252, 129, 55, 0);}#a3b2eab2bda6310 > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac150a6c8ca2bae > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);}#aa454aec1da7bab .ele-wrap {color: #ffffff;font-size: 14px;font-weight: 500;background-color: rgba(252, 129, 55, 1);border-radius: 0px;justify-content: center;border-style: solid;border-width: 0px;}#aa454aec1da7bab .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(252, 129, 55, 1);}#ab86dac46ea123c > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);}#ac0ceabee7ac91d .ele-wrap {color: #ffffff;font-size: 14px;font-weight: 500;background-color: rgba(252, 129, 55, 1);border-radius: 0px;justify-content: center;border-style: solid;border-width: 0px;}#ac0ceabee7ac91d .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(252, 129, 55, 1);}#a7437af6f2a2a49 > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);}#a2ceaaecb8a47d1 , #a2ceaaecb8a47d1 a{color: rgba(252, 129, 55, 1);}#a4023a150da11fc .ele-wrap {border-color: rgba(252, 129, 55, 1);color: #fc8137;font-size: 16px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;border-width: 1px;}#a4023a150da11fc .ele-wrap:hover {background-color: #0483cc;color: #fc8137;border-color: rgba(252, 129, 55, 1);background-color: rgba(252, 129, 55, 0);}#af98ea34d9a59ae > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a561ca95c9a75ed > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);}#ad32ba3711a3a7e .ele-wrap {color: #ffffff;font-size: 14px;font-weight: 500;background-color: rgba(252, 129, 55, 1);border-radius: 0px;justify-content: center;border-style: solid;border-width: 0px;}#ad32ba3711a3a7e .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(252, 129, 55, 1);}#a9a8ba9349a37cf > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);}#ace13a05eeac593 , #ace13a05eeac593 a{color: rgba(252, 129, 55, 1);}#abf2da4d0ba1aa3 .ele-wrap {border-color: rgba(252, 129, 55, 1);color: #fc8137;font-size: 16px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;border-width: 1px;}#abf2da4d0ba1aa3 .ele-wrap:hover {background-color: #0483cc;color: #fc8137;border-color: rgba(252, 129, 55, 1);background-color: rgba(252, 129, 55, 0);}#a26d9aae1ca2bea > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac6e4a5b52a9c16 > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);}#a6453a4acda4b2a .ele-wrap {color: #ffffff;font-size: 14px;font-weight: 500;background-color: rgba(252, 129, 55, 1);border-radius: 0px;justify-content: center;border-style: solid;border-width: 0px;}#a6453a4acda4b2a .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(252, 129, 55, 1);}#a5ec1adc8fad331 > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);}#a8c02acbb0a7617 , #a8c02acbb0a7617 a{color: rgba(252, 129, 55, 1);}#a86c6ae833a5671 .ele-wrap {border-color: rgba(252, 129, 55, 1);color: #fc8137;font-size: 16px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;border-width: 1px;}#a86c6ae833a5671 .ele-wrap:hover {background-color: #0483cc;color: #fc8137;border-color: rgba(252, 129, 55, 1);background-color: rgba(252, 129, 55, 0);}#a12dda70e0a5d8b > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9b65acacda48e8 > .ele-wrap {background-color: rgba(250, 240, 225, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(252, 129, 55, 1);border-left-color: rgba(252, 129, 55, 1);border-bottom-color: rgba(252, 129, 55, 1);border-top-color: rgba(252, 129, 55, 1);}#a2f38a3861ada07 .ele-wrap {color: #ffffff;font-size: 14px;font-weight: 500;background-color: rgba(252, 129, 55, 1);border-radius: 0px;justify-content: center;border-style: solid;border-width: 0px;}#a2f38a3861ada07 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(252, 129, 55, 1);}#ace4da2001a3691 {
  overflow: hidden;
  pointer-events: none;
}
#ace4da2001a3691 > .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;
}
#ace4da2001a3691 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#ace4da2001a3691 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ace4da2001a3691 > .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;
}
#ace4da2001a3691 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#ace4da2001a3691 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ace4da2001a3691 > .tab-wrap > div > .tab-nav,
#ace4da2001a3691 > .tab-nav,
#ace4da2001a3691 > .tab-tabs > .tab-wrap > div > .tab-nav,
#ace4da2001a3691 > .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;
}
#ace4da2001a3691 > .tab-wrap > div > .tab-nav-horizontal,
#ace4da2001a3691 > .tab-nav-horizontal,
#ace4da2001a3691 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#ace4da2001a3691 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#ace4da2001a3691 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ace4da2001a3691 > .tab-nav-horizontal::-webkit-scrollbar,
#ace4da2001a3691 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ace4da2001a3691 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#ace4da2001a3691 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ace4da2001a3691 > .tab-nav-horizontal.tagScroll,
#ace4da2001a3691 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ace4da2001a3691 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#ace4da2001a3691 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ace4da2001a3691 > .tab-nav-horizontal.tagScroll li a,
#ace4da2001a3691 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ace4da2001a3691 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#ace4da2001a3691 > .tab-wrap > div > .tab-nav a,
#ace4da2001a3691 > .tab-nav a,
#ace4da2001a3691 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#ace4da2001a3691 > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#ace4da2001a3691 > .tab-wrap > div > .tab-nav li a,
#ace4da2001a3691 > .tab-nav li a,
#ace4da2001a3691 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#ace4da2001a3691 > .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;
}
#ace4da2001a3691 > .tab-wrap > div > .tab-nav li a svg,
#ace4da2001a3691 > .tab-nav li a svg,
#ace4da2001a3691 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#ace4da2001a3691 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#ace4da2001a3691 > .tab-wrap > div > .tab-nav li a .ap_icon,
#ace4da2001a3691 > .tab-nav li a .ap_icon,
#ace4da2001a3691 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#ace4da2001a3691 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#ace4da2001a3691 > .tab-wrap > div > .tab-nav li a:hover,
#ace4da2001a3691 > .tab-nav li a:hover,
#ace4da2001a3691 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#ace4da2001a3691 > .tab-tabs > .tab-nav li a:hover {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  border-bottom-width: 2px;
  border-bottom-color: #fc8137;
  border-bottom-style: solid;
}
#ace4da2001a3691 > .tab-wrap > div > .tab-nav li.uk-active a,
#ace4da2001a3691 > .tab-nav li.uk-active a,
#ace4da2001a3691 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#ace4da2001a3691 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  border-bottom-width: 2px;
  border-bottom-color: #fc8137;
  border-bottom-style: solid;
}
#ace4da2001a3691 .layout-left li,
#ace4da2001a3691 .layout-center li,
#ace4da2001a3691 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#ace4da2001a3691 .layout-left li a,
#ace4da2001a3691 .layout-center li a,
#ace4da2001a3691 .layout-right li a {
  height: 100%;
}
#ace4da2001a3691 > .tab-tabs .layout-left {
  text-align: left;
}
#ace4da2001a3691 > .tab-tabs .layout-center {
  text-align: center;
}
#ace4da2001a3691 > .tab-tabs .layout-right {
  text-align: right;
}
#ace4da2001a3691 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#ace4da2001a3691 .tab-content-wrap {
  background-color: transparent;
}
#ace4da2001a3691 .tab-contents,
#ace4da2001a3691 .tab-contents-wrap {
  pointer-events: none;
}
#ace4da2001a3691 .tab-content,
#ace4da2001a3691 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#ace4da2001a3691 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#ace4da2001a3691 .tab-wrap .tab-contents {
  height: 100%;
}
#ace4da2001a3691 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ace4da2001a3691 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#ace4da2001a3691 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#aadb5a99a5a510a > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1808a82a8a15af > .ele-wrap {border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a152ea142da1674 > .ele-wrap {border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#afd17a2750a72e5 > .ele-wrap {border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a7799aeba2a7ed6 > .ele-wrap {border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#a0ef1a3118a8feb > .ele-wrap {border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ad263ad4c9a1aee > .ele-wrap {border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#aa4cba1dccab8ac > .ele-wrap {border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;}#ad025a6f9aa8c58 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a3b92ac9f2a3711 > .ele-wrap {background-color: rgba(255, 255, 255, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710495618577.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af3aea1ae4a2437 > .ele-wrap {background-color: rgba(252, 129, 55, 0.9);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);}#af92ba736fa1fb0 > .ele-wrap {background-color: rgba(255, 255, 255, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710495619189.png);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9b36a34f5a7b63 > .ele-wrap {background-color: rgba(252, 129, 55, 0.9);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);}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ad8f2aaad7a01a1 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afd18a6114a1cd1 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235893916.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1d2facd65aab76 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235895659.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#adb50a2621ab790 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235896255.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#adc5aacb6fa08f8 > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(/resources/upload/a5b06a9281ad8ef/1710235896881.jpeg);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2e1ba89e6ad30b > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a918aa43d9adc0d .gallery-items-wrap {
  margin-left: -15px;
}
#a918aa43d9adc0d .filter.active {
  background-color: #fc8137;
}
#a918aa43d9adc0d .gallery-item {
  width: 188px;
  margin: 0 0 15px 15px;
  float: left;
  list-style: none;
  position: relative;
}
#a918aa43d9adc0d .text-style-3 figure {
  height: 300px;
}
#a918aa43d9adc0d .filter.active {
  background-color: #fc8137;
}
#aae3daa550a7322 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6fa9a3f89a2c7d .gallery-items-wrap {
  margin-left: -15px;
}
#a6fa9a3f89a2c7d .filter.active {
  background-color: #fc8137;
}
#a6fa9a3f89a2c7d .gallery-item {
  width: 185px;
  margin: 0 0 15px 15px;
  float: left;
  list-style: none;
  position: relative;
}
#a6fa9a3f89a2c7d .text-style-3 figure {
  height: 300px;
}
#a35aea764fa2867 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a739ca5f58ae660 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a290aa887ea1889 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab82baf43aa41df > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a006ba7603a6d60 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#af5a2abd76aa068 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a3593a6c4cab0c0 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a54e8a089fa5508 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9289a39bca99d8 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9e79a91ada0059 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4f5ca04e6a9603 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a4b98aa799ac01f > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2e56acedea6942 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a015aa2a1aa2961 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#abb77a88b8afcda > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab9e6a882ea29cc > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a15c4a3257a392d > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ab1c8a83c6a7d0a > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a112ea30cfa71ce > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a9d12a4460a551e > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#aca48abfafa1df6 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a168cac457a5d64 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac096a128ba3b8a > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ae7f9a9121a58d5 > .ele-wrap {background-color: rgba(247, 247, 247, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#a2b5aa7b37a2404 > .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-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-right-color: rgba(204, 204, 204, 1);border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);}#ac52da48f1ace85 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a00f7a4176a2e50 > .ele-wrap {background-color: rgba(252, 129, 55, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4879a0785ab65f {
  overflow: hidden;
}
#a4879a0785ab65f .img-wrap {
  transition: all 0.3s ease-in;
}
#a4879a0785ab65f .img-wrap:hover {
  transform: scale(1.1);
}
#a6333ada10a8cc5 > .ele-wrap {background-color: rgba(252, 129, 55, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afc25aa8e5a9b05 {
  overflow: hidden;
}
#afc25aa8e5a9b05 .img-wrap {
  transition: all 0.3s ease-in;
}
#afc25aa8e5a9b05 .img-wrap:hover {
  transform: scale(1.1);
}
#a61dfa4e05a5108 > .ele-wrap {background-color: rgba(252, 129, 55, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab497a48a8adb25 {
  overflow: hidden;
}
#ab497a48a8adb25 .img-wrap {
  transition: all 0.3s ease-in;
}
#ab497a48a8adb25 .img-wrap:hover {
  transform: scale(1.1);
}
#ae7daa011ea2cf6 > .ele-wrap {background-color: rgba(252, 129, 55, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a726aa863eacd8b {
  overflow: hidden;
}
#a726aa863eacd8b .img-wrap {
  transition: all 0.3s ease-in;
}
#a726aa863eacd8b .img-wrap:hover {
  transform: scale(1.1);
}
#af8b7a58c6afcdc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac310a0d4fa1010 > .ele-wrap {border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-top-color: rgba(230, 230, 230, 1);border-right-color: rgba(230, 230, 230, 1);border-left-color: rgba(230, 230, 230, 1);border-bottom-color: rgba(230, 230, 230, 1);box-shadow: 0px 0px 2px 2px rgba(225, 225, 225, 1);}#ac310a0d4fa1010  > .ele-wrap:hover {border-top-width: 0px;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);border-right-width: 0px;border-left-width: 0px;border-bottom-width: 3px;border-right-style: none;border-left-style: none;border-bottom-style: solid;color: #fc8137;}#ac310a0d4fa1010:hover * {color: #fc8137 }
                            #ac310a0d4fa1010:hover .line{border-color: #fc8137 }#afabda404ea9cb7 {
  overflow: hidden;
}
#afabda404ea9cb7 .img-wrap {
  transition: all 0.3s ease-in;
}
#afabda404ea9cb7 .img-wrap:hover {
  transform: scale(1.1);
}
#a509fae636aedde > .ele-wrap {border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-top-color: rgba(230, 230, 230, 1);border-right-color: rgba(230, 230, 230, 1);border-left-color: rgba(230, 230, 230, 1);border-bottom-color: rgba(230, 230, 230, 1);box-shadow: 0px 0px 2px 2px rgba(225, 225, 225, 1);}#a509fae636aedde  > .ele-wrap:hover {border-top-width: 0px;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);border-right-width: 0px;border-left-width: 0px;border-bottom-width: 3px;border-right-style: none;border-left-style: none;border-bottom-style: solid;color: #fc8137;}#a509fae636aedde:hover * {color: #fc8137 }
                            #a509fae636aedde:hover .line{border-color: #fc8137 }#a1f2baa1a5a53ea {
  overflow: hidden;
}
#a1f2baa1a5a53ea .img-wrap {
  transition: all 0.3s ease-in;
}
#a1f2baa1a5a53ea .img-wrap:hover {
  transform: scale(1.1);
}
#ad8e9a4d7ba1c31 > .ele-wrap {border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-top-color: rgba(230, 230, 230, 1);border-right-color: rgba(230, 230, 230, 1);border-left-color: rgba(230, 230, 230, 1);border-bottom-color: rgba(230, 230, 230, 1);box-shadow: 0px 0px 2px 2px rgba(225, 225, 225, 1);}#ad8e9a4d7ba1c31  > .ele-wrap:hover {border-top-width: 0px;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);border-right-width: 0px;border-left-width: 0px;border-bottom-width: 3px;border-right-style: none;border-left-style: none;border-bottom-style: solid;color: #fc8137;}#ad8e9a4d7ba1c31:hover * {color: #fc8137 }
                            #ad8e9a4d7ba1c31:hover .line{border-color: #fc8137 }#aac0baecf8a958b {
  overflow: hidden;
}
#aac0baecf8a958b .img-wrap {
  transition: all 0.3s ease-in;
}
#aac0baecf8a958b .img-wrap:hover {
  transform: scale(1.1);
}
#a6fefaadc4a4e75 > .ele-wrap {border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-top-color: rgba(230, 230, 230, 1);border-right-color: rgba(230, 230, 230, 1);border-left-color: rgba(230, 230, 230, 1);border-bottom-color: rgba(230, 230, 230, 1);box-shadow: 0px 0px 2px 2px rgba(225, 225, 225, 1);}#a6fefaadc4a4e75  > .ele-wrap:hover {border-top-width: 0px;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);border-right-width: 0px;border-left-width: 0px;border-bottom-width: 3px;border-right-style: none;border-left-style: none;border-bottom-style: solid;color: #fc8137;}#a6fefaadc4a4e75:hover * {color: #fc8137 }
                            #a6fefaadc4a4e75:hover .line{border-color: #fc8137 }#a6761a7bb8ad962 {
  overflow: hidden;
}
#a6761a7bb8ad962 .img-wrap {
  transition: all 0.3s ease-in;
}
#a6761a7bb8ad962 .img-wrap:hover {
  transform: scale(1.1);
}
#a118dac72ea05f5 > .ele-wrap {border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-top-color: rgba(230, 230, 230, 1);border-right-color: rgba(230, 230, 230, 1);border-left-color: rgba(230, 230, 230, 1);border-bottom-color: rgba(230, 230, 230, 1);box-shadow: 0px 0px 2px 2px rgba(225, 225, 225, 1);}#a118dac72ea05f5  > .ele-wrap:hover {border-top-width: 0px;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);border-right-width: 0px;border-left-width: 0px;border-bottom-width: 3px;border-right-style: none;border-left-style: none;border-bottom-style: solid;color: #fc8137;}#a118dac72ea05f5:hover * {color: #fc8137 }
                            #a118dac72ea05f5:hover .line{border-color: #fc8137 }#a1e50a07d3abd4b {
  overflow: hidden;
}
#a1e50a07d3abd4b .img-wrap {
  transition: all 0.3s ease-in;
}
#a1e50a07d3abd4b .img-wrap:hover {
  transform: scale(1.1);
}
#aab1cabd21ae9a1 > .ele-wrap {border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-top-color: rgba(230, 230, 230, 1);border-right-color: rgba(230, 230, 230, 1);border-left-color: rgba(230, 230, 230, 1);border-bottom-color: rgba(230, 230, 230, 1);box-shadow: 0px 0px 2px 2px rgba(225, 225, 225, 1);}#aab1cabd21ae9a1  > .ele-wrap:hover {border-top-width: 0px;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);border-right-width: 0px;border-left-width: 0px;border-bottom-width: 3px;border-right-style: none;border-left-style: none;border-bottom-style: solid;color: #fc8137;}#aab1cabd21ae9a1:hover * {color: #fc8137 }
                            #aab1cabd21ae9a1:hover .line{border-color: #fc8137 }#a40bba6254a00ef {
  overflow: hidden;
}
#a40bba6254a00ef .img-wrap {
  transition: all 0.3s ease-in;
}
#a40bba6254a00ef .img-wrap:hover {
  transform: scale(1.1);
}
#a71fba3029a8336 > .ele-wrap {border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-top-color: rgba(230, 230, 230, 1);border-right-color: rgba(230, 230, 230, 1);border-left-color: rgba(230, 230, 230, 1);border-bottom-color: rgba(230, 230, 230, 1);box-shadow: 0px 0px 2px 2px rgba(225, 225, 225, 1);}#a71fba3029a8336  > .ele-wrap:hover {border-top-width: 0px;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);border-right-width: 0px;border-left-width: 0px;border-bottom-width: 3px;border-right-style: none;border-left-style: none;border-bottom-style: solid;color: #fc8137;}#a71fba3029a8336:hover * {color: #fc8137 }
                            #a71fba3029a8336:hover .line{border-color: #fc8137 }#af045af659ac0ee {
  overflow: hidden;
}
#af045af659ac0ee .img-wrap {
  transition: all 0.3s ease-in;
}
#af045af659ac0ee .img-wrap:hover {
  transform: scale(1.1);
}
#abd37a222ba5b3f > .ele-wrap {border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-top-color: rgba(230, 230, 230, 1);border-right-color: rgba(230, 230, 230, 1);border-left-color: rgba(230, 230, 230, 1);border-bottom-color: rgba(230, 230, 230, 1);box-shadow: 0px 0px 2px 2px rgba(225, 225, 225, 1);}#abd37a222ba5b3f  > .ele-wrap:hover {border-top-width: 0px;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);border-right-width: 0px;border-left-width: 0px;border-bottom-width: 3px;border-right-style: none;border-left-style: none;border-bottom-style: solid;color: #fc8137;}#abd37a222ba5b3f:hover * {color: #fc8137 }
                            #abd37a222ba5b3f:hover .line{border-color: #fc8137 }#a0475a7136a07bb {
  overflow: hidden;
}
#a0475a7136a07bb .img-wrap {
  transition: all 0.3s ease-in;
}
#a0475a7136a07bb .img-wrap:hover {
  transform: scale(1.1);
}
#acaa4ac2b0aec3f > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acbbea8a4fae9eb > .ele-wrap {border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-top-color: rgba(230, 230, 230, 1);border-right-color: rgba(230, 230, 230, 1);border-left-color: rgba(230, 230, 230, 1);border-bottom-color: rgba(230, 230, 230, 1);box-shadow: 0px 0px 2px 2px rgba(225, 225, 225, 1);}#acbbea8a4fae9eb  > .ele-wrap:hover {border-top-width: 0px;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);border-right-width: 0px;border-left-width: 0px;border-bottom-width: 3px;border-right-style: none;border-left-style: none;border-bottom-style: solid;color: #fc8137;}#acbbea8a4fae9eb:hover * {color: #fc8137 }
                            #acbbea8a4fae9eb:hover .line{border-color: #fc8137 }#ac6e3ab333a084a {
  overflow: hidden;
}
#ac6e3ab333a084a .img-wrap {
  transition: all 0.3s ease-in;
}
#ac6e3ab333a084a .img-wrap:hover {
  transform: scale(1.1);
}
#a5671a5d63a75d9 , #a5671a5d63a75d9 a{color: rgba(204, 204, 204, 1);}#abf23a6bc9a3b40 > .ele-wrap {border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-top-color: rgba(230, 230, 230, 1);border-right-color: rgba(230, 230, 230, 1);border-left-color: rgba(230, 230, 230, 1);border-bottom-color: rgba(230, 230, 230, 1);box-shadow: 0px 0px 2px 2px rgba(225, 225, 225, 1);}#abf23a6bc9a3b40  > .ele-wrap:hover {border-top-width: 0px;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);border-right-width: 0px;border-left-width: 0px;border-bottom-width: 3px;border-right-style: none;border-left-style: none;border-bottom-style: solid;color: #fc8137;}#abf23a6bc9a3b40:hover * {color: #fc8137 }
                            #abf23a6bc9a3b40:hover .line{border-color: #fc8137 }#acbf9a8e40a5bac {
  overflow: hidden;
}
#acbf9a8e40a5bac .img-wrap {
  transition: all 0.3s ease-in;
}
#acbf9a8e40a5bac .img-wrap:hover {
  transform: scale(1.1);
}
#a39abaf92bafa95 , #a39abaf92bafa95 a{color: rgba(204, 204, 204, 1);}#a415da57e8aa0a8 > .ele-wrap {border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-top-color: rgba(230, 230, 230, 1);border-right-color: rgba(230, 230, 230, 1);border-left-color: rgba(230, 230, 230, 1);border-bottom-color: rgba(230, 230, 230, 1);box-shadow: 0px 0px 2px 2px rgba(225, 225, 225, 1);}#a415da57e8aa0a8  > .ele-wrap:hover {border-top-width: 0px;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);border-right-width: 0px;border-left-width: 0px;border-bottom-width: 3px;border-right-style: none;border-left-style: none;border-bottom-style: solid;color: #fc8137;}#a415da57e8aa0a8:hover * {color: #fc8137 }
                            #a415da57e8aa0a8:hover .line{border-color: #fc8137 }#af877a7d58a2682 {
  overflow: hidden;
}
#af877a7d58a2682 .img-wrap {
  transition: all 0.3s ease-in;
}
#af877a7d58a2682 .img-wrap:hover {
  transform: scale(1.1);
}
#ad6a0af433a3027 , #ad6a0af433a3027 a{color: rgba(204, 204, 204, 1);}#af285a7086a9705 > .ele-wrap {border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-top-color: rgba(230, 230, 230, 1);border-right-color: rgba(230, 230, 230, 1);border-left-color: rgba(230, 230, 230, 1);border-bottom-color: rgba(230, 230, 230, 1);box-shadow: 0px 0px 2px 2px rgba(225, 225, 225, 1);}#af285a7086a9705  > .ele-wrap:hover {border-top-width: 0px;border-top-style: none;border-bottom-color: rgba(252, 129, 55, 1);border-right-width: 0px;border-left-width: 0px;border-bottom-width: 3px;border-right-style: none;border-left-style: none;border-bottom-style: solid;color: #fc8137;}#af285a7086a9705:hover * {color: #fc8137 }
                            #af285a7086a9705:hover .line{border-color: #fc8137 }#aa8e5a3c31ab37e {
  overflow: hidden;
}
#aa8e5a3c31ab37e .img-wrap {
  transition: all 0.3s ease-in;
}
#aa8e5a3c31ab37e .img-wrap:hover {
  transform: scale(1.1);
}
#a6fc9a9462ae5e5 , #a6fc9a9462ae5e5 a{color: rgba(204, 204, 204, 1);}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af584a87ddaec21 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a021dacfdea91da {
  min-height: 90vh;
  /* mobile */
}
#a021dacfdea91da .search-highlight {
  background: yellow;
}
#a021dacfdea91da .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a021dacfdea91da .el-title {
  margin-bottom: 20px;
}
#a021dacfdea91da .el-item:hover .el-title {
  color: #fc8137;
}
#a021dacfdea91da .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a021dacfdea91da .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a021dacfdea91da .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a021dacfdea91da .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a021dacfdea91da .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a021dacfdea91da .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a021dacfdea91da .el-title {
    margin-bottom: 0;
  }
  #a021dacfdea91da .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a021dacfdea91da .category {
    font-size: 12px;
  }
  #a021dacfdea91da .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#a1956a6f87aa1b9 {
  min-height: 90vh;
  /* mobile */
}
#a1956a6f87aa1b9 .search-highlight {
  background: yellow;
}
#a1956a6f87aa1b9 .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a1956a6f87aa1b9 .el-title {
  margin-bottom: 20px;
}
#a1956a6f87aa1b9 .el-item:hover .el-title {
  color: #fc8137;
}
#a1956a6f87aa1b9 .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a1956a6f87aa1b9 .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a1956a6f87aa1b9 .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a1956a6f87aa1b9 .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a1956a6f87aa1b9 .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a1956a6f87aa1b9 .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a1956a6f87aa1b9 .el-title {
    margin-bottom: 0;
  }
  #a1956a6f87aa1b9 .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a1956a6f87aa1b9 .category {
    font-size: 12px;
  }
  #a1956a6f87aa1b9 .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af584a87ddaec21 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ab4d6a8370a11c5 {
  /* 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------------------------*/
}
#ab4d6a8370a11c5 * {
  font-family: 'PT Sans Caption', sans-serif, 'arial', 'Times New Roman';
}
#ab4d6a8370a11c5 .error .clip .shadow {
  height: 180px;
  /*Contrall*/
}
#ab4d6a8370a11c5 .error .clip:nth-of-type(2) .shadow {
  width: 130px;
  /*Contrall play with javascript*/
}
#ab4d6a8370a11c5 .error .clip:nth-of-type(1) .shadow,
#ab4d6a8370a11c5 .error .clip:nth-of-type(3) .shadow {
  width: 250px;
  /*Contrall*/
}
#ab4d6a8370a11c5 .error .digit {
  width: 150px;
  /*Contrall*/
  height: 150px;
  /*Contrall*/
  line-height: 150px;
  /*Contrall*/
  font-size: 120px;
  font-weight: bold;
}
#ab4d6a8370a11c5 .error h2 {
  font-size: 32px;
}
#ab4d6a8370a11c5 .error .msg {
  top: -190px;
  left: 30%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 32px;
}
#ab4d6a8370a11c5 .error span.triangle {
  top: 70%;
  right: 0%;
  border-left: 20px solid #535353;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
#ab4d6a8370a11c5 .error .container-error-404 {
  margin-top: 10%;
  position: relative;
  height: 250px;
  padding-top: 40px;
  text-align: center;
}
#ab4d6a8370a11c5 .error .container-error-404 .clip {
  display: inline-block;
  transform: skew(-45deg);
}
#ab4d6a8370a11c5 .error .clip .shadow {
  overflow: hidden;
}
#ab4d6a8370a11c5 .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);
}
#ab4d6a8370a11c5 .error .clip:nth-of-type(3) .shadow:after,
#ab4d6a8370a11c5 .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%;
}
#ab4d6a8370a11c5 .error .clip:nth-of-type(3) .shadow:after {
  left: -8px;
}
#ab4d6a8370a11c5 .error .digit {
  position: relative;
  top: 8%;
  color: white;
  background: #07B3F9;
  border-radius: 50%;
  display: inline-block;
  transform: skew(45deg);
}
#ab4d6a8370a11c5 .error .clip:nth-of-type(2) .digit {
  left: -10%;
}
#ab4d6a8370a11c5 .error .clip:nth-of-type(1) .digit {
  right: -20%;
}
#ab4d6a8370a11c5 .error .clip:nth-of-type(3) .digit {
  left: -20%;
}
#ab4d6a8370a11c5 .error h2 {
  color: #A2A2A2;
  font-weight: bold;
  padding-bottom: 20px;
}
#ab4d6a8370a11c5 .error .msg {
  position: relative;
  z-index: 9999;
  display: block;
  background: #535353;
  color: #A2A2A2;
  border-radius: 50%;
  font-style: italic;
}
#ab4d6a8370a11c5 .error .triangle {
  position: absolute;
  z-index: 999;
  transform: rotate(45deg);
  content: "";
  width: 0;
  height: 0;
}
@media (max-width: 767px) {
  #ab4d6a8370a11c5 {
    /* Error Page */
    /* Error Page */
  }
  #ab4d6a8370a11c5 .error .clip .shadow {
    height: 100px;
    /*Contrall*/
  }
  #ab4d6a8370a11c5 .error .clip:nth-of-type(2) .shadow {
    width: 80px;
    /*Contrall play with javascript*/
  }
  #ab4d6a8370a11c5 .error .clip:nth-of-type(1) .shadow,
  #ab4d6a8370a11c5 .error .clip:nth-of-type(3) .shadow {
    width: 100px;
    /*Contrall*/
  }
  #ab4d6a8370a11c5 .error .digit {
    width: 80px;
    /*Contrall*/
    height: 80px;
    /*Contrall*/
    line-height: 80px;
    /*Contrall*/
    font-size: 52px;
  }
  #ab4d6a8370a11c5 .error h2 {
    font-size: 24px;
  }
  #ab4d6a8370a11c5 .error .msg {
    top: -110px;
    left: 15%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  #ab4d6a8370a11c5 .error span.triangle {
    top: 70%;
    right: -3%;
    border-left: 10px solid #535353;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  #ab4d6a8370a11c5 .error .container-error-404 {
    height: 150px;
  }
}
#ab4d6a8370a11c5 .overlay {
  position: relative;
  z-index: 20;
}
#ab4d6a8370a11c5 .ground-color {
  background: white;
}
#ab4d6a8370a11c5 .item-bg-color {
  background: #EAEAEA;
}
#ab4d6a8370a11c5 .padding-top {
  padding-top: 10px;
}
#ab4d6a8370a11c5 .padding-bottom {
  padding-bottom: 10px;
}
#ab4d6a8370a11c5 .padding-vertical {
  padding-top: 10px;
  padding-bottom: 10px;
}
#ab4d6a8370a11c5 .padding-horizontal {
  padding-left: 10px;
  padding-right: 10px;
}
#ab4d6a8370a11c5 .padding-all {
  padding: 10px;
}
#ab4d6a8370a11c5 .no-padding-left {
  padding-left: 0px;
}
#ab4d6a8370a11c5 .no-padding-right {
  padding-right: 0px;
}
#ab4d6a8370a11c5 .no-vertical-padding {
  padding-top: 0px;
  padding-bottom: 0px;
}
#ab4d6a8370a11c5 .no-horizontal-padding {
  padding-left: 0px;
  padding-right: 0px;
}
#ab4d6a8370a11c5 .no-padding {
  padding: 0px;
}
#ab4d6a8370a11c5 .margin-top {
  margin-top: 10px;
}
#ab4d6a8370a11c5 .margin-bottom {
  margin-bottom: 10px;
}
#ab4d6a8370a11c5 .margin-right {
  margin-right: 10px;
}
#ab4d6a8370a11c5 .margin-left {
  margin-left: 10px;
}
#ab4d6a8370a11c5 .margin-horizontal {
  margin-left: 10px;
  margin-right: 10px;
}
#ab4d6a8370a11c5 .margin-vertical {
  margin-top: 10px;
  margin-bottom: 10px;
}
#ab4d6a8370a11c5 .margin-all {
  margin: 10px;
}
#ab4d6a8370a11c5 .no-margin {
  margin: 0px;
}
#ab4d6a8370a11c5 .no-vertical-margin {
  margin-top: 0px;
  margin-bottom: 0px;
}
#ab4d6a8370a11c5 .no-horizontal-margin {
  margin-left: 0px;
  margin-right: 0px;
}
#ab4d6a8370a11c5 .inside-col-shrink {
  margin: 0px 20px;
}
#ab4d6a8370a11c5 hr {
  margin: 0px;
  padding: 0px;
  border-top: 1px dashed #999;
}
#aff42ad550ad92f {
  /* 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------------------------*/
}
#aff42ad550ad92f * {
  font-family: 'PT Sans Caption', sans-serif, 'arial', 'Times New Roman';
}
#aff42ad550ad92f .error .clip .shadow {
  height: 180px;
  /*Contrall*/
}
#aff42ad550ad92f .error .clip:nth-of-type(2) .shadow {
  width: 130px;
  /*Contrall play with javascript*/
}
#aff42ad550ad92f .error .clip:nth-of-type(1) .shadow,
#aff42ad550ad92f .error .clip:nth-of-type(3) .shadow {
  width: 250px;
  /*Contrall*/
}
#aff42ad550ad92f .error .digit {
  width: 150px;
  /*Contrall*/
  height: 150px;
  /*Contrall*/
  line-height: 150px;
  /*Contrall*/
  font-size: 120px;
  font-weight: bold;
}
#aff42ad550ad92f .error h2 {
  font-size: 32px;
}
#aff42ad550ad92f .error .msg {
  top: -190px;
  left: 30%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 32px;
}
#aff42ad550ad92f .error span.triangle {
  top: 70%;
  right: 0%;
  border-left: 20px solid #535353;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
#aff42ad550ad92f .error .container-error-404 {
  margin-top: 10%;
  position: relative;
  height: 250px;
  padding-top: 40px;
  text-align: center;
}
#aff42ad550ad92f .error .container-error-404 .clip {
  display: inline-block;
  transform: skew(-45deg);
}
#aff42ad550ad92f .error .clip .shadow {
  overflow: hidden;
}
#aff42ad550ad92f .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);
}
#aff42ad550ad92f .error .clip:nth-of-type(3) .shadow:after,
#aff42ad550ad92f .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%;
}
#aff42ad550ad92f .error .clip:nth-of-type(3) .shadow:after {
  left: -8px;
}
#aff42ad550ad92f .error .digit {
  position: relative;
  top: 8%;
  color: white;
  background: #07B3F9;
  border-radius: 50%;
  display: inline-block;
  transform: skew(45deg);
}
#aff42ad550ad92f .error .clip:nth-of-type(2) .digit {
  left: -10%;
}
#aff42ad550ad92f .error .clip:nth-of-type(1) .digit {
  right: -20%;
}
#aff42ad550ad92f .error .clip:nth-of-type(3) .digit {
  left: -20%;
}
#aff42ad550ad92f .error h2 {
  color: #A2A2A2;
  font-weight: bold;
  padding-bottom: 20px;
}
#aff42ad550ad92f .error .msg {
  position: relative;
  z-index: 9999;
  display: block;
  background: #535353;
  color: #A2A2A2;
  border-radius: 50%;
  font-style: italic;
}
#aff42ad550ad92f .error .triangle {
  position: absolute;
  z-index: 999;
  transform: rotate(45deg);
  content: "";
  width: 0;
  height: 0;
}
@media (max-width: 767px) {
  #aff42ad550ad92f {
    /* Error Page */
    /* Error Page */
  }
  #aff42ad550ad92f .error .clip .shadow {
    height: 100px;
    /*Contrall*/
  }
  #aff42ad550ad92f .error .clip:nth-of-type(2) .shadow {
    width: 80px;
    /*Contrall play with javascript*/
  }
  #aff42ad550ad92f .error .clip:nth-of-type(1) .shadow,
  #aff42ad550ad92f .error .clip:nth-of-type(3) .shadow {
    width: 100px;
    /*Contrall*/
  }
  #aff42ad550ad92f .error .digit {
    width: 80px;
    /*Contrall*/
    height: 80px;
    /*Contrall*/
    line-height: 80px;
    /*Contrall*/
    font-size: 52px;
  }
  #aff42ad550ad92f .error h2 {
    font-size: 24px;
  }
  #aff42ad550ad92f .error .msg {
    top: -110px;
    left: 15%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  #aff42ad550ad92f .error span.triangle {
    top: 70%;
    right: -3%;
    border-left: 10px solid #535353;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  #aff42ad550ad92f .error .container-error-404 {
    height: 150px;
  }
}
#aff42ad550ad92f .overlay {
  position: relative;
  z-index: 20;
}
#aff42ad550ad92f .ground-color {
  background: white;
}
#aff42ad550ad92f .item-bg-color {
  background: #EAEAEA;
}
#aff42ad550ad92f .padding-top {
  padding-top: 10px;
}
#aff42ad550ad92f .padding-bottom {
  padding-bottom: 10px;
}
#aff42ad550ad92f .padding-vertical {
  padding-top: 10px;
  padding-bottom: 10px;
}
#aff42ad550ad92f .padding-horizontal {
  padding-left: 10px;
  padding-right: 10px;
}
#aff42ad550ad92f .padding-all {
  padding: 10px;
}
#aff42ad550ad92f .no-padding-left {
  padding-left: 0px;
}
#aff42ad550ad92f .no-padding-right {
  padding-right: 0px;
}
#aff42ad550ad92f .no-vertical-padding {
  padding-top: 0px;
  padding-bottom: 0px;
}
#aff42ad550ad92f .no-horizontal-padding {
  padding-left: 0px;
  padding-right: 0px;
}
#aff42ad550ad92f .no-padding {
  padding: 0px;
}
#aff42ad550ad92f .margin-top {
  margin-top: 10px;
}
#aff42ad550ad92f .margin-bottom {
  margin-bottom: 10px;
}
#aff42ad550ad92f .margin-right {
  margin-right: 10px;
}
#aff42ad550ad92f .margin-left {
  margin-left: 10px;
}
#aff42ad550ad92f .margin-horizontal {
  margin-left: 10px;
  margin-right: 10px;
}
#aff42ad550ad92f .margin-vertical {
  margin-top: 10px;
  margin-bottom: 10px;
}
#aff42ad550ad92f .margin-all {
  margin: 10px;
}
#aff42ad550ad92f .no-margin {
  margin: 0px;
}
#aff42ad550ad92f .no-vertical-margin {
  margin-top: 0px;
  margin-bottom: 0px;
}
#aff42ad550ad92f .no-horizontal-margin {
  margin-left: 0px;
  margin-right: 0px;
}
#aff42ad550ad92f .inside-col-shrink {
  margin: 0px 20px;
}
#aff42ad550ad92f hr {
  margin: 0px;
  padding: 0px;
  border-top: 1px dashed #999;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af584a87ddaec21 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4b19a6eada3690 .login-main {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(12, 1, 4, 0.05);
}
#a4b19a6eada3690 .switch_item {
  margin-right: 10px;
}
#a4b19a6eada3690 a.switch_item:hover {
  text-decoration: underline;
}
#a4b19a6eada3690 .slider {
  width: 420px;
  height: 600px;
}
#a4b19a6eada3690 .uk-slideshow-items {
  height: 100%;
}
#a4b19a6eada3690 .uk-slideshow-items a {
  width: 100%;
  height: 100%;
  display: block;
}
#a4b19a6eada3690 .login-wrap {
  width: 100%;
  height: 100%;
}
#a4b19a6eada3690 .uk-dotnav > * > * {
  background: #fff;
  border-color: #fff;
  opacity: .5;
}
#a4b19a6eada3690 .uk-dotnav > .uk-active > * {
  border-color: #0076fe;
  background: #0076fe;
}
#a4b19a6eada3690 .phone-login-box {
  margin: 40px auto 40px;
}
#a4b19a6eada3690 .login-header {
  margin-bottom: 24px;
}
#a4b19a6eada3690 .login-header h4 {
  font-size: 22px;
  font-weight: bolder;
  line-height: 1;
  padding-left: 20px;
  border-left: 4px solid #0076fe;
}
#a4b19a6eada3690 .input-item {
  width: 330px;
  height: 45px;
  background-color: #f0f2f7;
  border-radius: 22px;
  border: solid 1px #e3e8f0;
  position: relative;
  overflow: hidden;
}
#a4b19a6eada3690 .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;
}
#a4b19a6eada3690 .forget_password {
  cursor: pointer;
}
#a4b19a6eada3690 .forget_password:hover {
  color: #fc8137;
}
#a4b19a6eada3690 .input-item input.error,
#a4b19a6eada3690 .input-item input.error::placeholder {
  color: #fc4343;
}
#a4b19a6eada3690 .input-item input::placeholder {
  color: #999;
}
#a4b19a6eada3690 .input-item .icon {
  position: absolute;
  left: 10px;
  top: 12px;
  fill: #ccc;
  width: 20px;
}
#a4b19a6eada3690 .form-item {
  margin: 24px 0;
}
#a4b19a6eada3690 .verifycode-input .input-item {
  width: 200px;
  float: left;
}
#a4b19a6eada3690 .send-code {
  float: left;
  margin-left: 20px;
}
#a4b19a6eada3690 .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;
}
#a4b19a6eada3690 .submit {
  width: 330px;
  height: 45px;
  background-color: #0076fe;
  border-radius: 22px;
  font-size: 18px;
  line-height: 45px;
  color: #fff;
  cursor: pointer;
}
#a4b19a6eada3690 .error {
  color: #fc4343;
  font-size: 12px;
  padding-left: 10px;
  display: block;
  max-width: 300px;
}
#a4b19a6eada3690 .login_btn_wrap {
  text-align: center;
}
#a4b19a6eada3690 .login_btn_wrap .submit {
  display: block;
  margin-bottom: 10px;
}
#a4b19a6eada3690 .input-item .pwd-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  font-size: 16px;
  color: #999;
  cursor: pointer;
}
#a4b19a6eada3690 .input-item .pwd-toggle:hover {
  color: currentColor;
}
#ad445a64d3a5eed .login-main {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(12, 1, 4, 0.05);
}
#ad445a64d3a5eed .switch_item {
  margin-right: 10px;
}
#ad445a64d3a5eed a.switch_item:hover {
  text-decoration: underline;
}
#ad445a64d3a5eed .slider {
  width: 420px;
  height: 600px;
}
#ad445a64d3a5eed .uk-slideshow-items {
  height: 100%;
}
#ad445a64d3a5eed .uk-slideshow-items a {
  width: 100%;
  height: 100%;
  display: block;
}
#ad445a64d3a5eed .login-wrap {
  width: 100%;
  height: 100%;
}
#ad445a64d3a5eed .uk-dotnav > * > * {
  background: #fff;
  border-color: #fff;
  opacity: .5;
}
#ad445a64d3a5eed .uk-dotnav > .uk-active > * {
  border-color: #0076fe;
  background: #0076fe;
}
#ad445a64d3a5eed .phone-login-box {
  margin: 40px auto 40px;
}
#ad445a64d3a5eed .login-header {
  margin-bottom: 24px;
}
#ad445a64d3a5eed .login-header h4 {
  font-size: 22px;
  font-weight: bolder;
  line-height: 1;
  padding-left: 20px;
  border-left: 4px solid #0076fe;
}
#ad445a64d3a5eed .input-item {
  width: 330px;
  height: 45px;
  background-color: #f0f2f7;
  border-radius: 22px;
  border: solid 1px #e3e8f0;
  position: relative;
  overflow: hidden;
}
#ad445a64d3a5eed .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;
}
#ad445a64d3a5eed .forget_password {
  cursor: pointer;
}
#ad445a64d3a5eed .forget_password:hover {
  color: #fc8137;
}
#ad445a64d3a5eed .input-item input.error,
#ad445a64d3a5eed .input-item input.error::placeholder {
  color: #fc4343;
}
#ad445a64d3a5eed .input-item input::placeholder {
  color: #999;
}
#ad445a64d3a5eed .input-item .icon {
  position: absolute;
  left: 10px;
  top: 12px;
  fill: #ccc;
  width: 20px;
}
#ad445a64d3a5eed .form-item {
  margin: 24px 0;
}
#ad445a64d3a5eed .verifycode-input .input-item {
  width: 200px;
  float: left;
}
#ad445a64d3a5eed .send-code {
  float: left;
  margin-left: 20px;
}
#ad445a64d3a5eed .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;
}
#ad445a64d3a5eed .submit {
  width: 330px;
  height: 45px;
  background-color: #0076fe;
  border-radius: 22px;
  font-size: 18px;
  line-height: 45px;
  color: #fff;
  cursor: pointer;
}
#ad445a64d3a5eed .error {
  color: #fc4343;
  font-size: 12px;
  padding-left: 10px;
  display: block;
  max-width: 300px;
}
#ad445a64d3a5eed .login_btn_wrap {
  text-align: center;
}
#ad445a64d3a5eed .login_btn_wrap .submit {
  display: block;
  margin-bottom: 10px;
}
#ad445a64d3a5eed .input-item .pwd-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  font-size: 16px;
  color: #999;
  cursor: pointer;
}
#ad445a64d3a5eed .input-item .pwd-toggle:hover {
  color: currentColor;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af584a87ddaec21 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a0845af4d2afcaa .sidebar {
  width: 150px;
  max-width: 150px;
  height: 100%;
}
#a0845af4d2afcaa .nav-items {
  background: #fafafa;
  min-height: 200px;
}
#a0845af4d2afcaa .phone-info {
  background: #fafafa;
  margin-top: 10px;
  font-size: 12px;
  padding: 22px 4px 20px 16px;
  line-height: 1.5;
  color: #666;
}
#a0845af4d2afcaa .phone-info .phone {
  line-height: 1.5;
  color: #333;
  font-size: 18px;
  font-family: Arial;
}
#a0845af4d2afcaa .nav-type {
  line-height: 37px;
  padding-left: 20px;
  cursor: pointer;
}
#a0845af4d2afcaa .nav-type.active {
  color: #FFF;
  cursor: default;
  background: #ff658c;
}
#a0845af4d2afcaa .content {
  padding-bottom: 60px;
  color: #666;
  border: 1px solid #f0f0f0;
  min-height: 400px;
}
#a0845af4d2afcaa .nav-list {
  padding: 0 20px;
}
#a0845af4d2afcaa .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;
}
#a0845af4d2afcaa .nav-list .nav-item.active {
  background-color: #ff5c89;
  color: #fff;
  cursor: default;
}
#a0845af4d2afcaa .order-item {
  margin-top: 10px;
  background: #fff;
  padding: 0 20px;
}
#a0845af4d2afcaa .order-item:hover {
  background: #f7f7f7;
}
#a0845af4d2afcaa .del-order {
  cursor: pointer;
}
#a0845af4d2afcaa .order-item .order-title {
  line-height: 40px;
  color: #666;
  font-size: 13px;
  border-bottom: 1px solid #f7f7f7;
}
#a0845af4d2afcaa .goods-item {
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
}
#a0845af4d2afcaa .order-goods-list .goods-item:last-child {
  border-bottom: none;
}
#a0845af4d2afcaa .goods-item img {
  width: 100px;
  height: 100px;
  background: #f4f4f4;
}
#a0845af4d2afcaa .goods-item .goods-info {
  padding: 0 15px;
}
#a0845af4d2afcaa .appoint-time span {
  color: #e4393c;
  background-color: #f9eeee;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 2px;
  line-height: 1;
}
#a0845af4d2afcaa .appoint-time {
  margin-bottom: 4px;
}
#a0845af4d2afcaa .appoint-name {
  color: #333;
  font-size: 14px;
}
#a0845af4d2afcaa .appoint-info {
  padding: 0 15px;
  font-size: 12px;
  color: #888;
}
#a0845af4d2afcaa .goods-item .goods-name {
  color: #333;
}
#a0845af4d2afcaa .goods-item .sku-name {
  color: #999;
  font-size: 12px;
}
#a0845af4d2afcaa .order-total-info {
  padding-bottom: 10px;
  color: #999;
  font-size: 12px;
}
#a0845af4d2afcaa .order-total-info .total-price {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
}
#a0845af4d2afcaa .load-more {
  font-size: 12px;
  padding-bottom: 15px;
  color: #999;
}
#a0845af4d2afcaa .order-btns {
  padding: 10px 0;
  border-top: 1px solid #f7f7f7;
}
#a0845af4d2afcaa .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;
}
#a0845af4d2afcaa .order-btns .btn-warn {
  color: #fff;
  background: #eb3c3c;
  border-color: #eb3c3c;
  cursor: pointer;
}
#a0845af4d2afcaa .appoint-info .title {
  font-weight: bold;
  color: #333;
}
#a0845af4d2afcaa .coupon-item {
  margin: 10px 30px;
  display: inline-flex;
  width: 42%;
}
#a0845af4d2afcaa .setting-form {
  padding: 30px 20px;
}
#a0845af4d2afcaa .setting-item {
  margin-bottom: 20px;
  font-size: 13px;
  color: #666;
  line-height: 18px;
}
#a0845af4d2afcaa .setting-item .label {
  display: inline-block;
  margin-right: 6px;
  text-align: right;
  min-width: 120px;
}
#a0845af4d2afcaa .setting-item .input-text {
  border: 1px solid #ccc;
  line-height: 28px;
  padding: 0 10px;
  min-width: 200px;
  font-size: 13px;
}
#a0845af4d2afcaa .setting-form .setting-btns {
  margin-left: 130px;
}
#a0845af4d2afcaa .setting-form .uk-button {
  height: 30px;
  line-height: 30px;
  margin-right: 8px;
}
#a0845af4d2afcaa .setting-wrap {
  position: relative;
}
#a0845af4d2afcaa .user-info {
  border: 1px solid #ccc;
  width: 300px;
  position: absolute;
  right: 80px;
  top: 30px;
  color: #666;
  padding: 10px;
  font-size: 13px;
  background: #f9f9f9;
}
#a0845af4d2afcaa .user-info .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 10px;
}
#a0845af4d2afcaa .user-info .levels {
  color: #888;
  font-size: 12px;
}
#a0845af4d2afcaa .address-wrap {
  padding: 30px 20px;
}
#a0845af4d2afcaa .addr-header {
  font-size: 18px;
  color: #333;
  margin: 0;
}
#a0845af4d2afcaa .addr-detail {
  border-bottom: 1px solid #ececec;
  margin-bottom: 10px;
}
#a0845af4d2afcaa .addr-list {
  min-height: 200px;
}
#a0845af4d2afcaa .addr-detail .addr-item-name,
#a0845af4d2afcaa .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;
}
#a0845af4d2afcaa .addr-detail .addr-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
#a0845af4d2afcaa .addr-detail .addr-item-name {
  color: #e93b3d;
  border-color: #e93b3d;
}
#a0845af4d2afcaa .addr-detail {
  padding: 12px 0;
  flex: 1;
}
#a0845af4d2afcaa .op-btns a {
  font-size: 12px;
  color: #e93b3d;
  margin-left: 6px;
}
#a0845af4d2afcaa .add-addr {
  height: 32px;
  line-height: 30px;
}
#a0845af4d2afcaa .publish-item .status {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 50px;
  background: url(/resources/sys/img/icons/info-pass.png) center center no-repeat;
  background-size: contain;
}
#a0845af4d2afcaa .publish-item {
  cursor: default;
  min-height: 120px;
}
#a0845af4d2afcaa .publish-item .status-0 {
  background-image: url(/resources/sys/img/icons/info-unread.png);
}
#a0845af4d2afcaa .publish-item .status-1 {
  background-image: url(/resources/sys/img/icons/info-fail.png);
}
#a0845af4d2afcaa .publish-item .btns a {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 2px;
  color: #fff;
  background: #fc8137;
}
#a0845af4d2afcaa .publish-item .btns .del-info {
  background: #ccc;
  color: #999;
}
#ae043a17ffa86a8 .sidebar {
  width: 150px;
  max-width: 150px;
  height: 100%;
}
#ae043a17ffa86a8 .nav-items {
  background: #fafafa;
  min-height: 200px;
}
#ae043a17ffa86a8 .phone-info {
  background: #fafafa;
  margin-top: 10px;
  font-size: 12px;
  padding: 22px 4px 20px 16px;
  line-height: 1.5;
  color: #666;
}
#ae043a17ffa86a8 .phone-info .phone {
  line-height: 1.5;
  color: #333;
  font-size: 18px;
  font-family: Arial;
}
#ae043a17ffa86a8 .nav-type {
  line-height: 37px;
  padding-left: 20px;
  cursor: pointer;
}
#ae043a17ffa86a8 .nav-type.active {
  color: #FFF;
  cursor: default;
  background: #ff658c;
}
#ae043a17ffa86a8 .content {
  padding-bottom: 60px;
  color: #666;
  border: 1px solid #f0f0f0;
  min-height: 400px;
}
#ae043a17ffa86a8 .nav-list {
  padding: 0 20px;
}
#ae043a17ffa86a8 .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;
}
#ae043a17ffa86a8 .nav-list .nav-item.active {
  background-color: #ff5c89;
  color: #fff;
  cursor: default;
}
#ae043a17ffa86a8 .order-item {
  margin-top: 10px;
  background: #fff;
  padding: 0 20px;
}
#ae043a17ffa86a8 .order-item:hover {
  background: #f7f7f7;
}
#ae043a17ffa86a8 .del-order {
  cursor: pointer;
}
#ae043a17ffa86a8 .order-item .order-title {
  line-height: 40px;
  color: #666;
  font-size: 13px;
  border-bottom: 1px solid #f7f7f7;
}
#ae043a17ffa86a8 .goods-item {
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
}
#ae043a17ffa86a8 .order-goods-list .goods-item:last-child {
  border-bottom: none;
}
#ae043a17ffa86a8 .goods-item img {
  width: 100px;
  height: 100px;
  background: #f4f4f4;
}
#ae043a17ffa86a8 .goods-item .goods-info {
  padding: 0 15px;
}
#ae043a17ffa86a8 .appoint-time span {
  color: #e4393c;
  background-color: #f9eeee;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 2px;
  line-height: 1;
}
#ae043a17ffa86a8 .appoint-time {
  margin-bottom: 4px;
}
#ae043a17ffa86a8 .appoint-name {
  color: #333;
  font-size: 14px;
}
#ae043a17ffa86a8 .appoint-info {
  padding: 0 15px;
  font-size: 12px;
  color: #888;
}
#ae043a17ffa86a8 .goods-item .goods-name {
  color: #333;
}
#ae043a17ffa86a8 .goods-item .sku-name {
  color: #999;
  font-size: 12px;
}
#ae043a17ffa86a8 .order-total-info {
  padding-bottom: 10px;
  color: #999;
  font-size: 12px;
}
#ae043a17ffa86a8 .order-total-info .total-price {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
}
#ae043a17ffa86a8 .load-more {
  font-size: 12px;
  padding-bottom: 15px;
  color: #999;
}
#ae043a17ffa86a8 .order-btns {
  padding: 10px 0;
  border-top: 1px solid #f7f7f7;
}
#ae043a17ffa86a8 .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;
}
#ae043a17ffa86a8 .order-btns .btn-warn {
  color: #fff;
  background: #eb3c3c;
  border-color: #eb3c3c;
  cursor: pointer;
}
#ae043a17ffa86a8 .appoint-info .title {
  font-weight: bold;
  color: #333;
}
#ae043a17ffa86a8 .coupon-item {
  margin: 10px 30px;
  display: inline-flex;
  width: 42%;
}
#ae043a17ffa86a8 .setting-form {
  padding: 30px 20px;
}
#ae043a17ffa86a8 .setting-item {
  margin-bottom: 20px;
  font-size: 13px;
  color: #666;
  line-height: 18px;
}
#ae043a17ffa86a8 .setting-item .label {
  display: inline-block;
  margin-right: 6px;
  text-align: right;
  min-width: 120px;
}
#ae043a17ffa86a8 .setting-item .input-text {
  border: 1px solid #ccc;
  line-height: 28px;
  padding: 0 10px;
  min-width: 200px;
  font-size: 13px;
}
#ae043a17ffa86a8 .setting-form .setting-btns {
  margin-left: 130px;
}
#ae043a17ffa86a8 .setting-form .uk-button {
  height: 30px;
  line-height: 30px;
  margin-right: 8px;
}
#ae043a17ffa86a8 .setting-wrap {
  position: relative;
}
#ae043a17ffa86a8 .user-info {
  border: 1px solid #ccc;
  width: 300px;
  position: absolute;
  right: 80px;
  top: 30px;
  color: #666;
  padding: 10px;
  font-size: 13px;
  background: #f9f9f9;
}
#ae043a17ffa86a8 .user-info .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 10px;
}
#ae043a17ffa86a8 .user-info .levels {
  color: #888;
  font-size: 12px;
}
#ae043a17ffa86a8 .address-wrap {
  padding: 30px 20px;
}
#ae043a17ffa86a8 .addr-header {
  font-size: 18px;
  color: #333;
  margin: 0;
}
#ae043a17ffa86a8 .addr-detail {
  border-bottom: 1px solid #ececec;
  margin-bottom: 10px;
}
#ae043a17ffa86a8 .addr-list {
  min-height: 200px;
}
#ae043a17ffa86a8 .addr-detail .addr-item-name,
#ae043a17ffa86a8 .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;
}
#ae043a17ffa86a8 .addr-detail .addr-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
#ae043a17ffa86a8 .addr-detail .addr-item-name {
  color: #e93b3d;
  border-color: #e93b3d;
}
#ae043a17ffa86a8 .addr-detail {
  padding: 12px 0;
  flex: 1;
}
#ae043a17ffa86a8 .op-btns a {
  font-size: 12px;
  color: #e93b3d;
  margin-left: 6px;
}
#ae043a17ffa86a8 .add-addr {
  height: 32px;
  line-height: 30px;
}
#ae043a17ffa86a8 .publish-item .status {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 50px;
  background: url(/resources/sys/img/icons/info-pass.png) center center no-repeat;
  background-size: contain;
}
#ae043a17ffa86a8 .publish-item {
  cursor: default;
  min-height: 120px;
}
#ae043a17ffa86a8 .publish-item .status-0 {
  background-image: url(/resources/sys/img/icons/info-unread.png);
}
#ae043a17ffa86a8 .publish-item .status-1 {
  background-image: url(/resources/sys/img/icons/info-fail.png);
}
#ae043a17ffa86a8 .publish-item .btns a {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 2px;
  color: #fff;
  background: #fc8137;
}
#ae043a17ffa86a8 .publish-item .btns .del-info {
  background: #ccc;
  color: #999;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af584a87ddaec21 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a68fba9e43a363f {
  min-height: 90vh;
  /* mobile */
}
#a68fba9e43a363f .search-highlight {
  background: yellow;
}
#a68fba9e43a363f .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a68fba9e43a363f .el-title {
  margin-bottom: 20px;
}
#a68fba9e43a363f .el-item:hover .el-title {
  color: #fc8137;
}
#a68fba9e43a363f .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a68fba9e43a363f .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a68fba9e43a363f .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a68fba9e43a363f .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a68fba9e43a363f .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a68fba9e43a363f .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a68fba9e43a363f .el-title {
    margin-bottom: 0;
  }
  #a68fba9e43a363f .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a68fba9e43a363f .category {
    font-size: 12px;
  }
  #a68fba9e43a363f .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#a7e2cacd4ea153d {
  min-height: 90vh;
  /* mobile */
}
#a7e2cacd4ea153d .search-highlight {
  background: yellow;
}
#a7e2cacd4ea153d .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a7e2cacd4ea153d .el-title {
  margin-bottom: 20px;
}
#a7e2cacd4ea153d .el-item:hover .el-title {
  color: #fc8137;
}
#a7e2cacd4ea153d .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a7e2cacd4ea153d .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a7e2cacd4ea153d .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a7e2cacd4ea153d .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a7e2cacd4ea153d .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a7e2cacd4ea153d .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a7e2cacd4ea153d .el-title {
    margin-bottom: 0;
  }
  #a7e2cacd4ea153d .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a7e2cacd4ea153d .category {
    font-size: 12px;
  }
  #a7e2cacd4ea153d .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#a6e03a5be2abbcb {
  min-height: 90vh;
  /* mobile */
}
#a6e03a5be2abbcb .search-highlight {
  background: yellow;
}
#a6e03a5be2abbcb .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a6e03a5be2abbcb .el-title {
  margin-bottom: 20px;
}
#a6e03a5be2abbcb .el-item:hover .el-title {
  color: #fc8137;
}
#a6e03a5be2abbcb .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a6e03a5be2abbcb .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a6e03a5be2abbcb .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a6e03a5be2abbcb .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a6e03a5be2abbcb .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a6e03a5be2abbcb .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a6e03a5be2abbcb .el-title {
    margin-bottom: 0;
  }
  #a6e03a5be2abbcb .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a6e03a5be2abbcb .category {
    font-size: 12px;
  }
  #a6e03a5be2abbcb .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af584a87ddaec21 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a8845af182ad846 .comment-detail {
  min-height: 600px;
}
#a8845af182ad846 table {
  background: #f9fdff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#a8845af182ad846 table th,
#a8845af182ad846 table td {
  padding: 10px 20px;
  border: #ececec 1px solid;
  line-height: 1.8em;
}
#a8845af182ad846 table th {
  padding-left: 0;
  text-align: right;
  background: #eff7fe;
  font-weight: normal;
  color: #333;
}
#a8845af182ad846 .red {
  color: #F00!important;
}
#a8845af182ad846 .table-title span {
  display: inline-block;
  padding: 0 40px;
  line-height: 40px;
  color: #274589;
  font-size: 16px;
  font-weight: bold;
  background: url(/resources/sys/img/icons/title_icon.png) 0 center no-repeat;
}
#a6e64ad92fa610e .comment-detail {
  min-height: 600px;
}
#a6e64ad92fa610e table {
  background: #f9fdff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#a6e64ad92fa610e table th,
#a6e64ad92fa610e table td {
  padding: 10px 20px;
  border: #ececec 1px solid;
  line-height: 1.8em;
}
#a6e64ad92fa610e table th {
  padding-left: 0;
  text-align: right;
  background: #eff7fe;
  font-weight: normal;
  color: #333;
}
#a6e64ad92fa610e .red {
  color: #F00!important;
}
#a6e64ad92fa610e .table-title span {
  display: inline-block;
  padding: 0 40px;
  line-height: 40px;
  color: #274589;
  font-size: 16px;
  font-weight: bold;
  background: url(/resources/sys/img/icons/title_icon.png) 0 center no-repeat;
}
#a0629ae3aea341f .comment-detail {
  min-height: 600px;
}
#a0629ae3aea341f table {
  background: #f9fdff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#a0629ae3aea341f table th,
#a0629ae3aea341f table td {
  padding: 10px 20px;
  border: #ececec 1px solid;
  line-height: 1.8em;
}
#a0629ae3aea341f table th {
  padding-left: 0;
  text-align: right;
  background: #eff7fe;
  font-weight: normal;
  color: #333;
}
#a0629ae3aea341f .red {
  color: #F00!important;
}
#a0629ae3aea341f .table-title span {
  display: inline-block;
  padding: 0 40px;
  line-height: 40px;
  color: #274589;
  font-size: 16px;
  font-weight: bold;
  background: url(/resources/sys/img/icons/title_icon.png) 0 center no-repeat;
}
#a1542a2e6ca9172 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a1542a2e6ca9172 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a1542a2e6ca9172 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a1542a2e6ca9172 .menu-list > li > a {
  padding: 0 40px;
}
#a1542a2e6ca9172 .menu-list > li:hover:before {
  height: 100%;
}
#a1542a2e6ca9172 .menu-list > li:hover:after {
  color: auto;
}
#a1542a2e6ca9172 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #fc8137;
  font-weight: 400;
  content: "|";
}
#a1542a2e6ca9172 .menu-list > li:first-child:after {
  content: "";
}
#a1542a2e6ca9172 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a1542a2e6ca9172 .menu-list > li ul li {
  position: relative;
}
#a1542a2e6ca9172 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#a1542a2e6ca9172 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #333333;
}
#a1542a2e6ca9172 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: rgba(255, 255, 255, 0);
}
#a1542a2e6ca9172 li ul,
#a1542a2e6ca9172 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a1542a2e6ca9172 li:hover > ul {
  left: auto;
}
#a1542a2e6ca9172 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ae367a7dfda18d5 form {
  width: 100%;
  height: 100%;
}
#ae367a7dfda18d5 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#ae367a7dfda18d5 .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#ae367a7dfda18d5 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#ae367a7dfda18d5 .search-box .search-type.show {
  display: block;
}
#ae367a7dfda18d5 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#ae367a7dfda18d5 .search-box .search-type li:hover {
  color: #fc8137;
}
#ae367a7dfda18d5 .search-box .search-type li.active {
  color: #fc8137;
}
#ae367a7dfda18d5 .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: NaNpx;
  background-color: #ffffff;
  overflow: hidden;
  border-right-width: 2px;
  border-right-color: #fc8137;
  border-left-color: #fc8137;
  border-bottom-color: #fc8137;
  border-top-color: #fc8137;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae367a7dfda18d5 .inner-form .input-field {
  height: 100%;
}
#ae367a7dfda18d5 .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#ae367a7dfda18d5 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#ae367a7dfda18d5 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#ae367a7dfda18d5 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#ae367a7dfda18d5 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#ae367a7dfda18d5 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #fc8137;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: NaNpx;
  border-bottom-right-radius: NaNpx;
  overflow: hidden;
}
#ae367a7dfda18d5 .btn-search:hover {
  background: #fc8137;
}
#ae367a7dfda18d5 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5487ad740a34b5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a54f3a9bf9ab4cc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1163a9442ad0fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5754a6946ac9cf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a6ba2ba9aa02e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfd1af32ea8980 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#abfd1af32ea8980 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#abfd1af32ea8980 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#abfd1af32ea8980 .menu-list > li > a {
  padding: 0 40px;
}
#abfd1af32ea8980 .menu-list > li:hover:before {
  height: 100%;
}
#abfd1af32ea8980 .menu-list > li:hover:after {
  color: auto;
}
#abfd1af32ea8980 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: #cccccc;
  font-weight: 400;
  content: "|";
}
#abfd1af32ea8980 .menu-list > li:first-child:after {
  content: "";
}
#abfd1af32ea8980 .menu-list > li.active > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 .menu-list > li ul {
  padding: 0;
  background-color: #152545;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#abfd1af32ea8980 .menu-list > li ul li {
  position: relative;
}
#abfd1af32ea8980 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  width: 200px;
}
#abfd1af32ea8980 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#abfd1af32ea8980 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fc8137;
  background-color: #000000;
}
#abfd1af32ea8980 li ul,
#abfd1af32ea8980 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#abfd1af32ea8980 li:hover > ul {
  left: auto;
}
#abfd1af32ea8980 li ul li:hover ul {
  left: 100%;
  top: 0;
}
